Struct aws_sdk_cloudfront::types::OriginAccessControlList
source · #[non_exhaustive]pub struct OriginAccessControlList {
pub marker: Option<String>,
pub next_marker: Option<String>,
pub max_items: Option<i32>,
pub is_truncated: Option<bool>,
pub quantity: Option<i32>,
pub items: Option<Vec<OriginAccessControlSummary>>,
}
Expand description
A list of CloudFront origin access controls.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker: Option<String>
The value of the Marker
field that was provided in the request.
next_marker: Option<String>
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.
max_items: Option<i32>
The maximum number of origin access controls requested.
is_truncated: Option<bool>
If there are more items in the list than are in this response, this value is true
.
quantity: Option<i32>
The number of origin access controls returned in the response.
items: Option<Vec<OriginAccessControlSummary>>
Contains the origin access controls in the list.
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() -> OriginAccessControlListBuilder
pub fn builder() -> OriginAccessControlListBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.