#[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>,
}
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>
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApplication, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateApplication, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateApplication
>
Creates a new builder-style object to manufacture UpdateApplicationInput
The name of the resource group.
When set to true
, creates opsItems for any problems detected on an application.
Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated
, failed deployment
, and others.
The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.
Disassociates the SNS topic from the opsItem created for detected problems.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateApplicationInput
impl Send for UpdateApplicationInput
impl Sync for UpdateApplicationInput
impl Unpin for UpdateApplicationInput
impl UnwindSafe for UpdateApplicationInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more