interface DkimRecord
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.DkimRecord |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#DkimRecord |
Java | software.amazon.awscdk.services.ses.DkimRecord |
Python | aws_cdk.aws_ses.DkimRecord |
TypeScript (source) | aws-cdk-lib » aws_ses » DkimRecord |
A DKIM record.
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 dkimRecord: ses.DkimRecord = {
name: 'name',
value: 'value',
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the record. |
value | string | The value of the record. |
name
Type:
string
The name of the record.
value
Type:
string
The value of the record.