Struct rusoto_elb::SetLoadBalancerListenerSSLCertificateInput[][src]

pub struct SetLoadBalancerListenerSSLCertificateInput {
    pub load_balancer_name: String,
    pub load_balancer_port: i64,
    pub ssl_certificate_id: String,
}

Contains the parameters for SetLoadBalancerListenerSSLCertificate.

Fields

The name of the load balancer.

The port that uses the specified SSL certificate.

The Amazon Resource Name (ARN) of the SSL certificate.

Trait Implementations

impl Default for SetLoadBalancerListenerSSLCertificateInput
[src]

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

impl Debug for SetLoadBalancerListenerSSLCertificateInput
[src]

Formats the value using the given formatter. Read more

impl Clone for SetLoadBalancerListenerSSLCertificateInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SetLoadBalancerListenerSSLCertificateInput
[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