Module Values.MlResourceDefinitionSource

Defines a Neptune ML resource.

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

    The resource name.

    *)
  2. arn : String_.t option;
    (*

    The resource ARN.

    *)
  3. status : String_.t option;
    (*

    The resource status.

    *)
  4. outputLocation : String_.t option;
    (*

    The output location.

    *)
  5. failureReason : String_.t option;
    (*

    The failure reason, in case of a failure.

    *)
  6. cloudwatchLogUrl : String_.t option;
    (*

    The CloudWatch log URL for the resource.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?status:??? -> ?outputLocation:??? -> ?failureReason:??? -> ?cloudwatchLogUrl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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