Interface DistributionAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DistributionAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:12.604Z") @Stability(Stable) public interface DistributionAttributes extends software.amazon.jsii.JsiiSerializable
Attributes used to import a Distribution.

Example:

 // Using a reference to an imported Distribution
 IDistribution distribution = Distribution.fromDistributionAttributes(this, "ImportedDist", DistributionAttributes.builder()
         .domainName("d111111abcdef8.cloudfront.net")
         .distributionId("012345ABCDEF")
         .build());