Interface AutoTuneMaintenanceSchedule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoTuneMaintenanceSchedule.Builder,AutoTuneMaintenanceSchedule>,SdkBuilder<AutoTuneMaintenanceSchedule.Builder,AutoTuneMaintenanceSchedule>,SdkPojo
- Enclosing class:
- AutoTuneMaintenanceSchedule
public static interface AutoTuneMaintenanceSchedule.Builder extends SdkPojo, CopyableBuilder<AutoTuneMaintenanceSchedule.Builder,AutoTuneMaintenanceSchedule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description AutoTuneMaintenanceSchedule.BuildercronExpressionForRecurrence(String cronExpressionForRecurrence)Specifies cron expression for a recurring maintenance schedule.default AutoTuneMaintenanceSchedule.Builderduration(Consumer<Duration.Builder> duration)Specifies maintenance schedule duration: duration value and duration unit.AutoTuneMaintenanceSchedule.Builderduration(Duration duration)Specifies maintenance schedule duration: duration value and duration unit.AutoTuneMaintenanceSchedule.BuilderstartAt(Instant startAt)Specifies timestamp at which Auto-Tune maintenance schedule start.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
startAt
AutoTuneMaintenanceSchedule.Builder startAt(Instant startAt)
Specifies timestamp at which Auto-Tune maintenance schedule start.
- Parameters:
startAt- Specifies timestamp at which Auto-Tune maintenance schedule start.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
duration
AutoTuneMaintenanceSchedule.Builder duration(Duration duration)
Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.
- Parameters:
duration- Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
duration
default AutoTuneMaintenanceSchedule.Builder duration(Consumer<Duration.Builder> duration)
Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.
This is a convenience method that creates an instance of theDuration.Builderavoiding the need to create one manually viaDuration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toduration(Duration).- Parameters:
duration- a consumer that will call methods onDuration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
duration(Duration)
-
cronExpressionForRecurrence
AutoTuneMaintenanceSchedule.Builder cronExpressionForRecurrence(String cronExpressionForRecurrence)
Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.
- Parameters:
cronExpressionForRecurrence- Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-