Class CfnMailManagerIngressPoint.NetworkConfigurationProperty
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMailManagerIngressPoint.NetworkConfigurationProperty : CfnMailManagerIngressPoint.INetworkConfigurationProperty
Syntax (vb)
Public Class CfnMailManagerIngressPoint.NetworkConfigurationProperty Implements 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
Constructors
NetworkConfigurationProperty() | The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource. |
Properties
PrivateNetworkConfiguration | Specifies the network configuration for the private ingress point. |
PublicNetworkConfiguration | Specifies the network configuration for the public ingress point. |
Constructors
NetworkConfigurationProperty()
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
public NetworkConfigurationProperty()
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"
}
};
Properties
PrivateNetworkConfiguration
Specifies the network configuration for the private ingress point.
public object? PrivateNetworkConfiguration { get; set; }
Property Value
Remarks
PublicNetworkConfiguration
Specifies the network configuration for the public ingress point.
public object? PublicNetworkConfiguration { get; set; }