DistributionTenantReference
- class aws_cdk.aws_cloudfront.DistributionTenantReference(*, distribution_tenant_arn, distribution_tenant_id)
Bases:
object
A reference to a DistributionTenant resource.
- Parameters:
distribution_tenant_arn (
str
) – The ARN of the DistributionTenant resource.distribution_tenant_id (
str
) – The Id of the DistributionTenant 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 import aws_cloudfront as cloudfront distribution_tenant_reference = cloudfront.DistributionTenantReference( distribution_tenant_arn="distributionTenantArn", distribution_tenant_id="distributionTenantId" )
Attributes
- distribution_tenant_arn
The ARN of the DistributionTenant resource.
- distribution_tenant_id
The Id of the DistributionTenant resource.