Class: Aws::CloudFront::Types::StatusCodes

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 StatusCodes data as a hash:

{
  quantity: 1, # required
  items: [1], # required
}

A complex data type for the status codes that you specify that, when returned by a primary origin, trigger CloudFront to failover to a second origin.

Instance Attribute Summary collapse

Instance Attribute Details

#itemsArray<Integer>

The items (status codes) for an origin group.

Returns:

  • (Array<Integer>)


6316
6317
6318
6319
6320
# File 'lib/aws-sdk-cloudfront/types.rb', line 6316

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

#quantityInteger

The number of status codes.

Returns:

  • (Integer)


6316
6317
6318
6319
6320
# File 'lib/aws-sdk-cloudfront/types.rb', line 6316

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