Class: Aws::CloudFront::Types::OriginGroupMembers

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#itemsArray<Types::OriginGroupMember>

Items (origins) in an origin group.

Returns:



6459
6460
6461
6462
6463
# File 'lib/aws-sdk-cloudfront/types.rb', line 6459

class OriginGroupMembers < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end

#quantityInteger

The number of origins in an origin group.

Returns:

  • (Integer)


6459
6460
6461
6462
6463
# File 'lib/aws-sdk-cloudfront/types.rb', line 6459

class OriginGroupMembers < Struct.new(
  :quantity,
  :items)
  include Aws::Structure
end