interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerIngressPointPropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerIngressPointPropsMixin » NetworkConfigurationProperty |
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
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 networkConfigurationProperty: ses_mixins.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty = {
privateNetworkConfiguration: {
vpcEndpointId: 'vpcEndpointId',
},
publicNetworkConfiguration: {
ipType: 'ipType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| private | IResolvable | Private | Specifies the network configuration for the private ingress point. |
| public | IResolvable | Public | Specifies the network configuration for the public ingress point. |
privateNetworkConfiguration?
Type:
IResolvable | Private
(optional)
Specifies the network configuration for the private ingress point.
publicNetworkConfiguration?
Type:
IResolvable | Public
(optional)
Specifies the network configuration for the public ingress point.

.NET
Go
Java
Python
TypeScript