Interface CfnSecurityConfigurationPropsMixin.ContainerProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityConfigurationPropsMixin.ContainerProviderProperty.Jsii$Proxy
- Enclosing class:
CfnSecurityConfigurationPropsMixin
@Stability(Stable)
public static interface CfnSecurityConfigurationPropsMixin.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.cfnpropertymixins.services.emrcontainers.*;
ContainerProviderProperty containerProviderProperty = ContainerProviderProperty.builder()
.id("id")
.info(ContainerInfoProperty.builder()
.eksInfo(EksInfoProperty.builder()
.namespace("namespace")
.build())
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSecurityConfigurationPropsMixin.ContainerProviderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The container provider ID.- See Also:
-
getInfo
Container information.Returns union: either
IResolvableorCfnSecurityConfigurationPropsMixin.ContainerInfoProperty- See Also:
-
getType
The container provider type.- See Also:
-
builder
@Stability(Stable) static CfnSecurityConfigurationPropsMixin.ContainerProviderProperty.Builder builder()
-