Class: Aws::Scheduler::Types::CreateScheduleGroupInput

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)


108
109
110
111
112
113
114
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 108

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

#nameString

The name of the schedule group that you are creating.

Returns:

  • (String)


108
109
110
111
112
113
114
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 108

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

#tagsArray<Types::Tag>

The list of tags to associate with the schedule group.

Returns:



108
109
110
111
112
113
114
# File 'gems/aws-sdk-scheduler/lib/aws-sdk-scheduler/types.rb', line 108

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