#[non_exhaustive]pub struct ResponseHeadersPolicyAccessControlAllowOrigins {
pub quantity: Option<i32>,
pub items: Option<Vec<String>>,
}
Expand description
A list of origins (domain names) that CloudFront can use as the value for the Access-Control-Allow-Origin
HTTP response header.
For more information about the Access-Control-Allow-Origin
HTTP response header, see Access-Control-Allow-Origin in the MDN Web Docs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.quantity: Option<i32>
The number of origins in the list.
items: Option<Vec<String>>
The list of origins (domain names). You can specify *
to allow all origins.
Implementations§
source§impl ResponseHeadersPolicyAccessControlAllowOrigins
impl ResponseHeadersPolicyAccessControlAllowOrigins
sourcepub fn builder() -> ResponseHeadersPolicyAccessControlAllowOriginsBuilder
pub fn builder() -> ResponseHeadersPolicyAccessControlAllowOriginsBuilder
Creates a new builder-style object to manufacture ResponseHeadersPolicyAccessControlAllowOrigins
.
Trait Implementations§
source§impl Clone for ResponseHeadersPolicyAccessControlAllowOrigins
impl Clone for ResponseHeadersPolicyAccessControlAllowOrigins
source§fn clone(&self) -> ResponseHeadersPolicyAccessControlAllowOrigins
fn clone(&self) -> ResponseHeadersPolicyAccessControlAllowOrigins
Returns a copy 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 PartialEq<ResponseHeadersPolicyAccessControlAllowOrigins> for ResponseHeadersPolicyAccessControlAllowOrigins
impl PartialEq<ResponseHeadersPolicyAccessControlAllowOrigins> for ResponseHeadersPolicyAccessControlAllowOrigins
source§fn eq(&self, other: &ResponseHeadersPolicyAccessControlAllowOrigins) -> bool
fn eq(&self, other: &ResponseHeadersPolicyAccessControlAllowOrigins) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResponseHeadersPolicyAccessControlAllowOrigins
Auto Trait Implementations§
impl RefUnwindSafe for ResponseHeadersPolicyAccessControlAllowOrigins
impl Send for ResponseHeadersPolicyAccessControlAllowOrigins
impl Sync for ResponseHeadersPolicyAccessControlAllowOrigins
impl Unpin for ResponseHeadersPolicyAccessControlAllowOrigins
impl UnwindSafe for ResponseHeadersPolicyAccessControlAllowOrigins
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