[][src]Struct rusoto_lightsail::CreateLoadBalancerTlsCertificateRequest

pub struct CreateLoadBalancerTlsCertificateRequest {
    pub certificate_alternative_names: Option<Vec<String>>,
    pub certificate_domain_name: String,
    pub certificate_name: String,
    pub load_balancer_name: String,
}

Fields

An array of strings listing alternative domains and subdomains for your SSL/TLS certificate. Lightsail will de-dupe the names for you. You can have a maximum of 9 alternative names (in addition to the 1 primary domain). We do not support wildcards (e.g., *.example.com).

The domain name (e.g., example.com) for your SSL/TLS certificate.

The SSL/TLS certificate name.

You can have up to 10 certificates in your account at one time. Each Lightsail load balancer can have up to 2 certificates associated with it at one time. There is also an overall limit to the number of certificates that can be issue in a 365-day period. For more information, see Limits.

The load balancer name where you want to create the SSL/TLS certificate.

Trait Implementations

impl Clone for CreateLoadBalancerTlsCertificateRequest
[src]

Performs copy-assignment from source. Read more

impl Default for CreateLoadBalancerTlsCertificateRequest
[src]

impl PartialEq<CreateLoadBalancerTlsCertificateRequest> for CreateLoadBalancerTlsCertificateRequest
[src]

impl Debug for CreateLoadBalancerTlsCertificateRequest
[src]

impl Serialize for CreateLoadBalancerTlsCertificateRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T