[][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,
    pub tags: Option<Vec<Tag>>,
}

Fields

certificate_alternative_names: Option<Vec<String>>

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).

certificate_domain_name: String

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

certificate_name: String

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.

load_balancer_name: String

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

tags: Option<Vec<Tag>>

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

To tag a resource after it has been created, see the tag resource operation.

Trait Implementations

impl PartialEq<CreateLoadBalancerTlsCertificateRequest> for CreateLoadBalancerTlsCertificateRequest[src]

impl Default for CreateLoadBalancerTlsCertificateRequest[src]

impl Clone for CreateLoadBalancerTlsCertificateRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateLoadBalancerTlsCertificateRequest[src]

impl Serialize for CreateLoadBalancerTlsCertificateRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self