interface CfnTenantMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnTenantMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnTenantMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnTenantMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnTenantMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnTenantMixinProps |
Properties for CfnTenantPropsMixin.
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 { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnTenantMixinProps: ses_mixins.CfnTenantMixinProps = {
resourceAssociations: [{
resourceArn: 'resourceArn',
}],
tags: [{
key: 'key',
value: 'value',
}],
tenantName: 'tenantName',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | IResolvable | (IResolvable | Resource)[] | The list of resources to associate with the tenant. |
| tags? | Cfn[] | The tags (keys and values) associated with the tenant. |
| tenant | 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.
tenantName?
Type:
string
(optional)
The name of the tenant.

.NET
Go
Java
Python
TypeScript