Class: Aws::Scheduler::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb

Overview

Tag to associate with a schedule group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key for the tag.

Returns:

  • (String)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 1131

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

#valueString

The value for the tag.

Returns:

  • (String)


1131
1132
1133
1134
1135
1136
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 1131

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