#[non_exhaustive]pub struct EnvironmentResourceDescription { /* private fields */ }
Expand description
Describes the AWS resources in use by this environment. This data is live.
Implementations§
source§impl EnvironmentResourceDescription
impl EnvironmentResourceDescription
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of the environment.
sourcepub fn auto_scaling_groups(&self) -> Option<&[AutoScalingGroup]>
pub fn auto_scaling_groups(&self) -> Option<&[AutoScalingGroup]>
The AutoScalingGroups
used by this environment.
sourcepub fn instances(&self) -> Option<&[Instance]>
pub fn instances(&self) -> Option<&[Instance]>
The Amazon EC2 instances used by this environment.
sourcepub fn launch_configurations(&self) -> Option<&[LaunchConfiguration]>
pub fn launch_configurations(&self) -> Option<&[LaunchConfiguration]>
The Auto Scaling launch configurations in use by this environment.
sourcepub fn launch_templates(&self) -> Option<&[LaunchTemplate]>
pub fn launch_templates(&self) -> Option<&[LaunchTemplate]>
The Amazon EC2 launch templates in use by this environment.
sourcepub fn load_balancers(&self) -> Option<&[LoadBalancer]>
pub fn load_balancers(&self) -> Option<&[LoadBalancer]>
The LoadBalancers in use by this environment.
source§impl EnvironmentResourceDescription
impl EnvironmentResourceDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EnvironmentResourceDescription
.
Trait Implementations§
source§impl Clone for EnvironmentResourceDescription
impl Clone for EnvironmentResourceDescription
source§fn clone(&self) -> EnvironmentResourceDescription
fn clone(&self) -> EnvironmentResourceDescription
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<EnvironmentResourceDescription> for EnvironmentResourceDescription
impl PartialEq<EnvironmentResourceDescription> for EnvironmentResourceDescription
source§fn eq(&self, other: &EnvironmentResourceDescription) -> bool
fn eq(&self, other: &EnvironmentResourceDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.