interface CfnMailManagerIngressPointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerIngressPointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerIngressPointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerIngressPointMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerIngressPointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerIngressPointMixinProps |
Properties for CfnMailManagerIngressPointPropsMixin.
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 cfnMailManagerIngressPointMixinProps: ses_mixins.CfnMailManagerIngressPointMixinProps = {
ingressPointConfiguration: {
secretArn: 'secretArn',
smtpPassword: 'smtpPassword',
},
ingressPointName: 'ingressPointName',
networkConfiguration: {
privateNetworkConfiguration: {
vpcEndpointId: 'vpcEndpointId',
},
publicNetworkConfiguration: {
ipType: 'ipType',
},
},
ruleSetId: 'ruleSetId',
statusToUpdate: 'statusToUpdate',
tags: [{
key: 'key',
value: 'value',
}],
trafficPolicyId: 'trafficPolicyId',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| rule | string | The identifier of an existing rule set that you attach to an 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. |
| 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. |
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.
ruleSetId?
Type:
string
(optional)
The identifier of an existing rule set that you attach to an 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"} }.
trafficPolicyId?
Type:
string
(optional)
The identifier of an existing traffic policy that you attach to an ingress endpoint resource.
type?
Type:
string
(optional)
The type of the ingress endpoint to create.

.NET
Go
Java
Python
TypeScript