Interface ListAliasesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAliasesResponse.Builder,ListAliasesResponse>,GameLiftResponse.Builder,SdkBuilder<ListAliasesResponse.Builder,ListAliasesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAliasesResponse
public static interface ListAliasesResponse.Builder extends GameLiftResponse.Builder, SdkPojo, CopyableBuilder<ListAliasesResponse.Builder,ListAliasesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAliasesResponse.Builderaliases(Collection<Alias> aliases)A collection of alias resources that match the request parameters.ListAliasesResponse.Builderaliases(Consumer<Alias.Builder>... aliases)A collection of alias resources that match the request parameters.ListAliasesResponse.Builderaliases(Alias... aliases)A collection of alias resources that match the request parameters.ListAliasesResponse.BuildernextToken(String nextToken)A token that indicates where to resume retrieving results on the next call to this operation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.gamelift.model.GameLiftResponse.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
-
aliases
ListAliasesResponse.Builder aliases(Collection<Alias> aliases)
A collection of alias resources that match the request parameters.
- Parameters:
aliases- A collection of alias resources that match the request parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliases
ListAliasesResponse.Builder aliases(Alias... aliases)
A collection of alias resources that match the request parameters.
- Parameters:
aliases- A collection of alias resources that match the request parameters.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliases
ListAliasesResponse.Builder aliases(Consumer<Alias.Builder>... aliases)
A collection of alias resources that match the request parameters.
This is a convenience method that creates an instance of theAlias.Builderavoiding the need to create one manually viaAlias.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#aliases(List.) - Parameters:
aliases- a consumer that will call methods onAlias.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#aliases(java.util.Collection)
-
nextToken
ListAliasesResponse.Builder nextToken(String nextToken)
A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.
- Parameters:
nextToken- A token that indicates where to resume retrieving results on the next call to this operation. If no token is returned, these results represent the end of the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-