Struct aws_sdk_applicationinsights::model::ApplicationInfo
source · [−]#[non_exhaustive]pub struct ApplicationInfo {
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>,
}
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.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.
Implementations
sourceimpl ApplicationInfo
impl ApplicationInfo
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.
sourceimpl ApplicationInfo
impl ApplicationInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationInfo
.
Trait Implementations
sourceimpl Clone for ApplicationInfo
impl Clone for ApplicationInfo
sourcefn clone(&self) -> ApplicationInfo
fn clone(&self) -> ApplicationInfo
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 more
sourceimpl Debug for ApplicationInfo
impl Debug for ApplicationInfo
sourceimpl PartialEq<ApplicationInfo> for ApplicationInfo
impl PartialEq<ApplicationInfo> for ApplicationInfo
sourcefn eq(&self, other: &ApplicationInfo) -> bool
fn eq(&self, other: &ApplicationInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ApplicationInfo) -> bool
fn ne(&self, other: &ApplicationInfo) -> bool
This method tests for !=
.
impl StructuralPartialEq for ApplicationInfo
Auto Trait Implementations
impl RefUnwindSafe for ApplicationInfo
impl Send for ApplicationInfo
impl Sync for ApplicationInfo
impl Unpin for ApplicationInfo
impl UnwindSafe for ApplicationInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more