Interface DescribeApplicationVersionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeApplicationVersionsResponse.Builder,DescribeApplicationVersionsResponse>,ElasticBeanstalkResponse.Builder,SdkBuilder<DescribeApplicationVersionsResponse.Builder,DescribeApplicationVersionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeApplicationVersionsResponse
public static interface DescribeApplicationVersionsResponse.Builder extends ElasticBeanstalkResponse.Builder, SdkPojo, CopyableBuilder<DescribeApplicationVersionsResponse.Builder,DescribeApplicationVersionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeApplicationVersionsResponse.BuilderapplicationVersions(Collection<ApplicationVersionDescription> applicationVersions)List ofApplicationVersionDescriptionobjects sorted in order of creation.DescribeApplicationVersionsResponse.BuilderapplicationVersions(Consumer<ApplicationVersionDescription.Builder>... applicationVersions)List ofApplicationVersionDescriptionobjects sorted in order of creation.DescribeApplicationVersionsResponse.BuilderapplicationVersions(ApplicationVersionDescription... applicationVersions)List ofApplicationVersionDescriptionobjects sorted in order of creation.DescribeApplicationVersionsResponse.BuildernextToken(String nextToken)In a paginated request, the token that you can pass in a subsequent request to get the next response page.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elasticbeanstalk.model.ElasticBeanstalkResponse.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
-
applicationVersions
DescribeApplicationVersionsResponse.Builder applicationVersions(Collection<ApplicationVersionDescription> applicationVersions)
List of
ApplicationVersionDescriptionobjects sorted in order of creation.- Parameters:
applicationVersions- List ofApplicationVersionDescriptionobjects sorted in order of creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationVersions
DescribeApplicationVersionsResponse.Builder applicationVersions(ApplicationVersionDescription... applicationVersions)
List of
ApplicationVersionDescriptionobjects sorted in order of creation.- Parameters:
applicationVersions- List ofApplicationVersionDescriptionobjects sorted in order of creation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationVersions
DescribeApplicationVersionsResponse.Builder applicationVersions(Consumer<ApplicationVersionDescription.Builder>... applicationVersions)
List of
This is a convenience method that creates an instance of theApplicationVersionDescriptionobjects sorted in order of creation.ApplicationVersionDescription.Builderavoiding the need to create one manually viaApplicationVersionDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicationVersions(List.) - Parameters:
applicationVersions- a consumer that will call methods onApplicationVersionDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicationVersions(java.util.Collection)
-
nextToken
DescribeApplicationVersionsResponse.Builder nextToken(String nextToken)
In a paginated request, the token that you can pass in a subsequent request to get the next response page.
- Parameters:
nextToken- In a paginated request, the token that you can pass in a subsequent request to get the next response page.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-