Class: Aws::GameLift::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::UntagResourceRequest
- 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 remove tags from.
-
#tag_keys ⇒ Array<String>
A list of one or more tag keys to remove from 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 remove tags from. 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.
8545 8546 8547 8548 8549 8550 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8545 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of one or more tag keys to remove from the specified GameLift resource. An Amazon Web Services resource can have only one tag with a specific tag key, so specifying the tag key identifies which tag to remove.
8545 8546 8547 8548 8549 8550 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8545 class UntagResourceRequest < Struct.new( :resource_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |