pub struct QueryStringCacheKeys {
pub items: Option<Vec<String>>,
pub quantity: i64,
}
Expand description
A complex type that contains information about the query string parameters that you want CloudFront to use for caching for a cache behavior.
Fields§
§items: Option<Vec<String>>
A list that contains the query string parameters that you want CloudFront to use as a basis for caching for a cache behavior. If Quantity
is 0, you can omit Items
.
quantity: i64
The number of whitelisted
query string parameters for a cache behavior.
Trait Implementations§
Source§impl Clone for QueryStringCacheKeys
impl Clone for QueryStringCacheKeys
Source§fn clone(&self) -> QueryStringCacheKeys
fn clone(&self) -> QueryStringCacheKeys
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QueryStringCacheKeys
impl Debug for QueryStringCacheKeys
Source§impl Default for QueryStringCacheKeys
impl Default for QueryStringCacheKeys
Source§fn default() -> QueryStringCacheKeys
fn default() -> QueryStringCacheKeys
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueryStringCacheKeys
impl PartialEq for QueryStringCacheKeys
impl StructuralPartialEq for QueryStringCacheKeys
Auto Trait Implementations§
impl Freeze for QueryStringCacheKeys
impl RefUnwindSafe for QueryStringCacheKeys
impl Send for QueryStringCacheKeys
impl Sync for QueryStringCacheKeys
impl Unpin for QueryStringCacheKeys
impl UnwindSafe for QueryStringCacheKeys
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more