Interface ListAddonsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListAddonsResponse.Builder,ListAddonsResponse>,EksResponse.Builder,SdkBuilder<ListAddonsResponse.Builder,ListAddonsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListAddonsResponse
public static interface ListAddonsResponse.Builder extends EksResponse.Builder, SdkPojo, CopyableBuilder<ListAddonsResponse.Builder,ListAddonsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListAddonsResponse.Builderaddons(String... addons)A list of installed add-ons.ListAddonsResponse.Builderaddons(Collection<String> addons)A list of installed add-ons.ListAddonsResponse.BuildernextToken(String nextToken)ThenextTokenvalue to include in a futureListAddonsrequest.-
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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
addons
ListAddonsResponse.Builder addons(Collection<String> addons)
A list of installed add-ons.
- Parameters:
addons- A list of installed add-ons.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
addons
ListAddonsResponse.Builder addons(String... addons)
A list of installed add-ons.
- Parameters:
addons- A list of installed add-ons.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListAddonsResponse.Builder nextToken(String nextToken)
The
nextTokenvalue to include in a futureListAddonsrequest. When the results of aListAddonsrequest 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 futureListAddonsrequest. When the results of aListAddonsrequest 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.
-
-