interface DistributionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lightsail.DistributionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslightsail#DistributionReference |
Java | software.amazon.awscdk.services.lightsail.DistributionReference |
Python | aws_cdk.aws_lightsail.DistributionReference |
TypeScript | aws-cdk-lib » aws_lightsail » 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_lightsail as lightsail } from 'aws-cdk-lib';
const distributionReference: lightsail.DistributionReference = {
distributionArn: 'distributionArn',
distributionName: 'distributionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| distribution | string | The ARN of the Distribution resource. |
| distribution | string | The DistributionName of the Distribution resource. |
distributionArn
Type:
string
The ARN of the Distribution resource.
distributionName
Type:
string
The DistributionName of the Distribution resource.

.NET
Go
Java
Python
TypeScript