Show / Hide Table of Contents

Class CfnMailManagerIngressPoint.NetworkConfigurationProperty

The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.

Inheritance
object
CfnMailManagerIngressPoint.NetworkConfigurationProperty
Implements
CfnMailManagerIngressPoint.INetworkConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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"
                 }
             };

Properties

PrivateNetworkConfiguration

Specifies the network configuration for the private ingress point.

public object? PrivateNetworkConfiguration { get; set; }
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.

public object? PublicNetworkConfiguration { get; set; }
Property Value

object

Remarks

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

Implements

CfnMailManagerIngressPoint.INetworkConfigurationProperty
Back to top Generated by DocFX