Interface CreateScheduleGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateScheduleGroupRequest.Builder,CreateScheduleGroupRequest>,SchedulerRequest.Builder,SdkBuilder<CreateScheduleGroupRequest.Builder,CreateScheduleGroupRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateScheduleGroupRequest
public static interface CreateScheduleGroupRequest.Builder extends SchedulerRequest.Builder, SdkPojo, CopyableBuilder<CreateScheduleGroupRequest.Builder,CreateScheduleGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateScheduleGroupRequest.BuilderclientToken(String clientToken)Unique, case-sensitive identifier you provide to ensure the idempotency of the request.CreateScheduleGroupRequest.Buildername(String name)The name of the schedule group that you are creating.CreateScheduleGroupRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateScheduleGroupRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)CreateScheduleGroupRequest.Buildertags(Collection<Tag> tags)The list of tags to associate with the schedule group.CreateScheduleGroupRequest.Buildertags(Consumer<Tag.Builder>... tags)The list of tags to associate with the schedule group.CreateScheduleGroupRequest.Buildertags(Tag... tags)The list of tags to associate with the schedule group.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.scheduler.model.SchedulerRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
clientToken
CreateScheduleGroupRequest.Builder clientToken(String clientToken)
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.
- Parameters:
clientToken- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateScheduleGroupRequest.Builder name(String name)
The name of the schedule group that you are creating.
- Parameters:
name- The name of the schedule group that you are creating.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateScheduleGroupRequest.Builder tags(Collection<Tag> tags)
The list of tags to associate with the schedule group.
- Parameters:
tags- The list of tags to associate with the schedule group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateScheduleGroupRequest.Builder tags(Tag... tags)
The list of tags to associate with the schedule group.
- Parameters:
tags- The list of tags to associate with the schedule group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
CreateScheduleGroupRequest.Builder tags(Consumer<Tag.Builder>... tags)
The list of tags to associate with the schedule group.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
overrideConfiguration
CreateScheduleGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateScheduleGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-