You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudFormation::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing Tag as input to an Aws::Client method, you can use a vanilla Hash:

{
  key: "TagKey", # required
  value: "TagValue", # required
}

The Tag type enables you to specify a key-value pair that can be used to store information about an AWS CloudFormation stack.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Required. A string used to identify this tag. You can specify a maximum of 128 characters for a tag key. Tags owned by Amazon Web Services (AWS) have the reserved prefix: aws:.

Returns:

  • (String)

    Required.

#valueString

Required. A string containing the value for this tag. You can specify a maximum of 256 characters for a tag value.

Returns:

  • (String)

    Required.