Interface CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerIngressPointPropsMixin
@Stability(Stable)
public static interface CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
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.ses.*;
NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder()
.privateNetworkConfiguration(PrivateNetworkConfigurationProperty.builder()
.vpcEndpointId("vpcEndpointId")
.build())
.publicNetworkConfiguration(PublicNetworkConfigurationProperty.builder()
.ipType("ipType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrivateNetworkConfiguration
Specifies the network configuration for the private ingress point.Returns union: either
IResolvableorCfnMailManagerIngressPointPropsMixin.PrivateNetworkConfigurationProperty- See Also:
-
getPublicNetworkConfiguration
Specifies the network configuration for the public ingress point.Returns union: either
IResolvableorCfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty.Builder builder()
-