Class EksConfiguration
- java.lang.Object
-
- software.amazon.awssdk.services.batch.model.EksConfiguration
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<EksConfiguration.Builder,EksConfiguration>
@Generated("software.amazon.awssdk:codegen") public final class EksConfiguration extends Object implements SdkPojo, Serializable, ToCopyableBuilder<EksConfiguration.Builder,EksConfiguration>
Configuration for the Amazon EKS cluster that supports the Batch compute environment. The cluster must exist before the compute environment can be created.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
EksConfiguration.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EksConfiguration.Builder
builder()
String
eksClusterArn()
The Amazon Resource Name (ARN) of the Amazon EKS cluster.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
kubernetesNamespace()
The namespace of the Amazon EKS cluster.List<SdkField<?>>
sdkFields()
static Class<? extends EksConfiguration.Builder>
serializableBuilderClass()
EksConfiguration.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
eksClusterArn
public final String eksClusterArn()
The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is
arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch
.- Returns:
- The Amazon Resource Name (ARN) of the Amazon EKS cluster. An example is
arn:aws:eks:us-east-1:123456789012:cluster/ClusterForBatch
.
-
kubernetesNamespace
public final 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.- Returns:
- 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.
-
toBuilder
public EksConfiguration.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<EksConfiguration.Builder,EksConfiguration>
-
builder
public static EksConfiguration.Builder builder()
-
serializableBuilderClass
public static Class<? extends EksConfiguration.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-