#[non_exhaustive]pub struct GetMonitorOutput {Show 13 fields
pub monitor_name: String,
pub monitor_arn: String,
pub resources: Vec<String>,
pub status: MonitorConfigState,
pub created_at: DateTime,
pub modified_at: DateTime,
pub processing_status: Option<MonitorProcessingStatusCode>,
pub processing_status_info: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub max_city_networks_to_monitor: Option<i32>,
pub internet_measurements_log_delivery: Option<InternetMeasurementsLogDelivery>,
pub traffic_percentage_to_monitor: Option<i32>,
pub health_events_config: Option<HealthEventsConfig>,
/* private fields */
}
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.monitor_name: String
The name of the monitor.
monitor_arn: String
The Amazon Resource Name (ARN) of the monitor.
resources: Vec<String>
The resources monitored by the monitor. Resources are listed by their Amazon Resource Names (ARNs).
status: MonitorConfigState
The status of the monitor.
created_at: DateTime
The time when the monitor was created.
modified_at: DateTime
The last time that the monitor was modified.
processing_status: Option<MonitorProcessingStatusCode>
The health of the data processing for the monitor.
processing_status_info: Option<String>
Additional information about the health of the data processing for the monitor.
The tags that have been added to monitor.
max_city_networks_to_monitor: Option<i32>
The maximum number of city-networks to monitor for your resources. A city-network is the location (city) where clients access your application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources through. This limit can help control billing costs.
To learn more, see Choosing a city-network maximum value in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.
internet_measurements_log_delivery: Option<InternetMeasurementsLogDelivery>
Publish internet measurements for Internet Monitor to another location, such as an Amazon S3 bucket. The measurements are also published to Amazon CloudWatch Logs.
traffic_percentage_to_monitor: Option<i32>
The percentage of the internet-facing traffic for your application to monitor with this monitor. If you set a city-networks maximum, that limit overrides the traffic percentage that you set.
To learn more, see Choosing an application traffic percentage to monitor in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.
health_events_config: Option<HealthEventsConfig>
The list of health event threshold configurations. The threshold percentage for a health score determines, along with other configuration information, when Internet Monitor creates a health event when there's an internet issue that affects your application end users.
For more information, see Change health event thresholds in the Internet Monitor section of the CloudWatch User Guide.
Implementations§
source§impl GetMonitorOutput
impl GetMonitorOutput
sourcepub fn monitor_name(&self) -> &str
pub fn monitor_name(&self) -> &str
The name of the monitor.
sourcepub fn monitor_arn(&self) -> &str
pub fn monitor_arn(&self) -> &str
The Amazon Resource Name (ARN) of the monitor.
sourcepub fn resources(&self) -> &[String]
pub fn resources(&self) -> &[String]
The resources monitored by the monitor. Resources are listed by their Amazon Resource Names (ARNs).
sourcepub fn status(&self) -> &MonitorConfigState
pub fn status(&self) -> &MonitorConfigState
The status of the monitor.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The time when the monitor was created.
sourcepub fn modified_at(&self) -> &DateTime
pub fn modified_at(&self) -> &DateTime
The last time that the monitor was modified.
sourcepub fn processing_status(&self) -> Option<&MonitorProcessingStatusCode>
pub fn processing_status(&self) -> Option<&MonitorProcessingStatusCode>
The health of the data processing for the monitor.
sourcepub fn processing_status_info(&self) -> Option<&str>
pub fn processing_status_info(&self) -> Option<&str>
Additional information about the health of the data processing for the monitor.
The tags that have been added to monitor.
sourcepub fn max_city_networks_to_monitor(&self) -> Option<i32>
pub fn max_city_networks_to_monitor(&self) -> Option<i32>
The maximum number of city-networks to monitor for your resources. A city-network is the location (city) where clients access your application resources from and the ASN or network provider, such as an internet service provider (ISP), that clients access the resources through. This limit can help control billing costs.
To learn more, see Choosing a city-network maximum value in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.
sourcepub fn internet_measurements_log_delivery(
&self
) -> Option<&InternetMeasurementsLogDelivery>
pub fn internet_measurements_log_delivery( &self ) -> Option<&InternetMeasurementsLogDelivery>
Publish internet measurements for Internet Monitor to another location, such as an Amazon S3 bucket. The measurements are also published to Amazon CloudWatch Logs.
sourcepub fn traffic_percentage_to_monitor(&self) -> Option<i32>
pub fn traffic_percentage_to_monitor(&self) -> Option<i32>
The percentage of the internet-facing traffic for your application to monitor with this monitor. If you set a city-networks maximum, that limit overrides the traffic percentage that you set.
To learn more, see Choosing an application traffic percentage to monitor in the Amazon CloudWatch Internet Monitor section of the CloudWatch User Guide.
sourcepub fn health_events_config(&self) -> Option<&HealthEventsConfig>
pub fn health_events_config(&self) -> Option<&HealthEventsConfig>
The list of health event threshold configurations. The threshold percentage for a health score determines, along with other configuration information, when Internet Monitor creates a health event when there's an internet issue that affects your application end users.
For more information, see Change health event thresholds in the Internet Monitor section of the CloudWatch User Guide.
source§impl GetMonitorOutput
impl GetMonitorOutput
sourcepub fn builder() -> GetMonitorOutputBuilder
pub fn builder() -> GetMonitorOutputBuilder
Creates a new builder-style object to manufacture GetMonitorOutput
.
Trait Implementations§
source§impl Clone for GetMonitorOutput
impl Clone for GetMonitorOutput
source§fn clone(&self) -> GetMonitorOutput
fn clone(&self) -> GetMonitorOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetMonitorOutput
impl Debug for GetMonitorOutput
source§impl PartialEq for GetMonitorOutput
impl PartialEq for GetMonitorOutput
source§fn eq(&self, other: &GetMonitorOutput) -> bool
fn eq(&self, other: &GetMonitorOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetMonitorOutput
impl RequestId for GetMonitorOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.