Module Values.AgentAliasSummarySource

Contains details about an alias of an agent.

Sourcetype nonrec t = {
  1. agentAliasId : AgentAliasId.t option;
    (*

    Contains details about

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

    The name of the alias.

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

    The description of the alias.

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

    Contains details about the version of the agent with which the alias is associated.

    *)
  5. agentAliasStatus : AgentAliasStatus.t option;
    (*

    The status of the alias.

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

    The time at which the alias of the agent was created.

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

    The time at which the alias was last updated.

    *)
  8. aliasInvocationState : AliasInvocationState.t option;
    (*

    The invocation state for the agent alias. If the agent alias is running, the value is ACCEPT_INVOCATIONS. If the agent alias is paused, the value is REJECT_INVOCATIONS. Use the UpdateAgentAlias operation to change the invocation state.

    *)
}
Sourceval make : ?agentAliasId:??? -> ?agentAliasName:??? -> ?description:??? -> ?routingConfiguration:??? -> ?agentAliasStatus:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?aliasInvocationState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of Version.t ]) list ] list | `String of AgentAliasId.t | `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