Interface CfnVirtualCluster.ContainerProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualCluster.ContainerProviderProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualCluster
@Stability(Stable)
public static interface CfnVirtualCluster.ContainerProviderProperty
extends software.amazon.jsii.JsiiSerializable
The information about the container provider.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.emrcontainers.*;
ContainerProviderProperty containerProviderProperty = ContainerProviderProperty.builder()
.id("id")
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.type("type")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualCluster.ContainerProviderPropertystatic final classAn implementation forCfnVirtualCluster.ContainerProviderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The ID of the container cluster.Minimum : 1
Maximum : 100
Pattern :
^[0-9A-Za-z][A-Za-z0-9\-_]* -
getInfo
The information about the container cluster. -
getType
The type of the container provider.Amazon EKS is the only supported type as of now.
-
builder
-