Struct rusoto_elasticbeanstalk::EnvironmentLink[][src]

pub struct EnvironmentLink {
    pub environment_name: Option<String>,
    pub link_name: Option<String>,
}

A link to another environment, defined in the environment's manifest. Links provide connection information in system properties that can be used to connect to another environment in the same group. See Environment Manifest (env.yaml) for details.

Fields

The name of the linked environment (the dependency).

The name of the link.

Trait Implementations

impl Default for EnvironmentLink
[src]

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

impl Debug for EnvironmentLink
[src]

Formats the value using the given formatter. Read more

impl Clone for EnvironmentLink
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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