Skip to content

Commit 9873689

Browse files
chore: Updates version to 1.6.77
1 parent d08ac06 commit 9873689

File tree

5 files changed

+48
-5
lines changed

5 files changed

+48
-5
lines changed

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.76
1+
1.6.77

Package.version.next

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.77
1+
1.6.78

Sources/Core/AWSSDKDynamic/Sources/AWSSDKDynamic/PackageVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
// Code is auto-generated. DO NOT EDIT!
99

10-
public let packageVersion = "1.6.76"
10+
public let packageVersion = "1.6.77"

Sources/Services/AWSEC2/Sources/AWSEC2/Models.swift

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52014,6 +52014,29 @@ extension EC2ClientTypes {
5201452014
}
5201552015
}
5201652016

52017+
extension EC2ClientTypes {
52018+
52019+
/// Indicates default conntrack information for the instance type. For more information, see [ Connection tracking timeouts ](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts) in the Amazon EC2 User Guide.
52020+
public struct DefaultConnectionTrackingConfiguration: Swift.Sendable {
52021+
/// Default timeout (in seconds) for idle TCP connections in an established state.
52022+
public var defaultTcpEstablishedTimeout: Swift.Int?
52023+
/// Default timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction.
52024+
public var defaultUdpStreamTimeout: Swift.Int?
52025+
/// Default timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction.
52026+
public var defaultUdpTimeout: Swift.Int?
52027+
52028+
public init(
52029+
defaultTcpEstablishedTimeout: Swift.Int? = nil,
52030+
defaultUdpStreamTimeout: Swift.Int? = nil,
52031+
defaultUdpTimeout: Swift.Int? = nil
52032+
) {
52033+
self.defaultTcpEstablishedTimeout = defaultTcpEstablishedTimeout
52034+
self.defaultUdpStreamTimeout = defaultUdpStreamTimeout
52035+
self.defaultUdpTimeout = defaultUdpTimeout
52036+
}
52037+
}
52038+
}
52039+
5201752040
extension EC2ClientTypes {
5201852041

5201952042
/// Describes the Elastic Fabric Adapters for the instance type.
@@ -52143,6 +52166,8 @@ extension EC2ClientTypes {
5214352166
public struct NetworkInfo: Swift.Sendable {
5214452167
/// A list of valid settings for configurable bandwidth weighting for the instance type, if supported.
5214552168
public var bandwidthWeightings: [EC2ClientTypes.BandwidthWeightingType]?
52169+
/// Indicates conntrack information for the instance type
52170+
public var connectionTrackingConfiguration: EC2ClientTypes.DefaultConnectionTrackingConfiguration?
5214652171
/// The index of the default network card, starting at 0.
5214752172
public var defaultNetworkCardIndex: Swift.Int?
5214852173
/// Describes the Elastic Fabric Adapters for the instance type.
@@ -52180,6 +52205,7 @@ extension EC2ClientTypes {
5218052205

5218152206
public init(
5218252207
bandwidthWeightings: [EC2ClientTypes.BandwidthWeightingType]? = nil,
52208+
connectionTrackingConfiguration: EC2ClientTypes.DefaultConnectionTrackingConfiguration? = nil,
5218352209
defaultNetworkCardIndex: Swift.Int? = nil,
5218452210
efaInfo: EC2ClientTypes.EfaInfo? = nil,
5218552211
efaSupported: Swift.Bool? = nil,
@@ -52199,6 +52225,7 @@ extension EC2ClientTypes {
5219952225
secondaryNetworkSupported: Swift.Bool? = nil
5220052226
) {
5220152227
self.bandwidthWeightings = bandwidthWeightings
52228+
self.connectionTrackingConfiguration = connectionTrackingConfiguration
5220252229
self.defaultNetworkCardIndex = defaultNetworkCardIndex
5220352230
self.efaInfo = efaInfo
5220452231
self.efaSupported = efaSupported
@@ -121119,6 +121146,18 @@ extension EC2ClientTypes.DeclarativePoliciesReport {
121119121146
}
121120121147
}
121121121148

121149+
extension EC2ClientTypes.DefaultConnectionTrackingConfiguration {
121150+
121151+
static func read(from reader: SmithyXML.Reader) throws -> EC2ClientTypes.DefaultConnectionTrackingConfiguration {
121152+
guard reader.hasContent else { throw SmithyReadWrite.ReaderError.requiredValueNotPresent }
121153+
var value = EC2ClientTypes.DefaultConnectionTrackingConfiguration()
121154+
value.defaultTcpEstablishedTimeout = try reader["defaultTcpEstablishedTimeout"].readIfPresent()
121155+
value.defaultUdpTimeout = try reader["defaultUdpTimeout"].readIfPresent()
121156+
value.defaultUdpStreamTimeout = try reader["defaultUdpStreamTimeout"].readIfPresent()
121157+
return value
121158+
}
121159+
}
121160+
121122121161
extension EC2ClientTypes.DeleteFleetError {
121123121162

121124121163
static func read(from reader: SmithyXML.Reader) throws -> EC2ClientTypes.DeleteFleetError {
@@ -126586,6 +126625,7 @@ extension EC2ClientTypes.NetworkInfo {
126586126625
value.enaSrdSupported = try reader["enaSrdSupported"].readIfPresent()
126587126626
value.bandwidthWeightings = try reader["bandwidthWeightings"].readListIfPresent(memberReadingClosure: SmithyReadWrite.ReadingClosureBox<EC2ClientTypes.BandwidthWeightingType>().read(from:), memberNodeInfo: "item", isFlattened: false)
126588126627
value.flexibleEnaQueuesSupport = try reader["flexibleEnaQueuesSupport"].readIfPresent()
126628+
value.connectionTrackingConfiguration = try reader["connectionTrackingConfiguration"].readIfPresent(with: EC2ClientTypes.DefaultConnectionTrackingConfiguration.read(from:))
126589126629
value.secondaryNetworkSupported = try reader["secondaryNetworkSupported"].readIfPresent()
126590126630
value.maximumSecondaryNetworkInterfaces = try reader["maximumSecondaryNetworkInterfaces"].readIfPresent()
126591126631
value.ipv4AddressesPerSecondaryInterface = try reader["ipv4AddressesPerSecondaryInterface"].readIfPresent()

Sources/Services/AWSMediaConvert/Sources/AWSMediaConvert/Models.swift

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ extension MediaConvertClientTypes {
12281228

12291229
/// Required when you set Codec to the value AC4.
12301230
public struct Ac4Settings: Swift.Sendable {
1231-
/// Specify the average bitrate in bits per second. Leave blank to use the default bitrate for the coding mode you select according to ETSI TS 103 190. Valid bitrates for coding mode 2.0 (stereo): 192000, 256000, or 320000. Valid bitrates for coding mode 5.1 (3/2 with LFE): 512000. Valid bitrates for coding mode 5.1.4 (immersive): 512000, 768000, or 1024000.
1231+
/// Specify the average bitrate in bits per second. Leave blank to use the default bitrate for the coding mode you select according to ETSI TS 103 190. Valid bitrates for coding mode 2.0 (stereo): 48000, 64000, 96000, 128000, 144000, 192000, 256000, 288000, 320000, 384000, 448000, 512000, or 768000. Valid bitrates for coding mode 5.1 (3/2 with LFE): 96000, 128000, 144000, 192000, 256000, 288000, 320000, 384000, 448000, 512000, or 768000. Valid bitrates for coding mode 5.1.4 (immersive): 192000, 256000, 288000, 320000, 384000, 448000, 512000, or 768000.
12321232
public var bitrate: Swift.Int?
12331233
/// Specify the bitstream mode for the AC-4 stream that the encoder emits. For more information about the AC-4 bitstream mode, see ETSI TS 103 190. Maps to dlb_paec_ac4_bed_classifier in the encoder implementation. - COMPLETE_MAIN: Complete Main (standard mix) - EMERGENCY: Stereo Emergency content
12341234
public var bitstreamMode: MediaConvertClientTypes.Ac4BitstreamMode?
@@ -22873,6 +22873,7 @@ extension MediaConvertClientTypes {
2287322873
case avi
2287422874
case matroska
2287522875
case mp4
22876+
case mpegts
2287622877
case mxf
2287722878
case quicktime
2287822879
case wave
@@ -22884,6 +22885,7 @@ extension MediaConvertClientTypes {
2288422885
.avi,
2288522886
.matroska,
2288622887
.mp4,
22888+
.mpegts,
2288722889
.mxf,
2288822890
.quicktime,
2288922891
.wave,
@@ -22901,6 +22903,7 @@ extension MediaConvertClientTypes {
2290122903
case .avi: return "avi"
2290222904
case .matroska: return "matroska"
2290322905
case .mp4: return "mp4"
22906+
case .mpegts: return "mpegts"
2290422907
case .mxf: return "mxf"
2290522908
case .quicktime: return "quicktime"
2290622909
case .wave: return "wave"
@@ -23494,7 +23497,7 @@ extension MediaConvertClientTypes {
2349423497
public struct Container: Swift.Sendable {
2349523498
/// The total duration of your media file, in seconds.
2349623499
public var duration: Swift.Double?
23497-
/// The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM, MXF, Wave, or AVI. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.
23500+
/// The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM, MXF, Wave, AVI, or MPEG-TS. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.
2349823501
public var format: MediaConvertClientTypes.Format?
2349923502
/// Details about each track (video, audio, or data) in the media file.
2350023503
public var tracks: [MediaConvertClientTypes.Track]?

0 commit comments

Comments
 (0)