Class: Aws::GameLift::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name ([ARN][1]) that is assigned to and uniquely identifies the GameLift resource that you want to assign tags to.
-
#tags ⇒ Array<Types::Tag>
A list of one or more tags to assign to the specified GameLift resource.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that is assigned to and uniquely identifies the GameLift resource that you want to assign tags to. GameLift resource ARNs are included in the data object for the resource, which can be retrieved by calling a List or Describe operation for the resource type.
8402 8403 8404 8405 8406 8407 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8402 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of one or more tags to assign to the specified 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 for actual tagging limits.
8402 8403 8404 8405 8406 8407 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8402 class TagResourceRequest < Struct.new( :resource_arn, :tags) SENSITIVE = [] include Aws::Structure end |