Interface ListAliasesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAliasesResponse.Builder,ListAliasesResponse>,PaymentCryptographyResponse.Builder,SdkBuilder<ListAliasesResponse.Builder,ListAliasesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAliasesResponse
public static interface ListAliasesResponse.Builder extends PaymentCryptographyResponse.Builder, SdkPojo, CopyableBuilder<ListAliasesResponse.Builder,ListAliasesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAliasesResponse.Builderaliases(Collection<Alias> aliases)The list of aliases.ListAliasesResponse.Builderaliases(Consumer<Alias.Builder>... aliases)The list of aliases.ListAliasesResponse.Builderaliases(Alias... aliases)The list of aliases.ListAliasesResponse.BuildernextToken(String nextToken)The token for the next set of results, or an empty or null value if there are no more results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.paymentcryptography.model.PaymentCryptographyResponse.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)
The list of aliases. Each alias describes the
KeyArncontained within.- Parameters:
aliases- The list of aliases. Each alias describes theKeyArncontained within.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliases
ListAliasesResponse.Builder aliases(Alias... aliases)
The list of aliases. Each alias describes the
KeyArncontained within.- Parameters:
aliases- The list of aliases. Each alias describes theKeyArncontained within.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliases
ListAliasesResponse.Builder aliases(Consumer<Alias.Builder>... aliases)
The list of aliases. Each alias describes the
This is a convenience method that creates an instance of theKeyArncontained within.Alias.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)
The token for the next set of results, or an empty or null value if there are no more results.
- Parameters:
nextToken- The token for the next set of results, or an empty or null value if there are no more results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-