Interface GetCellReadinessSummaryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetCellReadinessSummaryResponse.Builder,GetCellReadinessSummaryResponse>,Route53RecoveryReadinessResponse.Builder,SdkBuilder<GetCellReadinessSummaryResponse.Builder,GetCellReadinessSummaryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetCellReadinessSummaryResponse
public static interface GetCellReadinessSummaryResponse.Builder extends Route53RecoveryReadinessResponse.Builder, SdkPojo, CopyableBuilder<GetCellReadinessSummaryResponse.Builder,GetCellReadinessSummaryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetCellReadinessSummaryResponse.BuildernextToken(String nextToken)The token that identifies which batch of results you want to see.GetCellReadinessSummaryResponse.Builderreadiness(String readiness)The readiness at a cell level.GetCellReadinessSummaryResponse.Builderreadiness(Readiness readiness)The readiness at a cell level.GetCellReadinessSummaryResponse.BuilderreadinessChecks(Collection<ReadinessCheckSummary> readinessChecks)Summaries for the readiness checks that make up the cell.GetCellReadinessSummaryResponse.BuilderreadinessChecks(Consumer<ReadinessCheckSummary.Builder>... readinessChecks)Summaries for the readiness checks that make up the cell.GetCellReadinessSummaryResponse.BuilderreadinessChecks(ReadinessCheckSummary... readinessChecks)Summaries for the readiness checks that make up the cell.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.route53recoveryreadiness.model.Route53RecoveryReadinessResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
GetCellReadinessSummaryResponse.Builder nextToken(String nextToken)
The token that identifies which batch of results you want to see.
- Parameters:
nextToken- The token that identifies which batch of results you want to see.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readiness
GetCellReadinessSummaryResponse.Builder readiness(String readiness)
The readiness at a cell level.
-
readiness
GetCellReadinessSummaryResponse.Builder readiness(Readiness readiness)
The readiness at a cell level.
-
readinessChecks
GetCellReadinessSummaryResponse.Builder readinessChecks(Collection<ReadinessCheckSummary> readinessChecks)
Summaries for the readiness checks that make up the cell.
- Parameters:
readinessChecks- Summaries for the readiness checks that make up the cell.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readinessChecks
GetCellReadinessSummaryResponse.Builder readinessChecks(ReadinessCheckSummary... readinessChecks)
Summaries for the readiness checks that make up the cell.
- Parameters:
readinessChecks- Summaries for the readiness checks that make up the cell.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readinessChecks
GetCellReadinessSummaryResponse.Builder readinessChecks(Consumer<ReadinessCheckSummary.Builder>... readinessChecks)
Summaries for the readiness checks that make up the cell.
This is a convenience method that creates an instance of theReadinessCheckSummary.Builderavoiding the need to create one manually viaReadinessCheckSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#readinessChecks(List.) - Parameters:
readinessChecks- a consumer that will call methods onReadinessCheckSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#readinessChecks(java.util.Collection)
-
-