interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerIngressPoint.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerIngressPoint_NetworkConfigurationProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty |
Python | aws_cdk.aws_ses.CfnMailManagerIngressPoint.NetworkConfigurationProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerIngressPoint » 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 { aws_ses as ses } from 'aws-cdk-lib';
const networkConfigurationProperty: ses.CfnMailManagerIngressPoint.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