Class: Aws::Glue::Types::TagResourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of the Glue resource to which to add the tags. For more information about Glue resource ARNs, see the [Glue ARN string pattern].

[1]: docs.aws.amazon.com/glue/latest/dg/aws-glue-api-common.html#aws-glue-api-regex-aws-glue-arn-id

Returns:

  • (String)


21261
21262
21263
21264
21265
21266
# File 'lib/aws-sdk-glue/types.rb', line 21261

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

#tags_to_addHash<String,String>

Tags to add to this resource.

Returns:

  • (Hash<String,String>)


21261
21262
21263
21264
21265
21266
# File 'lib/aws-sdk-glue/types.rb', line 21261

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