Class: Aws::Scheduler::Types::DeleteScheduleInput

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

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.

Returns:

  • (String)


324
325
326
327
328
329
330
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 324

class DeleteScheduleInput < Struct.new(
  :client_token,
  :group_name,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#group_nameString

The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.

Returns:

  • (String)


324
325
326
327
328
329
330
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 324

class DeleteScheduleInput < Struct.new(
  :client_token,
  :group_name,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the schedule to delete.

Returns:

  • (String)


324
325
326
327
328
329
330
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 324

class DeleteScheduleInput < Struct.new(
  :client_token,
  :group_name,
  :name)
  SENSITIVE = []
  include Aws::Structure
end