Class: Aws::GameLift::Types::UntagResourceRequest

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 remove tags from. 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)


8666
8667
8668
8669
8670
8671
# File 'lib/aws-sdk-gamelift/types.rb', line 8666

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

#tag_keysArray<String>

A list of one or more tag keys to remove from the specified Amazon GameLift resource.

Returns:

  • (Array<String>)


8666
8667
8668
8669
8670
8671
# File 'lib/aws-sdk-gamelift/types.rb', line 8666

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