Interface CfnVirtualClusterMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualClusterMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:42.409Z")
@Stability(Stable)
public interface CfnVirtualClusterMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVirtualClusterPropsMixin.
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.*;
CfnVirtualClusterMixinProps cfnVirtualClusterMixinProps = CfnVirtualClusterMixinProps.builder()
.containerProvider(ContainerProviderProperty.builder()
.id("id")
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.type("type")
.build())
.name("name")
.securityConfigurationId("securityConfigurationId")
.sessionEnabled(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualClusterMixinPropsstatic final classAn implementation forCfnVirtualClusterMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe container provider of the virtual cluster.default StringgetName()The name of the virtual cluster.default StringThe ID of the security configuration.default ObjectWhether the virtual cluster is session-enabled for Spark Connect.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerProvider
The container provider of the virtual cluster.Returns union: either
IResolvableorCfnVirtualClusterPropsMixin.ContainerProviderProperty- See Also:
-
getName
The name of the virtual cluster.- See Also:
-
getSecurityConfigurationId
The ID of the security configuration.- See Also:
-
getSessionEnabled
Whether the virtual cluster is session-enabled for Spark Connect.Returns union: either
BooleanorIResolvable- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
-