Struct rusoto_lightsail::DeleteLoadBalancerTlsCertificateRequest[][src]

pub struct DeleteLoadBalancerTlsCertificateRequest {
    pub certificate_name: String,
    pub force: Option<bool>,
    pub load_balancer_name: String,
}

Fields

The SSL/TLS certificate name.

When true, forces the deletion of an SSL/TLS certificate.

There can be two certificates associated with a Lightsail load balancer: the primary and the backup. The force parameter is required when the primary SSL/TLS certificate is in use by an instance attached to the load balancer.

The load balancer name.

Trait Implementations

impl Default for DeleteLoadBalancerTlsCertificateRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteLoadBalancerTlsCertificateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteLoadBalancerTlsCertificateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteLoadBalancerTlsCertificateRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations