interface PublicNetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerIngressPointPropsMixin_PublicNetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerIngressPointPropsMixin.PublicNetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » 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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const publicNetworkConfigurationProperty: ses_mixins.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