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)


4485
4486
4487
4488
4489
4490
# File 'lib/aws-sdk-transfer/types.rb', line 4485

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

#valueString

The value that corresponds to the key.

Returns:

  • (String)


4485
4486
4487
4488
4489
4490
# File 'lib/aws-sdk-transfer/types.rb', line 4485

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