Values_0.ChannelSpecificationSourceDefines a named input source, called a channel, to be used by an algorithm.
type nonrec t = {name : ChannelName.t;The name of the channel.
*)description : EntityDescription.t option;A brief description of the channel.
*)isRequired : Boolean.t option;Indicates whether the channel is required by the algorithm.
*)supportedContentTypes : ContentTypes.t;The supported MIME types for the data.
*)supportedCompressionTypes : CompressionTypes.t option;The allowed compression types, if data compression is used.
*)supportedInputModes : InputModes.t;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.
*)}val make :
?description:??? ->
?isRequired:??? ->
?supportedCompressionTypes:??? ->
name:ChannelName.t ->
supportedContentTypes:ContentTypes.t ->
supportedInputModes:InputModes.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `Enum of string | `String of ContentType.t ] list
| `String of ChannelName.t ])
list ]