Module Values.UpdateAliasInputSource

This API works with the following fleet types: EC2, Anywhere, Container Updates properties for an alias. Specify the unique identifier of the alias to be updated and the new property values. When reassigning an alias to a new fleet, provide an updated routing strategy. If successful, the updated alias record is returned. Related actions All APIs by task

Sourcetype nonrec t = {
  1. aliasId : AliasIdOrArn.t;
    (*

    A unique identifier for the alias that you want to update. You can use either the alias ID or ARN value.

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

    A descriptive label that is associated with an alias. Alias names do not need to be unique.

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

    A human-readable description of the alias.

    *)
  4. routingStrategy : RoutingStrategy.t option;
    (*

    The routing configuration, including routing type and fleet target, for the alias.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?routingStrategy:??? -> aliasId:AliasIdOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AliasIdOrArn.t | `Structure of (string * [> `Enum of string | `String of FleetId.t ]) list ]) 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