Interface ExecuteFastResetResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ExecuteFastResetResponse.Builder,ExecuteFastResetResponse>,NeptunedataResponse.Builder,SdkBuilder<ExecuteFastResetResponse.Builder,ExecuteFastResetResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ExecuteFastResetResponse
public static interface ExecuteFastResetResponse.Builder extends NeptunedataResponse.Builder, SdkPojo, CopyableBuilder<ExecuteFastResetResponse.Builder,ExecuteFastResetResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ExecuteFastResetResponse.Builderpayload(Consumer<FastResetToken.Builder> payload)Thepayloadis only returned by theinitiateDatabaseResetaction, and contains the unique token to use with theperformDatabaseResetaction to make the reset occur.ExecuteFastResetResponse.Builderpayload(FastResetToken payload)Thepayloadis only returned by theinitiateDatabaseResetaction, and contains the unique token to use with theperformDatabaseResetaction to make the reset occur.ExecuteFastResetResponse.Builderstatus(String status)Thestatusis only returned for theperformDatabaseResetaction, and indicates whether or not the fast reset rquest is accepted.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.neptunedata.model.NeptunedataResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
status
ExecuteFastResetResponse.Builder status(String status)
The
statusis only returned for theperformDatabaseResetaction, and indicates whether or not the fast reset rquest is accepted.- Parameters:
status- Thestatusis only returned for theperformDatabaseResetaction, and indicates whether or not the fast reset rquest is accepted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
payload
ExecuteFastResetResponse.Builder payload(FastResetToken payload)
The
payloadis only returned by theinitiateDatabaseResetaction, and contains the unique token to use with theperformDatabaseResetaction to make the reset occur.- Parameters:
payload- Thepayloadis only returned by theinitiateDatabaseResetaction, and contains the unique token to use with theperformDatabaseResetaction to make the reset occur.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
payload
default ExecuteFastResetResponse.Builder payload(Consumer<FastResetToken.Builder> payload)
The
This is a convenience method that creates an instance of thepayloadis only returned by theinitiateDatabaseResetaction, and contains the unique token to use with theperformDatabaseResetaction to make the reset occur.FastResetToken.Builderavoiding the need to create one manually viaFastResetToken.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topayload(FastResetToken).- Parameters:
payload- a consumer that will call methods onFastResetToken.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
payload(FastResetToken)
-
-