Interface AutoRollbackConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoRollbackConfiguration.Builder,AutoRollbackConfiguration>,SdkBuilder<AutoRollbackConfiguration.Builder,AutoRollbackConfiguration>,SdkPojo
- Enclosing class:
- AutoRollbackConfiguration
public static interface AutoRollbackConfiguration.Builder extends SdkPojo, CopyableBuilder<AutoRollbackConfiguration.Builder,AutoRollbackConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoRollbackConfiguration.Builderenabled(Boolean enabled)Indicates whether a defined automatic rollback configuration is currently enabled.AutoRollbackConfiguration.Builderevents(Collection<AutoRollbackEvent> events)The event type or types that trigger a rollback.AutoRollbackConfiguration.Builderevents(AutoRollbackEvent... events)The event type or types that trigger a rollback.AutoRollbackConfiguration.BuildereventsWithStrings(String... events)The event type or types that trigger a rollback.AutoRollbackConfiguration.BuildereventsWithStrings(Collection<String> events)The event type or types that trigger a rollback.-
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
-
enabled
AutoRollbackConfiguration.Builder enabled(Boolean enabled)
Indicates whether a defined automatic rollback configuration is currently enabled.
- Parameters:
enabled- Indicates whether a defined automatic rollback configuration is currently enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventsWithStrings
AutoRollbackConfiguration.Builder eventsWithStrings(Collection<String> events)
The event type or types that trigger a rollback.
- Parameters:
events- The event type or types that trigger a rollback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventsWithStrings
AutoRollbackConfiguration.Builder eventsWithStrings(String... events)
The event type or types that trigger a rollback.
- Parameters:
events- The event type or types that trigger a rollback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
AutoRollbackConfiguration.Builder events(Collection<AutoRollbackEvent> events)
The event type or types that trigger a rollback.
- Parameters:
events- The event type or types that trigger a rollback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
AutoRollbackConfiguration.Builder events(AutoRollbackEvent... events)
The event type or types that trigger a rollback.
- Parameters:
events- The event type or types that trigger a rollback.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-