Class: Aws::Scheduler::Types::DeleteScheduleInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::DeleteScheduleInput
- 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.
-
#group_name ⇒ String
The name of the schedule group associated with this schedule.
-
#name ⇒ String
The name of the schedule 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.
324 325 326 327 328 329 330 |
# File 'lib/aws-sdk-scheduler/types.rb', line 324 class DeleteScheduleInput < Struct.new( :client_token, :group_name, :name) SENSITIVE = [] include Aws::Structure end |
#group_name ⇒ String
The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.
324 325 326 327 328 329 330 |
# File 'lib/aws-sdk-scheduler/types.rb', line 324 class DeleteScheduleInput < Struct.new( :client_token, :group_name, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the schedule to delete.
324 325 326 327 328 329 330 |
# File 'lib/aws-sdk-scheduler/types.rb', line 324 class DeleteScheduleInput < Struct.new( :client_token, :group_name, :name) SENSITIVE = [] include Aws::Structure end |