@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.241Z") @Stability(value=Stable) public interface CfnVirtualClusterProps 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.*;
CfnVirtualClusterProps cfnVirtualClusterProps = CfnVirtualClusterProps.builder()
.containerProvider(ContainerProviderProperty.builder()
.id("id")
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.type("type")
.build())
.name("name")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVirtualClusterProps.Builder
A builder for
CfnVirtualClusterProps |
static class |
CfnVirtualClusterProps.Jsii$Proxy
An implementation for
CfnVirtualClusterProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnVirtualClusterProps.Builder |
builder() |
Object |
getContainerProvider()
The container provider of the virtual cluster.
|
String |
getName()
The name of the virtual cluster.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull Object getContainerProvider()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnVirtualClusterProps.Builder builder()
CfnVirtualClusterProps.Builder of CfnVirtualClusterPropsCopyright © 2022. All rights reserved.