Output
public struct Output : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
(AudioDescriptions) contains groups of audio encoding settings organized by audio codec. Include one instance of (AudioDescriptions) per output. (AudioDescriptions) can contain multiple groups of encoding settings.
Declaration
Swift
public let audioDescriptions: [AudioDescription]?
-
(CaptionDescriptions) contains groups of captions settings. For each output that has captions, include one instance of (CaptionDescriptions). (CaptionDescriptions) can contain multiple groups of captions settings.
Declaration
Swift
public let captionDescriptions: [CaptionDescription]?
-
Container specific settings.
Declaration
Swift
public let containerSettings: ContainerSettings?
-
Use Extension (Extension) to specify the file extension for outputs in File output groups. If you do not specify a value, the service will use default extensions by container type as follows * MPEG-2 transport stream, m2ts * Quicktime, mov * MXF container, mxf * MPEG-4 container, mp4 * WebM container, webm * No Container, the service will use codec extensions (e.g. AAC, H265, H265, AC3)
Declaration
Swift
public let `extension`: String?
-
Use Name modifier (NameModifier) to have the service add a string to the end of each output filename. You specify the base filename as part of your destination URI. When you create multiple outputs in the same output group, Name modifier (NameModifier) is required. Name modifier also accepts format identifiers. For DASH ISO outputs, if you use the format identifiers $Number$ or $Time$ in one output, you must use them in the same way in all outputs of the output group.
Declaration
Swift
public let nameModifier: String?
-
Specific settings for this type of output.
Declaration
Swift
public let outputSettings: OutputSettings?
-
Use Preset (Preset) to specifiy a preset for your transcoding settings. Provide the system or custom preset name. You can specify either Preset (Preset) or Container settings (ContainerSettings), but not both.
Declaration
Swift
public let preset: String?
-
(VideoDescription) contains a group of video encoding settings. The specific video settings depend on the video codec that you choose when you specify a value for Video codec (codec). Include one instance of (VideoDescription) per output.
Declaration
Swift
public let videoDescription: VideoDescription?
-
init(audioDescriptions:captionDescriptions:containerSettings:extension:nameModifier:outputSettings:preset:videoDescription:)
Undocumented
Declaration
Swift
public init(audioDescriptions: [AudioDescription]? = nil, captionDescriptions: [CaptionDescription]? = nil, containerSettings: ContainerSettings? = nil, extension: String? = nil, nameModifier: String? = nil, outputSettings: OutputSettings? = nil, preset: String? = nil, videoDescription: VideoDescription? = nil)
-
Declaration
Swift
public func validate(name: String) throws