Struct aws_sdk_cloudfront::model::OriginAccessControlList
source · #[non_exhaustive]pub struct OriginAccessControlList { /* private fields */ }
Expand description
A list of CloudFront origin access controls.
Implementations§
source§impl 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.
source§impl OriginAccessControlList
impl OriginAccessControlList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OriginAccessControlList
.
Trait Implementations§
source§impl Clone for OriginAccessControlList
impl Clone for OriginAccessControlList
source§fn clone(&self) -> OriginAccessControlList
fn clone(&self) -> OriginAccessControlList
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 Debug for OriginAccessControlList
impl Debug for OriginAccessControlList
source§impl PartialEq<OriginAccessControlList> for OriginAccessControlList
impl PartialEq<OriginAccessControlList> for OriginAccessControlList
source§fn eq(&self, other: &OriginAccessControlList) -> bool
fn eq(&self, other: &OriginAccessControlList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.