Interface ListLayoutsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectCasesResponse.Builder,CopyableBuilder<ListLayoutsResponse.Builder,ListLayoutsResponse>,SdkBuilder<ListLayoutsResponse.Builder,ListLayoutsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListLayoutsResponse
public static interface ListLayoutsResponse.Builder extends ConnectCasesResponse.Builder, SdkPojo, CopyableBuilder<ListLayoutsResponse.Builder,ListLayoutsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListLayoutsResponse.Builderlayouts(Collection<LayoutSummary> layouts)The layouts for the domain.ListLayoutsResponse.Builderlayouts(Consumer<LayoutSummary.Builder>... layouts)The layouts for the domain.ListLayoutsResponse.Builderlayouts(LayoutSummary... layouts)The layouts for the domain.ListLayoutsResponse.BuildernextToken(String nextToken)The token for the next set of results.-
Methods inherited from interface software.amazon.awssdk.services.connectcases.model.ConnectCasesResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
layouts
ListLayoutsResponse.Builder layouts(Collection<LayoutSummary> layouts)
The layouts for the domain.
- Parameters:
layouts- The layouts for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
layouts
ListLayoutsResponse.Builder layouts(LayoutSummary... layouts)
The layouts for the domain.
- Parameters:
layouts- The layouts for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
layouts
ListLayoutsResponse.Builder layouts(Consumer<LayoutSummary.Builder>... layouts)
The layouts for the domain.
This is a convenience method that creates an instance of theLayoutSummary.Builderavoiding the need to create one manually viaLayoutSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#layouts(List.) - Parameters:
layouts- a consumer that will call methods onLayoutSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#layouts(java.util.Collection)
-
nextToken
ListLayoutsResponse.Builder nextToken(String nextToken)
The token for the next set of results. This is null if there are no more results to return.
- Parameters:
nextToken- The token for the next set of results. This is null if there are no more results to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-