Module Values.DescribeStateMachineAliasOutputSource

Returns details about a state machine alias. Related operations: CreateStateMachineAlias ListStateMachineAliases UpdateStateMachineAlias DeleteStateMachineAlias

Sourcetype nonrec t = {
  1. stateMachineAliasArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the state machine alias.

    *)
  2. name : Name.t option;
    (*

    The name of the state machine alias.

    *)
  3. description : AliasDescription.t option;
    (*

    A description of the alias.

    *)
  4. routingConfiguration : RoutingConfigurationList.t option;
    (*

    The routing configuration of the alias.

    *)
  5. creationDate : Timestamp.t option;
    (*

    The date the state machine alias was created.

    *)
  6. updateDate : Timestamp.t option;
    (*

    The date the state machine alias was last updated. For a newly created state machine, this is the same as the creation date.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidArn of InvalidArn.t
  2. | `ResourceNotFound of ResourceNotFound.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?stateMachineAliasArn:??? -> ?name:??? -> ?description:??? -> ?routingConfiguration:??? -> ?creationDate:??? -> ?updateDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidArn of InvalidArn.t | `ResourceNotFound of ResourceNotFound.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidArn of InvalidArn.t | `ResourceNotFound of ResourceNotFound.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 * [> `List of [> `Structure of (string * [> `Integer of VersionWeight.t | `String of Arn.t ]) list ] list | `String of Arn.t | `Timestamp of 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