Struct aws_sdk_cloudfront::model::OriginAccessControlList
source · [−]#[non_exhaustive]pub struct OriginAccessControlList { /* private fields */ }
Expand description
A list of CloudFront origin access controls.
Implementations
sourceimpl OriginAccessControlList
impl OriginAccessControlList
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
The value of the Marker
field that was provided in the request.
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If there are more items in the list than are in this response, this element is present. It contains the value to use in the Marker
field of another request to continue listing origin access controls.
sourcepub fn is_truncated(&self) -> Option<bool>
pub fn is_truncated(&self) -> Option<bool>
If there are more items in the list than are in this response, this value is true
.
sourcepub fn quantity(&self) -> Option<i32>
pub fn quantity(&self) -> Option<i32>
The number of origin access controls returned in the response.
sourcepub fn items(&self) -> Option<&[OriginAccessControlSummary]>
pub fn items(&self) -> Option<&[OriginAccessControlSummary]>
Contains the origin access controls in the list.
sourceimpl OriginAccessControlList
impl OriginAccessControlList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OriginAccessControlList
.
Trait Implementations
sourceimpl Clone for OriginAccessControlList
impl Clone for OriginAccessControlList
sourcefn clone(&self) -> OriginAccessControlList
fn clone(&self) -> OriginAccessControlList
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OriginAccessControlList
impl Debug for OriginAccessControlList
sourceimpl PartialEq<OriginAccessControlList> for OriginAccessControlList
impl PartialEq<OriginAccessControlList> for OriginAccessControlList
sourcefn eq(&self, other: &OriginAccessControlList) -> bool
fn eq(&self, other: &OriginAccessControlList) -> bool
impl StructuralPartialEq for OriginAccessControlList
Auto Trait Implementations
impl RefUnwindSafe for OriginAccessControlList
impl Send for OriginAccessControlList
impl Sync for OriginAccessControlList
impl Unpin for OriginAccessControlList
impl UnwindSafe for OriginAccessControlList
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more