pub struct CreateProbeFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateProbe
.
Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe.
Implementations§
source§impl CreateProbeFluentBuilder
impl CreateProbeFluentBuilder
sourcepub fn as_input(&self) -> &CreateProbeInputBuilder
pub fn as_input(&self) -> &CreateProbeInputBuilder
Access the CreateProbe as a reference.
sourcepub async fn send(
self
) -> Result<CreateProbeOutput, SdkError<CreateProbeError, HttpResponse>>
pub async fn send( self ) -> Result<CreateProbeOutput, SdkError<CreateProbeError, 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<CreateProbeOutput, CreateProbeError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateProbeOutput, CreateProbeError, 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 associated with the probe. To get a list of available monitors, use ListMonitors
.
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 associated with the probe. To get a list of available monitors, use ListMonitors
.
sourcepub fn get_monitor_name(&self) -> &Option<String>
pub fn get_monitor_name(&self) -> &Option<String>
The name of the monitor to associated with the probe. To get a list of available monitors, use ListMonitors
.
sourcepub fn probe(self, input: ProbeInput) -> Self
pub fn probe(self, input: ProbeInput) -> Self
Describes the details of an individual probe for a monitor.
sourcepub fn set_probe(self, input: Option<ProbeInput>) -> Self
pub fn set_probe(self, input: Option<ProbeInput>) -> Self
Describes the details of an individual probe for a monitor.
sourcepub fn get_probe(&self) -> &Option<ProbeInput>
pub fn get_probe(&self) -> &Option<ProbeInput>
Describes the details of an individual probe for a monitor.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The list of key-value pairs created and assigned to the probe.
The list of key-value pairs created and assigned to the probe.
The list of key-value pairs created and assigned to the probe.
Trait Implementations§
source§impl Clone for CreateProbeFluentBuilder
impl Clone for CreateProbeFluentBuilder
source§fn clone(&self) -> CreateProbeFluentBuilder
fn clone(&self) -> CreateProbeFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more