Interface CfnMailManagerIngressPoint.INetworkConfigurationProperty
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMailManagerIngressPoint.INetworkConfigurationProperty
Syntax (vb)
Public Interface CfnMailManagerIngressPoint.INetworkConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var networkConfigurationProperty = new NetworkConfigurationProperty {
PrivateNetworkConfiguration = new PrivateNetworkConfigurationProperty {
VpcEndpointId = "vpcEndpointId"
},
PublicNetworkConfiguration = new PublicNetworkConfigurationProperty {
IpType = "ipType"
}
};
Synopsis
Properties
PrivateNetworkConfiguration | Specifies the network configuration for the private ingress point. |
PublicNetworkConfiguration | Specifies the network configuration for the public ingress point. |
Properties
PrivateNetworkConfiguration
Specifies the network configuration for the private ingress point.
object? PrivateNetworkConfiguration { get; }
Property Value
Remarks
PublicNetworkConfiguration
Specifies the network configuration for the public ingress point.
object? PublicNetworkConfiguration { get; }