interface PublicNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerIngressPointPropsMixin_PublicNetworkConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » CfnMailManagerIngressPointPropsMixin » 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/cfn-property-mixins';
const publicNetworkConfigurationProperty: ses.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty = {
ipType: 'ipType',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address type for the public ingress point. |
ipType?
Type:
string
(optional)
The IP address type for the public ingress point.
Valid values are IPV4 and DUAL_STACK.

.NET
Go
Java
Python
TypeScript