interface DistributionTenantReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFront.DistributionTenantReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudfront#DistributionTenantReference |
Java | software.amazon.awscdk.interfaces.cloudfront.DistributionTenantReference |
Python | aws_cdk.interfaces.aws_cloudfront.DistributionTenantReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudfront » DistributionTenantReference |
A reference to a DistributionTenant resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudfront as interfaces_aws_cloudfront } from 'aws-cdk-lib/interfaces';
const distributionTenantReference: interfaces_aws_cloudfront.DistributionTenantReference = {
distributionTenantArn: 'distributionTenantArn',
distributionTenantId: 'distributionTenantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| distribution | string | The ARN of the DistributionTenant resource. |
| distribution | string | The Id of the DistributionTenant resource. |
distributionTenantArn
Type:
string
The ARN of the DistributionTenant resource.
distributionTenantId
Type:
string
The Id of the DistributionTenant resource.

.NET
Go
Java
Python
TypeScript