interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SES.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsses#CfnMailManagerIngressPointPropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ses.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ses.CfnMailManagerIngressPointPropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ses » 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 { aws_ses as ses } from '@aws-cdk/cfn-property-mixins';
const networkConfigurationProperty: ses.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