interface DistributionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudFront.DistributionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudfront#DistributionReference |
Java | software.amazon.awscdk.interfaces.cloudfront.DistributionReference |
Python | aws_cdk.interfaces.aws_cloudfront.DistributionReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_cloudfront } from 'aws-cdk-lib/interfaces';
const distributionReference: interfaces_aws_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