Interface ListTypeVersionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListTypeVersionsResponse.Builder,ListTypeVersionsResponse>,SdkBuilder<ListTypeVersionsResponse.Builder,ListTypeVersionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTypeVersionsResponse
@Mutable @NotThreadSafe public static interface ListTypeVersionsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListTypeVersionsResponse.Builder,ListTypeVersionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTypeVersionsResponse.BuildernextToken(String nextToken)If the request doesn't return all of the remaining results,NextTokenis set to a token.ListTypeVersionsResponse.BuildertypeVersionSummaries(Collection<TypeVersionSummary> typeVersionSummaries)A list ofTypeVersionSummarystructures that contain information about the specified extension's versions.ListTypeVersionsResponse.BuildertypeVersionSummaries(Consumer<TypeVersionSummary.Builder>... typeVersionSummaries)A list ofTypeVersionSummarystructures that contain information about the specified extension's versions.ListTypeVersionsResponse.BuildertypeVersionSummaries(TypeVersionSummary... typeVersionSummaries)A list ofTypeVersionSummarystructures that contain information about the specified extension's versions.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
typeVersionSummaries
ListTypeVersionsResponse.Builder typeVersionSummaries(Collection<TypeVersionSummary> typeVersionSummaries)
A list of
TypeVersionSummarystructures that contain information about the specified extension's versions.- Parameters:
typeVersionSummaries- A list ofTypeVersionSummarystructures that contain information about the specified extension's versions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeVersionSummaries
ListTypeVersionsResponse.Builder typeVersionSummaries(TypeVersionSummary... typeVersionSummaries)
A list of
TypeVersionSummarystructures that contain information about the specified extension's versions.- Parameters:
typeVersionSummaries- A list ofTypeVersionSummarystructures that contain information about the specified extension's versions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeVersionSummaries
ListTypeVersionsResponse.Builder typeVersionSummaries(Consumer<TypeVersionSummary.Builder>... typeVersionSummaries)
A list of
This is a convenience method that creates an instance of theTypeVersionSummarystructures that contain information about the specified extension's versions.TypeVersionSummary.Builderavoiding the need to create one manually viaTypeVersionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#typeVersionSummaries(List.) - Parameters:
typeVersionSummaries- a consumer that will call methods onTypeVersionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#typeVersionSummaries(java.util.Collection)
-
nextToken
ListTypeVersionsResponse.Builder nextToken(String nextToken)
If the request doesn't return all of the remaining results,
NextTokenis set to a token. To retrieve the next set of results, call this action again and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Parameters:
nextToken- If the request doesn't return all of the remaining results,NextTokenis set to a token. To retrieve the next set of results, call this action again and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-