Module Values.MLInputChannelSummarySource

Provides summary information about the ML input channel.

Sourcetype nonrec t = {
  1. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the ML input channel was created.

    *)
  2. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The most recent time at which the ML input channel was updated.

    *)
  3. membershipIdentifier : UUID.t option;
    (*

    The membership ID of the membership that contains the ML input channel.

    *)
  4. collaborationIdentifier : UUID.t option;
    (*

    The collaboration ID of the collaboration that contains the ML input channel.

    *)
  5. name : NameString.t option;
    (*

    The name of the ML input channel.

    *)
  6. configuredModelAlgorithmAssociations : MLInputChannelSummaryConfiguredModelAlgorithmAssociationsList.t option;
    (*

    The associated configured model algorithms used to create the ML input channel.

    *)
  7. protectedQueryIdentifier : UUID.t option;
    (*

    The ID of the protected query that was used to create the ML input channel.

    *)
  8. mlInputChannelArn : MLInputChannelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the ML input channel.

    *)
  9. status : MLInputChannelStatus.t option;
    (*

    The status of the ML input channel.

    *)
  10. description : ResourceDescription.t option;
    (*

    The description of the ML input channel.

    *)
}
Sourceval make : ?createTime:??? -> ?updateTime:??? -> ?membershipIdentifier:??? -> ?collaborationIdentifier:??? -> ?name:??? -> ?configuredModelAlgorithmAssociations:??? -> ?protectedQueryIdentifier:??? -> ?mlInputChannelArn:??? -> ?status:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ConfiguredModelAlgorithmAssociationArn.t ] list | `String of UUID.t | `Timestamp of SyntheticTimestamp_date_time.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