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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


4955
4956
4957
4958
4959
4960
# File 'lib/aws-sdk-transfer/types.rb', line 4955

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

#valueString

The value that corresponds to the key.

Returns:

  • (String)


4955
4956
4957
4958
4959
4960
# File 'lib/aws-sdk-transfer/types.rb', line 4955

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