[][src]Struct rusoto_lightsail::GetCertificatesRequest

pub struct GetCertificatesRequest {
    pub certificate_name: Option<String>,
    pub certificate_statuses: Option<Vec<String>>,
    pub include_certificate_details: Option<bool>,
}

Fields

certificate_name: Option<String>

The name for the certificate for which to return information.

When omitted, the response includes all of your certificates in the AWS Region where the request is made.

certificate_statuses: Option<Vec<String>>

The status of the certificates for which to return information.

For example, specify ISSUED to return only certificates with an ISSUED status.

When omitted, the response includes all of your certificates in the AWS Region where the request is made, regardless of their current status.

include_certificate_details: Option<bool>

Indicates whether to include detailed information about the certificates in the response.

When omitted, the response includes only the certificate names, Amazon Resource Names (ARNs), domain names, and tags.

Trait Implementations

impl Clone for GetCertificatesRequest[src]

impl Debug for GetCertificatesRequest[src]

impl Default for GetCertificatesRequest[src]

impl PartialEq<GetCertificatesRequest> for GetCertificatesRequest[src]

impl Serialize for GetCertificatesRequest[src]

impl StructuralPartialEq for GetCertificatesRequest[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, 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.