Module Values.FlowAliasSummarySource

Contains information about an alias of a flow. This data type is used in the following API operations: ListFlowAliases response

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

    The name of the alias.

    *)
  2. description : Description.t option;
    (*

    A description of the alias.

    *)
  3. routingConfiguration : FlowAliasRoutingConfiguration.t option;
    (*

    A list of configurations about the versions that the alias maps to. Currently, you can only specify one.

    *)
  4. concurrencyConfiguration : FlowAliasConcurrencyConfiguration.t option;
    (*

    The configuration that specifies how nodes in the flow are executed concurrently.

    *)
  5. flowId : FlowId.t option;
    (*

    The unique identifier of the flow.

    *)
  6. id : FlowAliasId.t option;
    (*

    The unique identifier of the alias of the flow.

    *)
  7. arn : FlowAliasArn.t option;
    (*

    The Amazon Resource Name (ARN) of the alias.

    *)
  8. createdAt : DateTimestamp.t option;
    (*

    The time at which the alias was created.

    *)
  9. updatedAt : DateTimestamp.t option;
    (*

    The time at which the alias was last updated.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?routingConfiguration:??? -> ?concurrencyConfiguration:??? -> ?flowId:??? -> ?id:??? -> ?arn:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Version.t ]) list ] list | `String of Name.t | `Structure of (string * [> `Enum of string | `Integer of FlowAliasConcurrencyConfigurationMaxConcurrencyInteger.t ]) list | `Timestamp of DateTimestamp.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