Interface CfnVirtualCluster.ContainerProviderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualCluster.ContainerProviderProperty.Jsii$Proxy
Enclosing class:
CfnVirtualCluster

@Stability(Stable) public static interface CfnVirtualCluster.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.services.emrcontainers.*;
 ContainerProviderProperty containerProviderProperty = ContainerProviderProperty.builder()
         .id("id")
         .info(ContainerInfoProperty.builder()
                 .eksInfo(EksInfoProperty.builder()
                         .namespace("namespace")
                         .build())
                 .build())
         .type("type")
         .build();
 

See Also: