interface DistributionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFront.DistributionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudfront#DistributionReference |
Java | software.amazon.awscdk.services.cloudfront.DistributionReference |
Python | aws_cdk.aws_cloudfront.DistributionReference |
TypeScript | aws-cdk-lib » aws_cloudfront » DistributionReference |
A reference to a Distribution 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 cloudfront } from 'aws-cdk-lib';
const distributionReference: cloudfront.DistributionReference = {
distributionId: 'distributionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| distribution | string | The Id of the Distribution resource. |
distributionId
Type:
string
The Id of the Distribution resource.

.NET
Go
Java
Python
TypeScript