Interface ApplicationRestoreConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationRestoreConfiguration.Builder,ApplicationRestoreConfiguration>,SdkBuilder<ApplicationRestoreConfiguration.Builder,ApplicationRestoreConfiguration>,SdkPojo
- Enclosing class:
- ApplicationRestoreConfiguration
public static interface ApplicationRestoreConfiguration.Builder extends SdkPojo, CopyableBuilder<ApplicationRestoreConfiguration.Builder,ApplicationRestoreConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApplicationRestoreConfiguration.BuilderapplicationRestoreType(String applicationRestoreType)Specifies how the application should be restored.ApplicationRestoreConfiguration.BuilderapplicationRestoreType(ApplicationRestoreType applicationRestoreType)Specifies how the application should be restored.ApplicationRestoreConfiguration.BuildersnapshotName(String snapshotName)The identifier of an existing snapshot of application state to use to restart an application.-
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
-
applicationRestoreType
ApplicationRestoreConfiguration.Builder applicationRestoreType(String applicationRestoreType)
Specifies how the application should be restored.
- Parameters:
applicationRestoreType- Specifies how the application should be restored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationRestoreType,ApplicationRestoreType
-
applicationRestoreType
ApplicationRestoreConfiguration.Builder applicationRestoreType(ApplicationRestoreType applicationRestoreType)
Specifies how the application should be restored.
- Parameters:
applicationRestoreType- Specifies how the application should be restored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationRestoreType,ApplicationRestoreType
-
snapshotName
ApplicationRestoreConfiguration.Builder snapshotName(String snapshotName)
The identifier of an existing snapshot of application state to use to restart an application. The application uses this value if
RESTORE_FROM_CUSTOM_SNAPSHOTis specified for theApplicationRestoreType.- Parameters:
snapshotName- The identifier of an existing snapshot of application state to use to restart an application. The application uses this value ifRESTORE_FROM_CUSTOM_SNAPSHOTis specified for theApplicationRestoreType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-