[][src]Struct rusoto_lightsail::AttachCertificateToDistributionRequest

pub struct AttachCertificateToDistributionRequest {
    pub certificate_name: String,
    pub distribution_name: String,
}

Fields

certificate_name: String

The name of the certificate to attach to a distribution.

Only certificates with a status of ISSUED can be attached to a distribution.

Use the GetCertificates action to get a list of certificate names that you can specify.

This is the name of the certificate resource type and is used only to reference the certificate in other API actions. It can be different than the domain name of the certificate. For example, your certificate name might be WordPress-Blog-Certificate and the domain name of the certificate might be example.com.

distribution_name: String

The name of the distribution that the certificate will be attached to.

Use the GetDistributions action to get a list of distribution names that you can specify.

Trait Implementations

impl Clone for AttachCertificateToDistributionRequest[src]

impl Debug for AttachCertificateToDistributionRequest[src]

impl Default for AttachCertificateToDistributionRequest[src]

impl PartialEq<AttachCertificateToDistributionRequest> for AttachCertificateToDistributionRequest[src]

impl Serialize for AttachCertificateToDistributionRequest[src]

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