#[non_exhaustive]pub struct UpdateApplicationInput {
pub resource_group_name: Option<String>,
pub ops_center_enabled: Option<bool>,
pub cwe_monitor_enabled: Option<bool>,
pub ops_item_sns_topic_arn: Option<String>,
pub remove_sns_topic: Option<bool>,
pub auto_config_enabled: Option<bool>,
pub attach_missing_permission: Option<bool>,
}
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.
ops_center_enabled: Option<bool>
When set to true
, creates opsItems for any problems detected on 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.
ops_item_sns_topic_arn: Option<String>
The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.
remove_sns_topic: Option<bool>
Disassociates the SNS topic from the opsItem created for detected problems.
auto_config_enabled: Option<bool>
Turns auto-configuration on or off.
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 UpdateApplicationInput
impl UpdateApplicationInput
sourcepub fn resource_group_name(&self) -> Option<&str>
pub fn resource_group_name(&self) -> Option<&str>
The name of the resource group.
sourcepub fn ops_center_enabled(&self) -> Option<bool>
pub fn ops_center_enabled(&self) -> Option<bool>
When set to true
, creates opsItems for any problems detected on 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 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 opsItem. Allows you to receive notifications for updates to the opsItem.
sourcepub fn remove_sns_topic(&self) -> Option<bool>
pub fn remove_sns_topic(&self) -> Option<bool>
Disassociates the SNS topic from the opsItem created for detected problems.
sourcepub fn auto_config_enabled(&self) -> Option<bool>
pub fn auto_config_enabled(&self) -> Option<bool>
Turns auto-configuration on or off.
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 UpdateApplicationInput
impl UpdateApplicationInput
sourcepub fn builder() -> UpdateApplicationInputBuilder
pub fn builder() -> UpdateApplicationInputBuilder
Creates a new builder-style object to manufacture UpdateApplicationInput
.
Trait Implementations§
source§impl Clone for UpdateApplicationInput
impl Clone for UpdateApplicationInput
source§fn clone(&self) -> UpdateApplicationInput
fn clone(&self) -> UpdateApplicationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateApplicationInput
impl Debug for UpdateApplicationInput
source§impl PartialEq for UpdateApplicationInput
impl PartialEq for UpdateApplicationInput
source§fn eq(&self, other: &UpdateApplicationInput) -> bool
fn eq(&self, other: &UpdateApplicationInput) -> bool
self
and other
values to be equal, and is used
by ==
.