Module Values.GetMLConfigurationResponseSource

Returns information about a specific ML configuration.

Sourcetype nonrec t = {
  1. membershipIdentifier : UUID.t option;
    (*

    The membership ID of the member that owns the ML configuration you requested.

    *)
  2. defaultOutputLocation : MLOutputConfiguration.t option;
    (*

    The Amazon S3 location where ML model output is stored.

    *)
  3. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the ML configuration was created.

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

    The most recent time at which the ML configuration was updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?membershipIdentifier:??? -> ?defaultOutputLocation:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.t | `Structure of (string * [> `String of IamRoleArn.t | `Structure of (string * [> `Structure of (string * [> `String of S3Path.t ]) list ]) list ]) list | `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