Interface RestoreSummary.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RestoreSummary.Builder,RestoreSummary>
,SdkBuilder<RestoreSummary.Builder,RestoreSummary>
,SdkPojo
- Enclosing class:
- RestoreSummary
public static interface RestoreSummary.Builder extends SdkPojo, CopyableBuilder<RestoreSummary.Builder,RestoreSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RestoreSummary.Builder
restoreDateTime(Instant restoreDateTime)
Point in time or source backup time.RestoreSummary.Builder
restoreInProgress(Boolean restoreInProgress)
Indicates if a restore is in progress or not.RestoreSummary.Builder
sourceBackupArn(String sourceBackupArn)
The Amazon Resource Name (ARN) of the backup from which the table was restored.RestoreSummary.Builder
sourceTableArn(String sourceTableArn)
The ARN of the source table of the backup that is being restored.-
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
-
sourceBackupArn
RestoreSummary.Builder sourceBackupArn(String sourceBackupArn)
The Amazon Resource Name (ARN) of the backup from which the table was restored.
- Parameters:
sourceBackupArn
- The Amazon Resource Name (ARN) of the backup from which the table was restored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceTableArn
RestoreSummary.Builder sourceTableArn(String sourceTableArn)
The ARN of the source table of the backup that is being restored.
- Parameters:
sourceTableArn
- The ARN of the source table of the backup that is being restored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
restoreDateTime
RestoreSummary.Builder restoreDateTime(Instant restoreDateTime)
Point in time or source backup time.
- Parameters:
restoreDateTime
- Point in time or source backup time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
restoreInProgress
RestoreSummary.Builder restoreInProgress(Boolean restoreInProgress)
Indicates if a restore is in progress or not.
- Parameters:
restoreInProgress
- Indicates if a restore is in progress or not.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-