interface TrustStoreProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnMailManagerIngressPoint.TrustStoreProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnMailManagerIngressPoint_TrustStoreProperty |
Java | software.amazon.awscdk.services.ses.CfnMailManagerIngressPoint.TrustStoreProperty |
Python | aws_cdk.aws_ses.CfnMailManagerIngressPoint.TrustStoreProperty |
TypeScript | aws-cdk-lib » aws_ses » CfnMailManagerIngressPoint » TrustStoreProperty |
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 trustStoreProperty: ses.CfnMailManagerIngressPoint.TrustStoreProperty = {
caContent: 'caContent',
// the properties below are optional
crlContent: 'crlContent',
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| ca | string | |
| crl | string | |
| kms | string |
caContent
Type:
string
crlContent?
Type:
string
(optional)
kmsKeyArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript