pub struct ApplicationComponent {
pub component_name: Option<String>,
pub component_remarks: Option<String>,
pub detected_workload: Option<HashMap<String, HashMap<String, String>>>,
pub monitor: Option<bool>,
pub os_type: Option<String>,
pub resource_type: Option<String>,
pub tier: Option<String>,
}
Expand description
Describes a standalone resource or similarly grouped resources that the application is made up of.
Fields§
§component_name: Option<String>
The name of the component.
component_remarks: Option<String>
If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.
detected_workload: Option<HashMap<String, HashMap<String, String>>>
Workloads detected in the application component.
monitor: Option<bool>
Indicates whether the application component is monitored.
os_type: Option<String>
The operating system of the component.
resource_type: Option<String>
The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.
tier: Option<String>
The stack tier of the application component.
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 Default for ApplicationComponent
impl Default for ApplicationComponent
Source§fn default() -> ApplicationComponent
fn default() -> ApplicationComponent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationComponent
impl<'de> Deserialize<'de> for ApplicationComponent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ApplicationComponent
impl PartialEq for ApplicationComponent
impl StructuralPartialEq for ApplicationComponent
Auto Trait Implementations§
impl Freeze for ApplicationComponent
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