Module Values_0.ChannelSpecificationSource

Defines a named input source, called a channel, to be used by an algorithm.

Sourcetype nonrec t = {
  1. name : ChannelName.t;
    (*

    The name of the channel.

    *)
  2. description : EntityDescription.t option;
    (*

    A brief description of the channel.

    *)
  3. isRequired : Boolean.t option;
    (*

    Indicates whether the channel is required by the algorithm.

    *)
  4. supportedContentTypes : ContentTypes.t;
    (*

    The supported MIME types for the data.

    *)
  5. supportedCompressionTypes : CompressionTypes.t option;
    (*

    The allowed compression types, if data compression is used.

    *)
  6. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?isRequired:??? -> ?supportedCompressionTypes:??? -> name:ChannelName.t -> supportedContentTypes:ContentTypes.t -> supportedInputModes:InputModes.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t