Class: Aws::Scheduler::Types::CreateScheduleGroupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::CreateScheduleGroupInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-scheduler/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
-
#name ⇒ String
The name of the schedule group that you are creating.
-
#tags ⇒ Array<Types::Tag>
The list of tags to associate with the schedule group.
Instance Attribute Details
#client_token ⇒ String
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-scheduler/types.rb', line 108 class CreateScheduleGroupInput < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the schedule group that you are creating.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-scheduler/types.rb', line 108 class CreateScheduleGroupInput < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags to associate with the schedule group.
108 109 110 111 112 113 114 |
# File 'lib/aws-sdk-scheduler/types.rb', line 108 class CreateScheduleGroupInput < Struct.new( :client_token, :name, :tags) SENSITIVE = [] include Aws::Structure end |