Class: Aws::GameLift::Types::TagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The Amazon Resource Name ([ARN]) that uniquely identifies the Amazon GameLift resource that you want to assign tags to. Amazon GameLift includes resource ARNs in the data object for the resource. You can retrieve the ARN by calling a ‘List` or `Describe` operation for the resource type.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html

Returns:

  • (String)


9884
9885
9886
9887
9888
9889
# File 'lib/aws-sdk-gamelift/types.rb', line 9884

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of one or more tags to assign to the specified Amazon GameLift resource. Tags are developer-defined and structured as key-value pairs. The maximum tag limit may be lower than stated. See

Tagging Amazon Web Services Resources][1

for tagging limits.

[1]: docs.aws.amazon.com/general/latest/gr/aws_tagging.html

Returns:



9884
9885
9886
9887
9888
9889
# File 'lib/aws-sdk-gamelift/types.rb', line 9884

class TagResourceRequest < Struct.new(
  :resource_arn,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end