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

Class: Aws::GameLift::Types::CreateAliasInput

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

Overview

Note:

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

{
  name: "NonBlankAndLengthConstraintString", # required
  description: "NonZeroAndMaxString",
  routing_strategy: { # required
    type: "SIMPLE", # accepts SIMPLE, TERMINAL
    fleet_id: "FleetId",
    message: "FreeText",
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Represents the input for a request operation.

Instance Attribute Summary collapse

Instance Attribute Details

#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.

#tagsArray<Types::Tag>

A list of labels to assign to the new alias resource. Tags are developer-defined key-value pairs. Tagging AWS resources are useful for resource management, access management and cost allocation. For more information, see Tagging AWS Resources in the AWS General Reference. Once the resource is created, you can use TagResource, UntagResource, and ListTagsForResource to add, remove, and view tags. The maximum tag limit may be lower than stated. See the AWS General Reference for actual tagging limits.

Returns:

  • (Array<Types::Tag>)

    A list of labels to assign to the new alias resource.