pub struct PublicKeyList {
pub items: Option<Vec<PublicKeySummary>>,
pub max_items: i64,
pub next_marker: Option<String>,
pub quantity: i64,
}
Expand description
A list of public keys you've added to CloudFront to use with features like field-level encryption.
Fields§
§items: Option<Vec<PublicKeySummary>>
An array of information about a public key you add to CloudFront to use with features like field-level encryption.
max_items: i64
The maximum number of public keys you want in the response body.
next_marker: Option<String>
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.
quantity: i64
The number of public keys you added to CloudFront to use with features like field-level encryption.
Trait Implementations§
Source§impl Clone for PublicKeyList
impl Clone for PublicKeyList
Source§fn clone(&self) -> PublicKeyList
fn clone(&self) -> PublicKeyList
Returns a duplicate 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 Default for PublicKeyList
impl Default for PublicKeyList
Source§fn default() -> PublicKeyList
fn default() -> PublicKeyList
Returns the “default value” for a type. Read more
Source§impl PartialEq for PublicKeyList
impl PartialEq for PublicKeyList
impl StructuralPartialEq for PublicKeyList
Auto Trait Implementations§
impl Freeze for PublicKeyList
impl RefUnwindSafe for PublicKeyList
impl Send for PublicKeyList
impl Sync for PublicKeyList
impl Unpin for PublicKeyList
impl UnwindSafe for PublicKeyList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more