interface CfnTenantProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.CfnTenantProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#CfnTenantProps |
Java | software.amazon.awscdk.services.ses.CfnTenantProps |
Python | aws_cdk.aws_ses.CfnTenantProps |
TypeScript | aws-cdk-lib » aws_ses » CfnTenantProps |
Properties for defining a CfnTenant.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html
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 cfnTenantProps: ses.CfnTenantProps = {
tenantName: 'tenantName',
// the properties below are optional
resourceAssociations: [{
resourceArn: 'resourceArn',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| tenant | string | The name of the tenant. |
| resource | IResolvable | (IResolvable | Resource)[] | The list of resources to associate with the tenant. |
| tags? | Cfn[] | The tags (keys and values) associated with the tenant. |
tenantName
Type:
string
The name of the tenant.
resourceAssociations?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
The list of resources to associate with the tenant.
tags?
Type:
Cfn[]
(optional)
The tags (keys and values) associated with the tenant.

.NET
Go
Java
Python
TypeScript