interface CfnMailManagerIngressPointProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerIngressPointProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerIngressPointProps |
Java | software.amazon.awscdk.services.ses.CfnMailManagerIngressPointProps |
Python | aws_cdk.aws_ses.CfnMailManagerIngressPointProps |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerIngressPointProps |
Properties for defining a CfnMailManagerIngressPoint.
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 cfnMailManagerIngressPointProps: ses.CfnMailManagerIngressPointProps = {
ruleSetId: 'ruleSetId',
trafficPolicyId: 'trafficPolicyId',
type: 'type',
// the properties below are optional
ingressPointConfiguration: {
secretArn: 'secretArn',
smtpPassword: 'smtpPassword',
},
ingressPointName: 'ingressPointName',
networkConfiguration: {
privateNetworkConfiguration: {
vpcEndpointId: 'vpcEndpointId',
},
publicNetworkConfiguration: {
ipType: 'ipType',
},
},
statusToUpdate: 'statusToUpdate',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | string | The identifier of an existing rule set that you attach to an ingress endpoint resource. |
| traffic | string | The identifier of an existing traffic policy that you attach to an ingress endpoint resource. |
| type | string | The type of the ingress endpoint to create. |
| ingress | IResolvable | Ingress | The configuration of the ingress endpoint resource. |
| ingress | string | A user friendly name for an ingress endpoint resource. |
| network | IResolvable | Network | The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource. |
| status | string | The update status of an ingress endpoint. |
| tags? | Cfn[] | The tags used to organize, track, or control access for the resource. |
ruleSetId
Type:
string
The identifier of an existing rule set that you attach to an ingress endpoint resource.
trafficPolicyId
Type:
string
The identifier of an existing traffic policy that you attach to an ingress endpoint resource.
type
Type:
string
The type of the ingress endpoint to create.
ingressPointConfiguration?
Type:
IResolvable | Ingress
(optional)
The configuration of the ingress endpoint resource.
ingressPointName?
Type:
string
(optional)
A user friendly name for an ingress endpoint resource.
networkConfiguration?
Type:
IResolvable | Network
(optional)
The network type (IPv4-only, Dual-Stack, PrivateLink) of the ingress endpoint resource.
statusToUpdate?
Type:
string
(optional)
The update status of an ingress endpoint.
tags?
Type:
Cfn[]
(optional)
The tags used to organize, track, or control access for the resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Go
Java
Python
TypeScript