import { _CacheBehavior, _UnmarshalledCacheBehavior } from "./_CacheBehavior"; /** *

A complex type that contains zero or more CacheBehavior elements.

*/ export interface _CacheBehaviors { /** *

The number of cache behaviors for this distribution.

*/ Quantity: number; /** *

Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

*/ Items?: Array<_CacheBehavior> | Iterable<_CacheBehavior>; } export interface _UnmarshalledCacheBehaviors extends _CacheBehaviors { /** *

Optional: A complex type that contains cache behaviors for this distribution. If Quantity is 0, you can omit Items.

*/ Items?: Array<_UnmarshalledCacheBehavior>; }