Interface CfnVirtualClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-17T19:20:28.702Z")
@Stability(Stable)
public interface CfnVirtualClusterProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnVirtualCluster
.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualClusterProps
static final class
An implementation forCfnVirtualClusterProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerProvider
The container provider of the virtual cluster.- See Also:
-
getName
The name of the virtual cluster.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnVirtualClusterProps.Builder
ofCfnVirtualClusterProps
-