interface InputOriginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnDistributionPropsMixin.InputOriginProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnDistributionPropsMixin_InputOriginProperty |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnDistributionPropsMixin.InputOriginProperty |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnDistributionPropsMixin.InputOriginProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnDistributionPropsMixin » InputOriginProperty |
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 { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const inputOriginProperty: lightsail_mixins.CfnDistributionPropsMixin.InputOriginProperty = {
name: 'name',
protocolPolicy: 'protocolPolicy',
regionName: 'regionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the origin resource. |
| protocol | string | The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content. |
| region | string | The AWS Region name of the origin resource. |
name?
Type:
string
(optional)
The name of the origin resource.
protocolPolicy?
Type:
string
(optional)
The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
regionName?
Type:
string
(optional)
The AWS Region name of the origin resource.

.NET
Go
Java
Python
TypeScript