interface IngressPointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerIngressPointPropsMixin_IngressPointConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerIngressPointPropsMixin » IngressPointConfigurationProperty |
The configuration of the ingress endpoint resource.
This data type is a UNION, so only one of the following members can be specified when used or returned.
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 ingressPointConfigurationProperty: ses_mixins.CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty = {
secretArn: 'secretArn',
smtpPassword: 'smtpPassword',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | The SecretsManager::Secret ARN of the ingress endpoint resource. |
| smtp | string | The password of the ingress endpoint resource. |
secretArn?
Type:
string
(optional)
The SecretsManager::Secret ARN of the ingress endpoint resource.
smtpPassword?
Type:
string
(optional)
The password of the ingress endpoint resource.

.NET
Go
Java
Python
TypeScript