Class: Aws::Scheduler::Types::DeleteScheduleGroupInput

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)


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

#nameString

The name of the schedule group to delete.

Returns:

  • (String)


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