pub struct EnvironmentResourceDescription {
pub auto_scaling_groups: Option<Vec<AutoScalingGroup>>,
pub environment_name: Option<String>,
pub instances: Option<Vec<Instance>>,
pub launch_configurations: Option<Vec<LaunchConfiguration>>,
pub launch_templates: Option<Vec<LaunchTemplate>>,
pub load_balancers: Option<Vec<LoadBalancer>>,
pub queues: Option<Vec<Queue>>,
pub triggers: Option<Vec<Trigger>>,
}
Expand description
Describes the AWS resources in use by this environment. This data is live.
Fields§
§auto_scaling_groups: Option<Vec<AutoScalingGroup>>
The AutoScalingGroups
used by this environment.
environment_name: Option<String>
The name of the environment.
instances: Option<Vec<Instance>>
The Amazon EC2 instances used by this environment.
launch_configurations: Option<Vec<LaunchConfiguration>>
The Auto Scaling launch configurations in use by this environment.
launch_templates: Option<Vec<LaunchTemplate>>
The Amazon EC2 launch templates in use by this environment.
load_balancers: Option<Vec<LoadBalancer>>
The LoadBalancers in use by this environment.
queues: Option<Vec<Queue>>
The queues used by this environment.
triggers: Option<Vec<Trigger>>
The AutoScaling
triggers in use by this environment.
Trait Implementations§
Source§impl Clone for EnvironmentResourceDescription
impl Clone for EnvironmentResourceDescription
Source§fn clone(&self) -> EnvironmentResourceDescription
fn clone(&self) -> EnvironmentResourceDescription
Returns a duplicate 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 Default for EnvironmentResourceDescription
impl Default for EnvironmentResourceDescription
Source§fn default() -> EnvironmentResourceDescription
fn default() -> EnvironmentResourceDescription
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnvironmentResourceDescription
impl PartialEq for EnvironmentResourceDescription
Source§fn eq(&self, other: &EnvironmentResourceDescription) -> bool
fn eq(&self, other: &EnvironmentResourceDescription) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for EnvironmentResourceDescription
Auto Trait Implementations§
impl Freeze for EnvironmentResourceDescription
impl RefUnwindSafe for EnvironmentResourceDescription
impl Send for EnvironmentResourceDescription
impl Sync for EnvironmentResourceDescription
impl Unpin for EnvironmentResourceDescription
impl UnwindSafe for EnvironmentResourceDescription
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more