[][src]Struct rusoto_cloudfront::PublicKeyList

pub struct PublicKeyList {
    pub items: Option<Vec<PublicKeySummary>>,
    pub max_items: i64,
    pub next_marker: Option<String>,
    pub quantity: i64,
}

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

impl PartialEq<PublicKeyList> for PublicKeyList[src]

impl Default for PublicKeyList[src]

impl Clone for PublicKeyList[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PublicKeyList[src]

Auto Trait Implementations

impl Send for PublicKeyList

impl Sync for PublicKeyList

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self