ChannelSpecification
public struct ChannelSpecification : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A brief description of the channel.
Declaration
Swift
public let description: String?
-
Indicates whether the channel is required by the algorithm.
Declaration
Swift
public let isRequired: Bool?
-
The name of the channel.
Declaration
Swift
public let name: String
-
The allowed compression types, if data compression is used.
Declaration
Swift
public let supportedCompressionTypes: [CompressionType]?
-
The supported MIME types for the data.
Declaration
Swift
public let supportedContentTypes: [String]
-
The allowed input mode, either FILE or PIPE. In FILE mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In PIPE mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.
Declaration
Swift
public let supportedInputModes: [TrainingInputMode]
-
init(description:isRequired:name:supportedCompressionTypes:supportedContentTypes:supportedInputModes:)
Undocumented
Declaration
Swift
public init(description: String? = nil, isRequired: Bool? = nil, name: String, supportedCompressionTypes: [CompressionType]? = nil, supportedContentTypes: [String], supportedInputModes: [TrainingInputMode])
-
Declaration
Swift
public func validate(name: String) throws