You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// 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.
/// 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.
1232
1232
public var bitrate: Swift.Int?
1233
1233
/// 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
1234
1234
public var bitstreamMode: MediaConvertClientTypes.Ac4BitstreamMode?
/// The total duration of your media file, in seconds.
23496
23499
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.
23498
23501
public var format: MediaConvertClientTypes.Format?
23499
23502
/// Details about each track (video, audio, or data) in the media file.
23500
23503
public var tracks: [MediaConvertClientTypes.Track]?
0 commit comments