Class: Aws::STS::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::STS::Types::Tag
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-sts/types.rb
Overview
When making an API call, you may pass Tag data as a hash:
{
key: "tagKeyType", # required
value: "tagValueType", # required
}
You can pass custom key-value pair attributes when you assume a role or federate a user. These are called session tags. You can then use the session tags to control access to resources. For more information, see Tagging AWS STS Sessions in the IAM User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key for a session tag.
-
#value ⇒ String
The value for a session tag.
Instance Attribute Details
#key ⇒ String
The key for a session tag.
You can pass up to 50 session tags. The plain text session tag keys can’t exceed 128 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide.
1526 1527 1528 1529 1530 1531 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1526 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for a session tag.
You can pass up to 50 session tags. The plain text session tag values can’t exceed 256 characters. For these and additional limits, see IAM and STS Character Limits in the IAM User Guide.
1526 1527 1528 1529 1530 1531 |
# File 'gems/aws-sdk-core/lib/aws-sdk-sts/types.rb', line 1526 class Tag < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |