Interface EksConfiguration.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EksConfiguration.Builder,EksConfiguration>
,SdkBuilder<EksConfiguration.Builder,EksConfiguration>
,SdkPojo
- Enclosing class:
- EksConfiguration
public static interface EksConfiguration.Builder extends SdkPojo, CopyableBuilder<EksConfiguration.Builder,EksConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EksConfiguration.Builder
eksClusterArn(String eksClusterArn)
The Amazon Resource Name (ARN) of the Amazon EKS cluster.EksConfiguration.Builder
kubernetesNamespace(String kubernetesNamespace)
The namespace of the Amazon EKS cluster.-
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, sdkFields
-
-
-
-
Method Detail
-
eksClusterArn
EksConfiguration.Builder eksClusterArn(String eksClusterArn)
The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is
arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch
.- Parameters:
eksClusterArn
- The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example isarn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
kubernetesNamespace
EksConfiguration.Builder kubernetesNamespace(String kubernetesNamespace)
The namespace of the Amazon EKS cluster. Batch manages pods in this namespace. The value can't left empty or null. It must be fewer than 64 characters long, can't be set to
default
, can't start with "kube-
," and must match this regular expression:^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
. For more information, see Namespaces in the Kubernetes documentation.- Parameters:
kubernetesNamespace
- The namespace of the Amazon EKS cluster. Batch manages pods in this namespace. The value can't left empty or null. It must be fewer than 64 characters long, can't be set todefault
, can't start with "kube-
," and must match this regular expression:^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
. For more information, see Namespaces in the Kubernetes documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-