Class: Aws::CloudFront::Types::OriginGroup
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::OriginGroup
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
When making an API call, you may pass OriginGroup data as a hash:
{
id: "string", # required
failover_criteria: { # required
status_codes: { # required
quantity: 1, # required
items: [1], # required
},
},
members: { # required
quantity: 1, # required
items: [ # required
{
origin_id: "string", # required
},
],
},
}
An origin group includes two origins (a primary origin and a second origin to failover to) and a failover criteria that you specify. You create an origin group to support origin failover in CloudFront. When you create or update a distribution, you can specifiy the origin group instead of a single origin, and CloudFront will failover from the primary origin to the second origin under the failover conditions that you’ve chosen.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#failover_criteria ⇒ Types::OriginGroupFailoverCriteria
A complex type that contains information about the failover criteria for an origin group.
-
#id ⇒ String
The origin group’s ID.
-
#members ⇒ Types::OriginGroupMembers
A complex type that contains information about the origins in an origin group.
Instance Attribute Details
#failover_criteria ⇒ Types::OriginGroupFailoverCriteria
A complex type that contains information about the failover criteria for an origin group.
9444 9445 9446 9447 9448 9449 9450 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9444 class OriginGroup < Struct.new( :id, :failover_criteria, :members) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The origin group’s ID.
9444 9445 9446 9447 9448 9449 9450 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9444 class OriginGroup < Struct.new( :id, :failover_criteria, :members) SENSITIVE = [] include Aws::Structure end |
#members ⇒ Types::OriginGroupMembers
A complex type that contains information about the origins in an origin group.
9444 9445 9446 9447 9448 9449 9450 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 9444 class OriginGroup < Struct.new( :id, :failover_criteria, :members) SENSITIVE = [] include Aws::Structure end |