OutputGroup

public struct OutputGroup : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Use Custom Group Name (CustomName) to specify a name for the output group. This value is displayed on the console and can make your job settings JSON more human-readable. It does not affect your outputs. Use up to twelve characters that are either letters, numbers, spaces, or underscores.

    Declaration

    Swift

    public let customName: String?
  • Name of the output group

    Declaration

    Swift

    public let name: String?
  • Output Group settings, including type

    Declaration

    Swift

    public let outputGroupSettings: OutputGroupSettings?
  • This object holds groups of encoding settings, one group of settings per output.

    Declaration

    Swift

    public let outputs: [Output]?
  • Undocumented

    Declaration

    Swift

    public init(customName: String? = nil, name: String? = nil, outputGroupSettings: OutputGroupSettings? = nil, outputs: [Output]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws