#[non_exhaustive]pub struct ApplicationComponent { /* private fields */ }
Expand description
Describes a standalone resource or similarly grouped resources that the application is made up of.
Implementations§
source§impl ApplicationComponent
impl ApplicationComponent
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of the component.
sourcepub fn component_remarks(&self) -> Option<&str>
pub fn component_remarks(&self) -> Option<&str>
If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.
source§impl ApplicationComponent
impl ApplicationComponent
sourcepub fn builder() -> ApplicationComponentBuilder
pub fn builder() -> ApplicationComponentBuilder
Creates a new builder-style object to manufacture ApplicationComponent
.
Trait Implementations§
source§impl Clone for ApplicationComponent
impl Clone for ApplicationComponent
source§fn clone(&self) -> ApplicationComponent
fn clone(&self) -> ApplicationComponent
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 Debug for ApplicationComponent
impl Debug for ApplicationComponent
source§impl PartialEq<ApplicationComponent> for ApplicationComponent
impl PartialEq<ApplicationComponent> for ApplicationComponent
source§fn eq(&self, other: &ApplicationComponent) -> bool
fn eq(&self, other: &ApplicationComponent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ApplicationComponent
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationComponent
impl Send for ApplicationComponent
impl Sync for ApplicationComponent
impl Unpin for ApplicationComponent
impl UnwindSafe for ApplicationComponent
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