#[non_exhaustive]pub struct DeleteNetworkInsightsAnalysisInput { /* private fields */ }
Implementations§
source§impl DeleteNetworkInsightsAnalysisInput
impl DeleteNetworkInsightsAnalysisInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteNetworkInsightsAnalysis, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteNetworkInsightsAnalysis, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteNetworkInsightsAnalysis
>
Examples found in repository?
src/client.rs (line 28434)
28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DeleteNetworkInsightsAnalysis,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::DeleteNetworkInsightsAnalysisError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::DeleteNetworkInsightsAnalysisOutput,
aws_smithy_http::result::SdkError<crate::error::DeleteNetworkInsightsAnalysisError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteNetworkInsightsAnalysisInput
.
source§impl DeleteNetworkInsightsAnalysisInput
impl DeleteNetworkInsightsAnalysisInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn network_insights_analysis_id(&self) -> Option<&str>
pub fn network_insights_analysis_id(&self) -> Option<&str>
The ID of the network insights analysis.
Trait Implementations§
source§impl Clone for DeleteNetworkInsightsAnalysisInput
impl Clone for DeleteNetworkInsightsAnalysisInput
source§fn clone(&self) -> DeleteNetworkInsightsAnalysisInput
fn clone(&self) -> DeleteNetworkInsightsAnalysisInput
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 more