TenantReference
- class aws_cdk.interfaces.aws_ses.TenantReference(*, tenant_arn, tenant_name)
Bases:
objectA reference to a Tenant resource.
- Parameters:
tenant_arn (
str) – The ARN of the Tenant resource.tenant_name (
str) – The TenantName of the Tenant resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_ses as interfaces_ses tenant_reference = interfaces_ses.TenantReference( tenant_arn="tenantArn", tenant_name="tenantName" )
Attributes
- tenant_arn
The ARN of the Tenant resource.
- tenant_name
The TenantName of the Tenant resource.