[][src]Struct rusoto_rds::ModifyCertificatesMessage

pub struct ModifyCertificatesMessage {
    pub certificate_identifier: Option<String>,
    pub remove_customer_override: Option<bool>,
}

Fields

certificate_identifier: Option<String>

The new default certificate identifier to override the current one with.

To determine the valid values, use the describe-certificates AWS CLI command or the DescribeCertificates API operation.

remove_customer_override: Option<bool>

A value that indicates whether to remove the override for the default certificate. If the override is removed, the default certificate is the system default.

Trait Implementations

impl Clone for ModifyCertificatesMessage[src]

impl Debug for ModifyCertificatesMessage[src]

impl Default for ModifyCertificatesMessage[src]

impl PartialEq<ModifyCertificatesMessage> for ModifyCertificatesMessage[src]

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