[][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 Clone for PublicKeyList[src]

impl Debug for PublicKeyList[src]

impl Default for PublicKeyList[src]

impl PartialEq<PublicKeyList> for PublicKeyList[src]

impl StructuralPartialEq for PublicKeyList[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.