Struct rusoto_lightsail::LoadBalancer [] [src]

pub struct LoadBalancer {
    pub arn: Option<String>,
    pub configuration_options: Option<HashMap<String, String>>,
    pub created_at: Option<f64>,
    pub dns_name: Option<String>,
    pub health_check_path: Option<String>,
    pub instance_health_summary: Option<Vec<InstanceHealthSummary>>,
    pub instance_port: Option<i64>,
    pub location: Option<ResourceLocation>,
    pub name: Option<String>,
    pub protocol: Option<String>,
    pub public_ports: Option<Vec<i64>>,
    pub resource_type: Option<String>,
    pub state: Option<String>,
    pub support_code: Option<String>,
    pub tls_certificate_summaries: Option<Vec<LoadBalancerTlsCertificateSummary>>,
}

Describes the Lightsail load balancer.

Fields

The Amazon Resource Name (ARN) of the load balancer.

A string to string map of the configuration options for your load balancer. Valid values are listed below.

The date when your load balancer was created.

The DNS name of your Lightsail load balancer.

The path you specified to perform your health checks. If no path is specified, the load balancer tries to make a request to the default (root) page.

An array of InstanceHealthSummary objects describing the health of the load balancer.

The instance port where the load balancer is listening.

The AWS Region and Availability Zone where your load balancer was created (e.g., us-east-2a).

The name of the load balancer (e.g., my-load-balancer).

The protocol you have enabled for your load balancer. Valid values are below.

An array of public port settings for your load balancer.

The resource type (e.g., LoadBalancer.

The status of your load balancer. Valid values are below.

The support code. Include this code in your email to support when you have questions about your Lightsail load balancer. This code enables our support team to look up your Lightsail information more easily.

An array of LoadBalancerTlsCertificateSummary objects that provide additional information about the TLS/SSL certificates.

Trait Implementations

impl Default for LoadBalancer
[src]

[src]

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

impl Debug for LoadBalancer
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for LoadBalancer
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for LoadBalancer

impl Sync for LoadBalancer