Class: Aws::Lightsail::Types::InputOrigin
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::InputOrigin
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Note:
When making an API call, you may pass InputOrigin data as a hash:
{
name: "ResourceName",
region_name: "us-east-1", # accepts us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ca-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2, eu-north-1
protocol_policy: "http-only", # accepts http-only, https-only
}
Describes the origin resource of an Amazon Lightsail content delivery network (CDN) distribution.
An origin can be a Lightsail instance, bucket, or load balancer. A distribution pulls content from an origin, caches it, and serves it to viewers via a worldwide network of edge servers.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the origin resource.
-
#protocol_policy ⇒ String
The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
-
#region_name ⇒ String
The AWS Region name of the origin resource.
Instance Attribute Details
#name ⇒ String
The name of the origin resource.
10881 10882 10883 10884 10885 10886 10887 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10881 class InputOrigin < Struct.new( :name, :region_name, :protocol_policy) SENSITIVE = [] include Aws::Structure end |
#protocol_policy ⇒ String
The protocol that your Amazon Lightsail distribution uses when establishing a connection with your origin to pull content.
10881 10882 10883 10884 10885 10886 10887 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10881 class InputOrigin < Struct.new( :name, :region_name, :protocol_policy) SENSITIVE = [] include Aws::Structure end |
#region_name ⇒ String
The AWS Region name of the origin resource.
10881 10882 10883 10884 10885 10886 10887 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10881 class InputOrigin < Struct.new( :name, :region_name, :protocol_policy) SENSITIVE = [] include Aws::Structure end |