Class: Aws::RolesAnywhere::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rolesanywhere/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

Instance Attribute Details

#keyString

The tag key.

Returns:

  • (String)


1015
1016
1017
1018
1019
1020
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 1015

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

#valueString

The tag value.

Returns:

  • (String)


1015
1016
1017
1018
1019
1020
# File 'gems/aws-sdk-rolesanywhere/lib/aws-sdk-rolesanywhere/types.rb', line 1015

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