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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityConfiguration.ContainerProviderPropertystatic final classAn implementation forCfnSecurityConfiguration.ContainerProviderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The container provider ID.- See Also:
-
getType
The container provider type.- See Also:
-
getInfo
Container information.Returns union: either
IResolvableorCfnSecurityConfiguration.ContainerInfoProperty- See Also:
-
builder
-