interface TenantReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SES.TenantReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsses#TenantReference |
Java | software.amazon.awscdk.interfaces.ses.TenantReference |
Python | aws_cdk.interfaces.aws_ses.TenantReference |
TypeScript | aws-cdk-lib » interfaces » aws_ses » TenantReference |
A reference to a Tenant 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 tenantReference: interfaces_ses.TenantReference = {
tenantArn: 'tenantArn',
tenantName: 'tenantName',
};
Properties
| Name | Type | Description |
|---|---|---|
| tenant | string | The ARN of the Tenant resource. |
| tenant | string | The TenantName of the Tenant resource. |
tenantArn
Type:
string
The ARN of the Tenant resource.
tenantName
Type:
string
The TenantName of the Tenant resource.

.NET
Go
Java
Python
TypeScript