Module Values_0.ContactFlowModuleAliasSummarySource

Contains information about an alias.

Sourcetype nonrec t = {
  1. arn : ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the flow module alias.

    *)
  2. aliasId : ResourceId.t option;
    (*

    The identifier of the alias.

    *)
  3. version : ResourceVersion.t option;
    (*

    The version of the flow module.

    *)
  4. aliasName : ContactFlowModuleName.t option;
    (*

    The name of the alias.

    *)
  5. aliasDescription : ContactFlowModuleDescription.t option;
    (*

    The description of the alias.

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

    The timestamp when this resource was last modified.

    *)
}
Sourceval make : ?arn:??? -> ?aliasId:??? -> ?version:??? -> ?aliasName:??? -> ?aliasDescription:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of ResourceVersion.t | `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