#[non_exhaustive]pub struct ApplicationInfo {
pub account_id: Option<String>,
pub resource_group_name: Option<String>,
pub life_cycle: Option<String>,
pub ops_item_sns_topic_arn: Option<String>,
pub ops_center_enabled: Option<bool>,
pub cwe_monitor_enabled: Option<bool>,
pub remarks: Option<String>,
pub auto_config_enabled: Option<bool>,
pub discovery_type: Option<DiscoveryType>,
pub attach_missing_permission: Option<bool>,
}
Expand description
Describes the status of the application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.account_id: Option<String>
The AWS account ID for the owner of the application.
resource_group_name: Option<String>
The name of the resource group used for the application.
life_cycle: Option<String>
The lifecycle of the application.
ops_item_sns_topic_arn: Option<String>
The SNS topic provided to Application Insights that is associated to the created opsItems to receive SNS notifications for opsItem updates.
ops_center_enabled: Option<bool>
Indicates whether Application Insights will create opsItems for any problem detected by Application Insights for an application.
cwe_monitor_enabled: Option<bool>
Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated
, failed deployment
, and others.
remarks: Option<String>
The issues on the user side that block Application Insights from successfully monitoring an application. Example remarks include:
-
“Configuring application, detected 1 Errors, 3 Warnings”
-
“Configuring application, detected 1 Unconfigured Components”
auto_config_enabled: Option<bool>
Indicates whether auto-configuration is turned on for this application.
discovery_type: Option<DiscoveryType>
The method used by Application Insights to onboard your resources.
attach_missing_permission: Option<bool>
If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.
Implementations§
source§impl ApplicationInfo
impl ApplicationInfo
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The AWS account ID for the owner of the application.
sourcepub fn resource_group_name(&self) -> Option<&str>
pub fn resource_group_name(&self) -> Option<&str>
The name of the resource group used for the application.
sourcepub fn life_cycle(&self) -> Option<&str>
pub fn life_cycle(&self) -> Option<&str>
The lifecycle of the application.
sourcepub fn ops_item_sns_topic_arn(&self) -> Option<&str>
pub fn ops_item_sns_topic_arn(&self) -> Option<&str>
The SNS topic provided to Application Insights that is associated to the created opsItems to receive SNS notifications for opsItem updates.
sourcepub fn ops_center_enabled(&self) -> Option<bool>
pub fn ops_center_enabled(&self) -> Option<bool>
Indicates whether Application Insights will create opsItems for any problem detected by Application Insights for an application.
sourcepub fn cwe_monitor_enabled(&self) -> Option<bool>
pub fn cwe_monitor_enabled(&self) -> Option<bool>
Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated
, failed deployment
, and others.
sourcepub fn remarks(&self) -> Option<&str>
pub fn remarks(&self) -> Option<&str>
The issues on the user side that block Application Insights from successfully monitoring an application. Example remarks include:
-
“Configuring application, detected 1 Errors, 3 Warnings”
-
“Configuring application, detected 1 Unconfigured Components”
sourcepub fn auto_config_enabled(&self) -> Option<bool>
pub fn auto_config_enabled(&self) -> Option<bool>
Indicates whether auto-configuration is turned on for this application.
sourcepub fn discovery_type(&self) -> Option<&DiscoveryType>
pub fn discovery_type(&self) -> Option<&DiscoveryType>
The method used by Application Insights to onboard your resources.
sourcepub fn attach_missing_permission(&self) -> Option<bool>
pub fn attach_missing_permission(&self) -> Option<bool>
If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.
source§impl ApplicationInfo
impl ApplicationInfo
sourcepub fn builder() -> ApplicationInfoBuilder
pub fn builder() -> ApplicationInfoBuilder
Creates a new builder-style object to manufacture ApplicationInfo
.
Trait Implementations§
source§impl Clone for ApplicationInfo
impl Clone for ApplicationInfo
source§fn clone(&self) -> ApplicationInfo
fn clone(&self) -> ApplicationInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ApplicationInfo
impl Debug for ApplicationInfo
source§impl PartialEq for ApplicationInfo
impl PartialEq for ApplicationInfo
source§fn eq(&self, other: &ApplicationInfo) -> bool
fn eq(&self, other: &ApplicationInfo) -> bool
self
and other
values to be equal, and is used
by ==
.