Class: Aws::EC2::Types::S3ObjectTag

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

The tags to apply to the AMI object that will be stored in the Amazon S3 bucket. For more information, see [Categorizing your storage using tags] in the *Amazon Simple Storage Service User Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/object-tagging.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key of the tag.

Constraints: Tag keys are case-sensitive and can be up to 128 Unicode characters in length. May not begin with ‘aws`:.

Returns:

  • (String)


59401
59402
59403
59404
59405
59406
# File 'lib/aws-sdk-ec2/types.rb', line 59401

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

#valueString

The value of the tag.

Constraints: Tag values are case-sensitive and can be up to 256 Unicode characters in length.

Returns:

  • (String)


59401
59402
59403
59404
59405
59406
# File 'lib/aws-sdk-ec2/types.rb', line 59401

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