Interface SnapshotErrorMessage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnapshotErrorMessage.Builder,SnapshotErrorMessage>,SdkBuilder<SnapshotErrorMessage.Builder,SnapshotErrorMessage>,SdkPojo
- Enclosing class:
- SnapshotErrorMessage
public static interface SnapshotErrorMessage.Builder extends SdkPojo, CopyableBuilder<SnapshotErrorMessage.Builder,SnapshotErrorMessage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnapshotErrorMessage.BuilderfailureCode(String failureCode)The failure code for the error.SnapshotErrorMessage.BuilderfailureReason(String failureReason)The text message describing the error.SnapshotErrorMessage.BuildersnapshotClusterIdentifier(String snapshotClusterIdentifier)A unique identifier for the cluster.SnapshotErrorMessage.BuildersnapshotIdentifier(String snapshotIdentifier)A unique identifier for the snapshot returning the error.-
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
-
snapshotIdentifier
SnapshotErrorMessage.Builder snapshotIdentifier(String snapshotIdentifier)
A unique identifier for the snapshot returning the error.
- Parameters:
snapshotIdentifier- A unique identifier for the snapshot returning the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
snapshotClusterIdentifier
SnapshotErrorMessage.Builder snapshotClusterIdentifier(String snapshotClusterIdentifier)
A unique identifier for the cluster.
- Parameters:
snapshotClusterIdentifier- A unique identifier for the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureCode
SnapshotErrorMessage.Builder failureCode(String failureCode)
The failure code for the error.
- Parameters:
failureCode- The failure code for the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failureReason
SnapshotErrorMessage.Builder failureReason(String failureReason)
The text message describing the error.
- Parameters:
failureReason- The text message describing the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-