[][src]Struct rusoto_lightsail::CreateCertificateRequest

pub struct CreateCertificateRequest {
    pub certificate_name: String,
    pub domain_name: String,
    pub subject_alternative_names: Option<Vec<String>>,
    pub tags: Option<Vec<Tag>>,
}

Fields

certificate_name: String

The name for the certificate.

domain_name: String

The domain name (e.g., example.com) for the certificate.

subject_alternative_names: Option<Vec<String>>

An array of strings that specify the alternate domains (e.g., example2.com) and subdomains (e.g., blog.example.com) for the certificate.

You can specify a maximum of nine alternate domains (in addition to the primary domain name).

Wildcard domain entries (e.g., *.example.com) are not supported.

tags: Option<Vec<Tag>>

The tag keys and optional values to add to the certificate during create.

Use the TagResource action to tag a resource after it's created.

Trait Implementations

impl Clone for CreateCertificateRequest[src]

impl Debug for CreateCertificateRequest[src]

impl Default for CreateCertificateRequest[src]

impl PartialEq<CreateCertificateRequest> for CreateCertificateRequest[src]

impl Serialize for CreateCertificateRequest[src]

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