pub struct DeleteProbeFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteProbe
.
Deletes the specified monitor. Once a probe is deleted you'll no longer incur any billing fees for that probe.
Implementations§
source§impl DeleteProbeFluentBuilder
impl DeleteProbeFluentBuilder
sourcepub fn as_input(&self) -> &DeleteProbeInputBuilder
pub fn as_input(&self) -> &DeleteProbeInputBuilder
Access the DeleteProbe as a reference.
sourcepub async fn send(
self
) -> Result<DeleteProbeOutput, SdkError<DeleteProbeError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteProbeOutput, SdkError<DeleteProbeError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeleteProbeOutput, DeleteProbeError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteProbeOutput, DeleteProbeError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 to delete. For a list of the available monitors, use the ListMonitors
action.
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 to delete. For a list of the available monitors, use the ListMonitors
action.
sourcepub fn get_monitor_name(&self) -> &Option<String>
pub fn get_monitor_name(&self) -> &Option<String>
The name of the monitor to delete. For a list of the available monitors, use the ListMonitors
action.
sourcepub fn probe_id(self, input: impl Into<String>) -> Self
pub fn probe_id(self, input: impl Into<String>) -> Self
The ID of the probe to delete. Run GetMonitor
to get a lst of all probes and probe IDs associated with the monitor.
sourcepub fn set_probe_id(self, input: Option<String>) -> Self
pub fn set_probe_id(self, input: Option<String>) -> Self
The ID of the probe to delete. Run GetMonitor
to get a lst of all probes and probe IDs associated with the monitor.
sourcepub fn get_probe_id(&self) -> &Option<String>
pub fn get_probe_id(&self) -> &Option<String>
The ID of the probe to delete. Run GetMonitor
to get a lst of all probes and probe IDs associated with the monitor.
Trait Implementations§
source§impl Clone for DeleteProbeFluentBuilder
impl Clone for DeleteProbeFluentBuilder
source§fn clone(&self) -> DeleteProbeFluentBuilder
fn clone(&self) -> DeleteProbeFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more