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)


7382
7383
7384
7385
7386
7387
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7382

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

#valueString

Value of the tag

Returns:

  • (String)


7382
7383
7384
7385
7386
7387
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7382

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