Interface ListCellsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListCellsResponse.Builder,ListCellsResponse>,Route53RecoveryReadinessResponse.Builder,SdkBuilder<ListCellsResponse.Builder,ListCellsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListCellsResponse
public static interface ListCellsResponse.Builder extends Route53RecoveryReadinessResponse.Builder, SdkPojo, CopyableBuilder<ListCellsResponse.Builder,ListCellsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListCellsResponse.Buildercells(Collection<CellOutput> cells)A list of cells.ListCellsResponse.Buildercells(Consumer<CellOutput.Builder>... cells)A list of cells.ListCellsResponse.Buildercells(CellOutput... cells)A list of cells.ListCellsResponse.BuildernextToken(String nextToken)The token that identifies which batch of results you want to see.-
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
-
cells
ListCellsResponse.Builder cells(Collection<CellOutput> cells)
A list of cells.
- Parameters:
cells- A list of cells.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cells
ListCellsResponse.Builder cells(CellOutput... cells)
A list of cells.
- Parameters:
cells- A list of cells.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cells
ListCellsResponse.Builder cells(Consumer<CellOutput.Builder>... cells)
A list of cells.
This is a convenience method that creates an instance of theCellOutput.Builderavoiding the need to create one manually viaCellOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#cells(List.) - Parameters:
cells- a consumer that will call methods onCellOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#cells(java.util.Collection)
-
nextToken
ListCellsResponse.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.
-
-