Interface AddonCompatibilityDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AddonCompatibilityDetail.Builder,AddonCompatibilityDetail>,SdkBuilder<AddonCompatibilityDetail.Builder,AddonCompatibilityDetail>,SdkPojo
- Enclosing class:
- AddonCompatibilityDetail
public static interface AddonCompatibilityDetail.Builder extends SdkPojo, CopyableBuilder<AddonCompatibilityDetail.Builder,AddonCompatibilityDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddonCompatibilityDetail.BuildercompatibleVersions(String... compatibleVersions)The list of compatible Amazon EKS add-on versions for the next Kubernetes version.AddonCompatibilityDetail.BuildercompatibleVersions(Collection<String> compatibleVersions)The list of compatible Amazon EKS add-on versions for the next Kubernetes version.AddonCompatibilityDetail.Buildername(String name)The name of the Amazon EKS add-on.-
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
-
-
-
-
Method Detail
-
name
AddonCompatibilityDetail.Builder name(String name)
The name of the Amazon EKS add-on.
- Parameters:
name- The name of the Amazon EKS add-on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
compatibleVersions
AddonCompatibilityDetail.Builder compatibleVersions(Collection<String> compatibleVersions)
The list of compatible Amazon EKS add-on versions for the next Kubernetes version.
- Parameters:
compatibleVersions- The list of compatible Amazon EKS add-on versions for the next Kubernetes version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
compatibleVersions
AddonCompatibilityDetail.Builder compatibleVersions(String... compatibleVersions)
The list of compatible Amazon EKS add-on versions for the next Kubernetes version.
- Parameters:
compatibleVersions- The list of compatible Amazon EKS add-on versions for the next Kubernetes version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-