Interface ListApplicationVersionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationVersionsResponse.Builder,ListApplicationVersionsResponse>,KinesisAnalyticsV2Response.Builder,SdkBuilder<ListApplicationVersionsResponse.Builder,ListApplicationVersionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListApplicationVersionsResponse
public static interface ListApplicationVersionsResponse.Builder extends KinesisAnalyticsV2Response.Builder, SdkPojo, CopyableBuilder<ListApplicationVersionsResponse.Builder,ListApplicationVersionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationVersionsResponse.BuilderapplicationVersionSummaries(Collection<ApplicationVersionSummary> applicationVersionSummaries)A list of the application versions and the associated configuration summaries.ListApplicationVersionsResponse.BuilderapplicationVersionSummaries(Consumer<ApplicationVersionSummary.Builder>... applicationVersionSummaries)A list of the application versions and the associated configuration summaries.ListApplicationVersionsResponse.BuilderapplicationVersionSummaries(ApplicationVersionSummary... applicationVersionSummaries)A list of the application versions and the associated configuration summaries.ListApplicationVersionsResponse.BuildernextToken(String nextToken)The pagination token for the next set of results, ornullif there are no additional results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kinesisanalyticsv2.model.KinesisAnalyticsV2Response.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
-
applicationVersionSummaries
ListApplicationVersionsResponse.Builder applicationVersionSummaries(Collection<ApplicationVersionSummary> applicationVersionSummaries)
A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.
To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
- Parameters:
applicationVersionSummaries- A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationVersionSummaries
ListApplicationVersionsResponse.Builder applicationVersionSummaries(ApplicationVersionSummary... applicationVersionSummaries)
A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.
To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
- Parameters:
applicationVersionSummaries- A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationVersionSummaries
ListApplicationVersionsResponse.Builder applicationVersionSummaries(Consumer<ApplicationVersionSummary.Builder>... applicationVersionSummaries)
A list of the application versions and the associated configuration summaries. The list includes application versions that were rolled back.
To get the complete description of a specific application version, invoke the DescribeApplicationVersion operation.
This is a convenience method that creates an instance of theApplicationVersionSummary.Builderavoiding the need to create one manually viaApplicationVersionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationVersionSummaries(List.) - Parameters:
applicationVersionSummaries- a consumer that will call methods onApplicationVersionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationVersionSummaries(java.util.Collection)
-
nextToken
ListApplicationVersionsResponse.Builder nextToken(String nextToken)
The pagination token for the next set of results, or
nullif there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.- Parameters:
nextToken- The pagination token for the next set of results, ornullif there are no additional results. To retrieve the next set of items, pass this token into a subsequent invocation of this operation. For more information about pagination, see Using the Amazon Command Line Interface's Pagination Options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-