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
sourceimpl 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.
sourceimpl PublicKeyList
impl PublicKeyList
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PublicKeyList
.
Trait Implementations
sourceimpl Clone for PublicKeyList
impl Clone for PublicKeyList
sourcefn clone(&self) -> PublicKeyList
fn clone(&self) -> PublicKeyList
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 PublicKeyList
impl Debug for PublicKeyList
sourceimpl PartialEq<PublicKeyList> for PublicKeyList
impl PartialEq<PublicKeyList> for PublicKeyList
sourcefn eq(&self, other: &PublicKeyList) -> bool
fn eq(&self, other: &PublicKeyList) -> bool
impl StructuralPartialEq for PublicKeyList
Auto Trait Implementations
impl RefUnwindSafe for PublicKeyList
impl Send for PublicKeyList
impl Sync for PublicKeyList
impl Unpin for PublicKeyList
impl UnwindSafe for PublicKeyList
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