Class CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty
The configuration of the ingress endpoint resource.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SES.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty : CfnMailManagerIngressPointPropsMixin.IIngressPointConfigurationProperty
Syntax (vb)
Public Class CfnMailManagerIngressPointPropsMixin.IngressPointConfigurationProperty Implements CfnMailManagerIngressPointPropsMixin.IIngressPointConfigurationProperty
Remarks
This data type is a UNION, so only one of the following members can be specified when used or returned.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SES.Mixins;
var ingressPointConfigurationProperty = new IngressPointConfigurationProperty {
SecretArn = "secretArn",
SmtpPassword = "smtpPassword"
};
Synopsis
Constructors
| IngressPointConfigurationProperty() | The configuration of the ingress endpoint resource. |
Properties
| SecretArn | The SecretsManager::Secret ARN of the ingress endpoint resource. |
| SmtpPassword | The password of the ingress endpoint resource. |
Constructors
IngressPointConfigurationProperty()
The configuration of the ingress endpoint resource.
public IngressPointConfigurationProperty()
Remarks
This data type is a UNION, so only one of the following members can be specified when used or returned.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SES.Mixins;
var ingressPointConfigurationProperty = new IngressPointConfigurationProperty {
SecretArn = "secretArn",
SmtpPassword = "smtpPassword"
};
Properties
SecretArn
The SecretsManager::Secret ARN of the ingress endpoint resource.
public string? SecretArn { get; set; }
Property Value
Remarks
SmtpPassword
The password of the ingress endpoint resource.
public string? SmtpPassword { get; set; }