@Stability(value=Stable)
public static interface CfnVirtualCluster.ContainerProviderProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVirtualCluster.ContainerProviderProperty.Builder
A builder for
CfnVirtualCluster.ContainerProviderProperty |
static class |
CfnVirtualCluster.ContainerProviderProperty.Jsii$Proxy
An implementation for
CfnVirtualCluster.ContainerProviderProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnVirtualCluster.ContainerProviderProperty.Builder |
builder() |
String |
getId()
The ID of the container cluster.
|
Object |
getInfo()
The information about the container cluster.
|
String |
getType()
The type of the container provider.
|
@Stability(value=Stable) @NotNull String getId()
Minimum : 1
Maximum : 100
Pattern : ^[0-9A-Za-z][A-Za-z0-9\-_]*
@Stability(value=Stable) @NotNull Object getInfo()
@Stability(value=Stable) @NotNull String getType()
EKS is the only supported type as of now.
@Stability(value=Stable) static CfnVirtualCluster.ContainerProviderProperty.Builder builder()
Copyright © 2022. All rights reserved.