Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-privatenetworkconfiguration

PublicNetworkConfiguration

Specifies the network configuration for the public ingress point.

object? PublicNetworkConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html#cfn-ses-mailmanageringresspoint-networkconfiguration-publicnetworkconfiguration

Back to top Generated by DocFX