Class: Aws::Transfer::Types::S3Tag

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

Overview

Specifies the key-value pair that are assigned to a file during the execution of a Tagging step.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The name assigned to the tag that you create.

Returns:

  • (String)


4933
4934
4935
4936
4937
4938
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4933

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

#valueString

The value that corresponds to the key.

Returns:

  • (String)


4933
4934
4935
4936
4937
4938
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 4933

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