interface ConfigurationSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SES.ConfigurationSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsses#ConfigurationSetReference |
Java | software.amazon.awscdk.interfaces.ses.ConfigurationSetReference |
Python | aws_cdk.interfaces.aws_ses.ConfigurationSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_ses » ConfigurationSetReference |
A reference to a ConfigurationSet 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_aws_ses } from 'aws-cdk-lib/interfaces';
const configurationSetReference: interfaces_aws_ses.ConfigurationSetReference = {
configurationSetName: 'configurationSetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The Name of the ConfigurationSet resource. |
configurationSetName
Type:
string
The Name of the ConfigurationSet resource.

.NET
Go
Java
Python
TypeScript