Interface BatchScheduleActionDeleteResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchScheduleActionDeleteResult.Builder,BatchScheduleActionDeleteResult>,SdkBuilder<BatchScheduleActionDeleteResult.Builder,BatchScheduleActionDeleteResult>,SdkPojo
- Enclosing class:
- BatchScheduleActionDeleteResult
public static interface BatchScheduleActionDeleteResult.Builder extends SdkPojo, CopyableBuilder<BatchScheduleActionDeleteResult.Builder,BatchScheduleActionDeleteResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchScheduleActionDeleteResult.BuilderscheduleActions(Collection<ScheduleAction> scheduleActions)List of actions that have been deleted from the schedule.BatchScheduleActionDeleteResult.BuilderscheduleActions(Consumer<ScheduleAction.Builder>... scheduleActions)List of actions that have been deleted from the schedule.BatchScheduleActionDeleteResult.BuilderscheduleActions(ScheduleAction... scheduleActions)List of actions that have been deleted from the schedule.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
scheduleActions
BatchScheduleActionDeleteResult.Builder scheduleActions(Collection<ScheduleAction> scheduleActions)
List of actions that have been deleted from the schedule.- Parameters:
scheduleActions- List of actions that have been deleted from the schedule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleActions
BatchScheduleActionDeleteResult.Builder scheduleActions(ScheduleAction... scheduleActions)
List of actions that have been deleted from the schedule.- Parameters:
scheduleActions- List of actions that have been deleted from the schedule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleActions
BatchScheduleActionDeleteResult.Builder scheduleActions(Consumer<ScheduleAction.Builder>... scheduleActions)
List of actions that have been deleted from the schedule. This is a convenience method that creates an instance of theScheduleAction.Builderavoiding the need to create one manually viaScheduleAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#scheduleActions(List.) - Parameters:
scheduleActions- a consumer that will call methods onScheduleAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#scheduleActions(java.util.Collection)
-
-