Class: Aws::S3Control::Types::S3Tag

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

Overview

A container for a key-value name pair.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Key of the tag

Returns:

  • (String)


7372
7373
7374
7375
7376
7377
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7372

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

#valueString

Value of the tag

Returns:

  • (String)


7372
7373
7374
7375
7376
7377
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7372

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