interface ContactListReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SES.ContactListReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsses#ContactListReference |
Java | software.amazon.awscdk.interfaces.ses.ContactListReference |
Python | aws_cdk.interfaces.aws_ses.ContactListReference |
TypeScript | aws-cdk-lib » interfaces » aws_ses » ContactListReference |
A reference to a ContactList resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as interfaces_ses } from 'aws-cdk-lib/interfaces';
const contactListReference: interfaces_ses.ContactListReference = {
contactListName: 'contactListName',
};
Properties
| Name | Type | Description |
|---|---|---|
| contact | string | The ContactListName of the ContactList resource. |
contactListName
Type:
string
The ContactListName of the ContactList resource.

.NET
Go
Java
Python
TypeScript