#[non_exhaustive]pub struct GetMonitorOutputBuilder { /* private fields */ }Expand description
A builder for GetMonitorOutput.
Implementations§
source§impl GetMonitorOutputBuilder
impl GetMonitorOutputBuilder
sourcepub fn monitor_name(self, input: impl Into<String>) -> Self
pub fn monitor_name(self, input: impl Into<String>) -> Self
The name of the monitor.
sourcepub fn set_monitor_name(self, input: Option<String>) -> Self
pub fn set_monitor_name(self, input: Option<String>) -> Self
The name of the monitor.
sourcepub fn monitor_arn(self, input: impl Into<String>) -> Self
pub fn monitor_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the monitor.
sourcepub fn set_monitor_arn(self, input: Option<String>) -> Self
pub fn set_monitor_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the monitor.
sourcepub fn resources(self, input: impl Into<String>) -> Self
pub fn resources(self, input: impl Into<String>) -> Self
Appends an item to resources.
To override the contents of this collection use set_resources.
The resources that have been added for the monitor. Resources are listed by their Amazon Resource Names (ARNs).
sourcepub fn set_resources(self, input: Option<Vec<String>>) -> Self
pub fn set_resources(self, input: Option<Vec<String>>) -> Self
The resources that have been added for the monitor. Resources are listed by their Amazon Resource Names (ARNs).
sourcepub fn status(self, input: MonitorConfigState) -> Self
pub fn status(self, input: MonitorConfigState) -> Self
The status of the monitor.
sourcepub fn set_status(self, input: Option<MonitorConfigState>) -> Self
pub fn set_status(self, input: Option<MonitorConfigState>) -> Self
The status of the monitor.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The time when the monitor was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The time when the monitor was created.
sourcepub fn modified_at(self, input: DateTime) -> Self
pub fn modified_at(self, input: DateTime) -> Self
The last time that the monitor was modified.
sourcepub fn set_modified_at(self, input: Option<DateTime>) -> Self
pub fn set_modified_at(self, input: Option<DateTime>) -> Self
The last time that the monitor was modified.
sourcepub fn processing_status(self, input: MonitorProcessingStatusCode) -> Self
pub fn processing_status(self, input: MonitorProcessingStatusCode) -> Self
The health of the data processing for the monitor.
sourcepub fn set_processing_status(
self,
input: Option<MonitorProcessingStatusCode>
) -> Self
pub fn set_processing_status( self, input: Option<MonitorProcessingStatusCode> ) -> Self
The health of the data processing for the monitor.
sourcepub fn processing_status_info(self, input: impl Into<String>) -> Self
pub fn processing_status_info(self, input: impl Into<String>) -> Self
Additional information about the health of the data processing for the monitor.
sourcepub fn set_processing_status_info(self, input: Option<String>) -> Self
pub fn set_processing_status_info(self, input: Option<String>) -> Self
Additional information about the health of the data processing for the monitor.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
The tags that have been added to monitor.
The tags that have been added to monitor.
sourcepub fn max_city_networks_to_monitor(self, input: i32) -> Self
pub fn max_city_networks_to_monitor(self, input: i32) -> Self
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 network or ASN, such as an internet service provider (ISP), that clients access the resources through. This limit helps 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 set_max_city_networks_to_monitor(self, input: Option<i32>) -> Self
pub fn set_max_city_networks_to_monitor(self, input: Option<i32>) -> Self
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 network or ASN, such as an internet service provider (ISP), that clients access the resources through. This limit helps 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,
input: InternetMeasurementsLogDelivery
) -> Self
pub fn internet_measurements_log_delivery( self, input: InternetMeasurementsLogDelivery ) -> Self
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 set_internet_measurements_log_delivery(
self,
input: Option<InternetMeasurementsLogDelivery>
) -> Self
pub fn set_internet_measurements_log_delivery( self, input: Option<InternetMeasurementsLogDelivery> ) -> Self
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, input: i32) -> Self
pub fn traffic_percentage_to_monitor(self, input: i32) -> Self
The percentage of the internet-facing traffic for your application that you want to monitor with this monitor.
sourcepub fn set_traffic_percentage_to_monitor(self, input: Option<i32>) -> Self
pub fn set_traffic_percentage_to_monitor(self, input: Option<i32>) -> Self
The percentage of the internet-facing traffic for your application that you want to monitor with this monitor.
sourcepub fn build(self) -> GetMonitorOutput
pub fn build(self) -> GetMonitorOutput
Consumes the builder and constructs a GetMonitorOutput.
Trait Implementations§
source§impl Clone for GetMonitorOutputBuilder
impl Clone for GetMonitorOutputBuilder
source§fn clone(&self) -> GetMonitorOutputBuilder
fn clone(&self) -> GetMonitorOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetMonitorOutputBuilder
impl Debug for GetMonitorOutputBuilder
source§impl Default for GetMonitorOutputBuilder
impl Default for GetMonitorOutputBuilder
source§fn default() -> GetMonitorOutputBuilder
fn default() -> GetMonitorOutputBuilder
source§impl PartialEq<GetMonitorOutputBuilder> for GetMonitorOutputBuilder
impl PartialEq<GetMonitorOutputBuilder> for GetMonitorOutputBuilder
source§fn eq(&self, other: &GetMonitorOutputBuilder) -> bool
fn eq(&self, other: &GetMonitorOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.