Interface ListTypesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListTypesResponse.Builder,ListTypesResponse>,SdkBuilder<ListTypesResponse.Builder,ListTypesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListTypesResponse
public static interface ListTypesResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListTypesResponse.Builder,ListTypesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListTypesResponse.BuildernextToken(String nextToken)If the request doesn't return all the remaining results,NextTokenis set to a token.ListTypesResponse.BuildertypeSummaries(Collection<TypeSummary> typeSummaries)A list ofTypeSummarystructures that contain information about the specified extensions.ListTypesResponse.BuildertypeSummaries(Consumer<TypeSummary.Builder>... typeSummaries)A list ofTypeSummarystructures that contain information about the specified extensions.ListTypesResponse.BuildertypeSummaries(TypeSummary... typeSummaries)A list ofTypeSummarystructures that contain information about the specified extensions.-
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
-
typeSummaries
ListTypesResponse.Builder typeSummaries(Collection<TypeSummary> typeSummaries)
A list of
TypeSummarystructures that contain information about the specified extensions.- Parameters:
typeSummaries- A list ofTypeSummarystructures that contain information about the specified extensions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeSummaries
ListTypesResponse.Builder typeSummaries(TypeSummary... typeSummaries)
A list of
TypeSummarystructures that contain information about the specified extensions.- Parameters:
typeSummaries- A list ofTypeSummarystructures that contain information about the specified extensions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
typeSummaries
ListTypesResponse.Builder typeSummaries(Consumer<TypeSummary.Builder>... typeSummaries)
A list of
This is a convenience method that creates an instance of theTypeSummarystructures that contain information about the specified extensions.TypeSummary.Builderavoiding the need to create one manually viaTypeSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#typeSummaries(List.) - Parameters:
typeSummaries- a consumer that will call methods onTypeSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#typeSummaries(java.util.Collection)
-
nextToken
ListTypesResponse.Builder nextToken(String nextToken)
If the request doesn't return all 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 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.
-
-