Module Values.UpdateAgentAliasRequestSource

Updates configurations for an alias of an agent.

Sourcetype nonrec t = {
  1. agentId : Id.t;
    (*

    The unique identifier of the agent.

    *)
  2. agentAliasId : AgentAliasId.t;
    (*

    The unique identifier of the alias.

    *)
  3. agentAliasName : Name.t;
    (*

    Specifies a new name for the alias.

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

    Specifies a new description for the alias.

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

    Contains details about the routing configuration of the alias.

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

    The invocation state for the agent alias. To pause the agent alias, set the value to REJECT_INVOCATIONS. To start the agent alias running again, set the value to ACCEPT_INVOCATIONS. Use the GetAgentAlias, or ListAgentAliases, operation to get the invocation state of an agent alias.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?routingConfiguration:??? -> ?aliasInvocationState:??? -> agentId:Id.t -> agentAliasId:AgentAliasId.t -> agentAliasName:Name.t -> 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 Id.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