Interface CfnVirtualCluster.ContainerInfoProperty

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

@Stability(Stable) public static interface CfnVirtualCluster.ContainerInfoProperty extends software.amazon.jsii.JsiiSerializable
The information about the container used for a job run or a managed endpoint.

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.*;
 ContainerInfoProperty containerInfoProperty = ContainerInfoProperty.builder()
         .eksInfo(EksInfoProperty.builder()
                 .namespace("namespace")
                 .build())
         .build();