interface PublicNetworkConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.SES.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerIngressPoint_PublicNetworkConfigurationProperty | 
  Java | software.amazon.awscdk.services.ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty | 
  Python | aws_cdk.aws_ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_ses » CfnMailManagerIngressPoint » PublicNetworkConfigurationProperty | 
Specifies the network configuration for the public ingress point.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as ses } from 'aws-cdk-lib';
const publicNetworkConfigurationProperty: ses.CfnMailManagerIngressPoint.PublicNetworkConfigurationProperty = {
  ipType: 'ipType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| ip | string | The IP address type for the public ingress point. | 
ipType
Type:
string
The IP address type for the public ingress point.
Valid values are IPV4 and DUAL_STACK.

 .NET
 Go
 Java
 Python
 TypeScript