Interface ListMapsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListMapsResponse.Builder,ListMapsResponse>,LocationResponse.Builder,SdkBuilder<ListMapsResponse.Builder,ListMapsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListMapsResponse
public static interface ListMapsResponse.Builder extends LocationResponse.Builder, SdkPojo, CopyableBuilder<ListMapsResponse.Builder,ListMapsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListMapsResponse.Builderentries(Collection<ListMapsResponseEntry> entries)Contains a list of maps in your Amazon Web Services accountListMapsResponse.Builderentries(Consumer<ListMapsResponseEntry.Builder>... entries)Contains a list of maps in your Amazon Web Services accountListMapsResponse.Builderentries(ListMapsResponseEntry... entries)Contains a list of maps in your Amazon Web Services accountListMapsResponse.BuildernextToken(String nextToken)A pagination token indicating there are additional pages available.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.location.model.LocationResponse.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
-
entries
ListMapsResponse.Builder entries(Collection<ListMapsResponseEntry> entries)
Contains a list of maps in your Amazon Web Services account
- Parameters:
entries- Contains a list of maps in your Amazon Web Services account- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
ListMapsResponse.Builder entries(ListMapsResponseEntry... entries)
Contains a list of maps in your Amazon Web Services account
- Parameters:
entries- Contains a list of maps in your Amazon Web Services account- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entries
ListMapsResponse.Builder entries(Consumer<ListMapsResponseEntry.Builder>... entries)
Contains a list of maps in your Amazon Web Services account
This is a convenience method that creates an instance of theListMapsResponseEntry.Builderavoiding the need to create one manually viaListMapsResponseEntry.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entries(List.) - Parameters:
entries- a consumer that will call methods onListMapsResponseEntry.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entries(java.util.Collection)
-
nextToken
ListMapsResponse.Builder nextToken(String nextToken)
A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.
- Parameters:
nextToken- A pagination token indicating there are additional pages available. You can use the token in a following request to fetch the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-