Interface CfnVirtualClusterPropsMixin.ContainerProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualClusterPropsMixin.ContainerProviderProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualClusterPropsMixin
@Stability(Stable)
public static interface CfnVirtualClusterPropsMixin.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.cfnpropertymixins.services.emrcontainers.*;
ContainerProviderProperty containerProviderProperty = ContainerProviderProperty.builder()
.id("id")
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualClusterPropsMixin.ContainerProviderPropertystatic final classAn implementation forCfnVirtualClusterPropsMixin.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\-_]*- See Also:
-
getInfo
The information about the container cluster.Returns union: either
IResolvableorCfnVirtualClusterPropsMixin.ContainerInfoProperty- See Also:
-
getType
The type of the container provider.Amazon EKS is the only supported type as of now.
- See Also:
-
builder
-