Interface CfnDistributionPropsMixin.InputOriginProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDistributionPropsMixin.InputOriginProperty.Jsii$Proxy
Enclosing class:
CfnDistributionPropsMixin

@Stability(Stable) public static interface CfnDistributionPropsMixin.InputOriginProperty extends software.amazon.jsii.JsiiSerializable
InputOrigin is a property of the AWS::Lightsail::Distribution resource. It describes the origin resource of an Amazon Lightsail content delivery network (CDN) distribution.

An origin can be a instance, bucket, or load balancer. A distribution pulls content from an origin, caches it, and serves it to viewers through a worldwide network of edge servers.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.lightsail.*;
 InputOriginProperty inputOriginProperty = InputOriginProperty.builder()
         .name("name")
         .protocolPolicy("protocolPolicy")
         .regionName("regionName")
         .build();
 

See Also: