Interface DescribeAddonVersionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeAddonVersionsResponse.Builder,DescribeAddonVersionsResponse>,EksResponse.Builder,SdkBuilder<DescribeAddonVersionsResponse.Builder,DescribeAddonVersionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeAddonVersionsResponse
public static interface DescribeAddonVersionsResponse.Builder extends EksResponse.Builder, SdkPojo, CopyableBuilder<DescribeAddonVersionsResponse.Builder,DescribeAddonVersionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAddonVersionsResponse.Builderaddons(Collection<AddonInfo> addons)The list of available versions with Kubernetes version compatibility and other properties.DescribeAddonVersionsResponse.Builderaddons(Consumer<AddonInfo.Builder>... addons)The list of available versions with Kubernetes version compatibility and other properties.DescribeAddonVersionsResponse.Builderaddons(AddonInfo... addons)The list of available versions with Kubernetes version compatibility and other properties.DescribeAddonVersionsResponse.BuildernextToken(String nextToken)ThenextTokenvalue to include in a futureDescribeAddonVersionsrequest.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.eks.model.EksResponse.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
-
addons
DescribeAddonVersionsResponse.Builder addons(Collection<AddonInfo> addons)
The list of available versions with Kubernetes version compatibility and other properties.
- Parameters:
addons- The list of available versions with Kubernetes version compatibility and other properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addons
DescribeAddonVersionsResponse.Builder addons(AddonInfo... addons)
The list of available versions with Kubernetes version compatibility and other properties.
- Parameters:
addons- The list of available versions with Kubernetes version compatibility and other properties.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addons
DescribeAddonVersionsResponse.Builder addons(Consumer<AddonInfo.Builder>... addons)
The list of available versions with Kubernetes version compatibility and other properties.
This is a convenience method that creates an instance of theAddonInfo.Builderavoiding the need to create one manually viaAddonInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#addons(List.) - Parameters:
addons- a consumer that will call methods onAddonInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#addons(java.util.Collection)
-
nextToken
DescribeAddonVersionsResponse.Builder nextToken(String nextToken)
The
nextTokenvalue to include in a futureDescribeAddonVersionsrequest. When the results of aDescribeAddonVersionsrequest exceedmaxResults, you can use this value to retrieve the next page of results. This value isnullwhen there are no more results to return.This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
- Parameters:
nextToken- ThenextTokenvalue to include in a futureDescribeAddonVersionsrequest. When the results of aDescribeAddonVersionsrequest exceedmaxResults, you can use this value to retrieve the next page of results. This value isnullwhen there are no more results to return.This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-