Class: Aws::Scheduler::Types::DeleteScheduleGroupInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::DeleteScheduleGroupInput
- Defined in:
- gems/aws-sdk-scheduler/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 to delete.
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.
292 293 294 295 296 297 |
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 292 class DeleteScheduleGroupInput < Struct.new( :client_token, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the schedule group to delete.
292 293 294 295 296 297 |
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 292 class DeleteScheduleGroupInput < Struct.new( :client_token, :name) SENSITIVE = [] include Aws::Structure end |