pub struct CreateApplicationRequest {
pub cwe_monitor_enabled: Option<bool>,
pub ops_center_enabled: Option<bool>,
pub ops_item_sns_topic_arn: Option<String>,
pub resource_group_name: String,
pub tags: Option<Vec<Tag>>,
}
Fields§
§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_center_enabled: Option<bool>
When set to true
, creates opsItems for any problems detected on an application.
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.
resource_group_name: String
The name of the resource group.
List of tags to add to the application. tag key (Key
) and an associated tag value (Value
). The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.
Trait Implementations§
Source§impl Clone for CreateApplicationRequest
impl Clone for CreateApplicationRequest
Source§fn clone(&self) -> CreateApplicationRequest
fn clone(&self) -> CreateApplicationRequest
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 CreateApplicationRequest
impl Debug for CreateApplicationRequest
Source§impl Default for CreateApplicationRequest
impl Default for CreateApplicationRequest
Source§fn default() -> CreateApplicationRequest
fn default() -> CreateApplicationRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateApplicationRequest
impl PartialEq for CreateApplicationRequest
Source§impl Serialize for CreateApplicationRequest
impl Serialize for CreateApplicationRequest
impl StructuralPartialEq for CreateApplicationRequest
Auto Trait Implementations§
impl Freeze for CreateApplicationRequest
impl RefUnwindSafe for CreateApplicationRequest
impl Send for CreateApplicationRequest
impl Sync for CreateApplicationRequest
impl Unpin for CreateApplicationRequest
impl UnwindSafe for CreateApplicationRequest
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