You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GameLift::Types::UpdateAliasInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateAliasInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  alias_id: "AliasIdOrArn", # required
  name: "NonBlankAndLengthConstraintString",
  description: "NonZeroAndMaxString",
  routing_strategy: {
    type: "SIMPLE", # accepts SIMPLE, TERMINAL
    fleet_id: "FleetId",
    message: "FreeText",
  },
}

Represents the input for a request operation.

Instance Attribute Summary collapse

Instance Attribute Details

#alias_idString

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

Returns:

  • (String)

    A unique identifier for the alias that you want to update.

#descriptionString

A human-readable description of the alias.

Returns:

  • (String)

    A human-readable description of the alias.

#nameString

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

Returns:

  • (String)

    A descriptive label that is associated with an alias.

#routing_strategyTypes::RoutingStrategy

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

Returns:

  • (Types::RoutingStrategy)

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