Class: Aws::RolesAnywhere::Types::Tag
- Inherits:
-
Struct
- Object
- Struct
- Aws::RolesAnywhere::Types::Tag
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rolesanywhere/types.rb
Overview
A label that consists of a key and value you define.
Constant Summary collapse
- SENSITIVE =
[:key, :value]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag key.
-
#value ⇒ String
The tag value.
Instance Attribute Details
#key ⇒ String
The tag key.
1027 1028 1029 1030 1031 1032 |
# File 'lib/aws-sdk-rolesanywhere/types.rb', line 1027 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |
#value ⇒ String
The tag value.
1027 1028 1029 1030 1031 1032 |
# File 'lib/aws-sdk-rolesanywhere/types.rb', line 1027 class Tag < Struct.new( :key, :value) SENSITIVE = [:key, :value] include Aws::Structure end |