interface InputOriginProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lightsail.CfnDistributionPropsMixin.InputOriginProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslightsail#CfnDistributionPropsMixin_InputOriginProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lightsail.CfnDistributionPropsMixin.InputOriginProperty |
Python | aws_cdk.cfn_property_mixins.aws_lightsail.CfnDistributionPropsMixin.InputOriginProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lightsail » 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 { aws_lightsail as lightsail } from '@aws-cdk/cfn-property-mixins';
const inputOriginProperty: lightsail.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