Struct aws_sdk_cloudfront::model::PublicKeyList
source · #[non_exhaustive]pub struct PublicKeyList { /* private fields */ }
Expand description
A list of public keys that you can use with signed URLs and signed cookies, or with field-level encryption.
Implementations§
source§impl PublicKeyList
impl PublicKeyList
sourcepub fn next_marker(&self) -> Option<&str>
pub fn next_marker(&self) -> Option<&str>
If there are more elements to be listed, this element is present and contains the value that you can use for the Marker
request parameter to continue listing your public keys where you left off.
sourcepub fn max_items(&self) -> Option<i32>
pub fn max_items(&self) -> Option<i32>
The maximum number of public keys you want in the response.
sourcepub fn items(&self) -> Option<&[PublicKeySummary]>
pub fn items(&self) -> Option<&[PublicKeySummary]>
A list of public keys.
source§impl PublicKeyList
impl PublicKeyList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PublicKeyList
.
Trait Implementations§
source§impl Clone for PublicKeyList
impl Clone for PublicKeyList
source§fn clone(&self) -> PublicKeyList
fn clone(&self) -> PublicKeyList
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 PublicKeyList
impl Debug for PublicKeyList
source§impl PartialEq<PublicKeyList> for PublicKeyList
impl PartialEq<PublicKeyList> for PublicKeyList
source§fn eq(&self, other: &PublicKeyList) -> bool
fn eq(&self, other: &PublicKeyList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.