Class: Aws::CloudFront::Types::OriginGroupMembers
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::OriginGroupMembers
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass OriginGroupMembers data as a hash:
{
quantity: 1, # required
items: [ # required
{
origin_id: "string", # required
},
],
}
A complex data type for the origins included in an origin group.
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::OriginGroupMember>
Items (origins) in an origin group.
-
#quantity ⇒ Integer
The number of origins in an origin group.
Instance Attribute Details
#items ⇒ Array<Types::OriginGroupMember>
Items (origins) in an origin group.
6449 6450 6451 6452 6453 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6449 class OriginGroupMembers < Struct.new( :quantity, :items) include Aws::Structure end |
#quantity ⇒ Integer
The number of origins in an origin group.
6449 6450 6451 6452 6453 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 6449 class OriginGroupMembers < Struct.new( :quantity, :items) include Aws::Structure end |