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