Interface CfnSecurityConfiguration.ContainerProviderProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.ContainerProviderProperty extends software.amazon.jsii.JsiiSerializable
Container provider information.

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")
         .type("type")
         // the properties below are optional
         .info(ContainerInfoProperty.builder()
                 .eksInfo(EksInfoProperty.builder()
                         .namespace("namespace")
                         .build())
                 .build())
         .build();
 

See Also: