#[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
sourceimpl 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.
sourceimpl ApplicationComponent
impl ApplicationComponent
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationComponent
.
Trait Implementations
sourceimpl Clone for ApplicationComponent
impl Clone for ApplicationComponent
sourcefn clone(&self) -> ApplicationComponent
fn clone(&self) -> ApplicationComponent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ApplicationComponent
impl Debug for ApplicationComponent
sourceimpl PartialEq<ApplicationComponent> for ApplicationComponent
impl PartialEq<ApplicationComponent> for ApplicationComponent
sourcefn eq(&self, other: &ApplicationComponent) -> bool
fn eq(&self, other: &ApplicationComponent) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more