Class: Aws::S3::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb

Overview

A container of a key value name pair.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Name of the object key.

Returns:

  • (String)


16047
16048
16049
16050
16051
16052
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 16047

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Value of the tag.

Returns:

  • (String)


16047
16048
16049
16050
16051
16052
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 16047

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end