Module Values_2.FlowDefinitionSummarySource

Contains summary information about the flow definition.

Sourcetype nonrec t = {
  1. flowDefinitionName : Values_0.FlowDefinitionName.t option;
    (*

    The name of the flow definition.

    *)
  2. flowDefinitionArn : Values_0.FlowDefinitionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the flow definition.

    *)
  3. flowDefinitionStatus : Values_1.FlowDefinitionStatus.t option;
    (*

    The status of the flow definition. Valid values:

    *)
  4. creationTime : Values_0.Timestamp.t option;
    (*

    The timestamp when SageMaker created the flow definition.

    *)
  5. failureReason : Values_0.FailureReason.t option;
    (*

    The reason why the flow definition creation failed. A failure reason is returned only when the flow definition status is Failed.

    *)
}
Sourceval make : ?flowDefinitionName:??? -> ?flowDefinitionArn:??? -> ?flowDefinitionStatus:??? -> ?creationTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.FlowDefinitionName.t | `Timestamp of Values_0.Timestamp.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