Class: Aws::S3Files::Types::Tag

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

Overview

A key-value pair for resource tagging.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The tag key. The key can't start with aws:.

Returns:

  • (String)


1386
1387
1388
1389
1390
1391
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 1386

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

#valueString

The tag value.

Returns:

  • (String)


1386
1387
1388
1389
1390
1391
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 1386

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