Module Values.AwsStepFunctionStateMachineDetailsSource

Provides details about an Step Functions state machine, which is a workflow consisting of a series of event- driven steps.

Sourcetype nonrec t = {
  1. label : NonEmptyString.t option;
    (*

    A user-defined or an auto-generated string that identifies a Map state. This parameter is present only if the stateMachineArn specified in input is a qualified state machine ARN.

    *)
  2. loggingConfiguration : AwsStepFunctionStateMachineLoggingConfigurationDetails.t option;
    (*

    Used to set CloudWatch Logs options.

    *)
  3. name : NonEmptyString.t option;
    (*

    The name of the state machine.

    *)
  4. roleArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used when creating this state machine.

    *)
  5. stateMachineArn : NonEmptyString.t option;
    (*

    The ARN that identifies the state machine.

    *)
  6. status : NonEmptyString.t option;
    (*

    The current status of the state machine.

    *)
  7. tracingConfiguration : AwsStepFunctionStateMachineTracingConfigurationDetails.t option;
    (*

    Specifies whether X-Ray tracing is enabled.

    *)
  8. type_ : NonEmptyString.t option;
    (*

    The type of the state machine (STANDARD or EXPRESS).

    *)
}
Sourceval make : ?label:??? -> ?loggingConfiguration:??? -> ?name:??? -> ?roleArn:??? -> ?stateMachineArn:??? -> ?status:??? -> ?tracingConfiguration:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.t ]) list ]) 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