Struct aws_sdk_connect::input::DeleteQuickConnectInput
source · #[non_exhaustive]pub struct DeleteQuickConnectInput { /* private fields */ }
Implementations§
source§impl DeleteQuickConnectInput
impl DeleteQuickConnectInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteQuickConnect, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteQuickConnect, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteQuickConnect
>
Examples found in repository?
src/client.rs (line 5934)
5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::DeleteQuickConnect,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::DeleteQuickConnectError>,
> {
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::DeleteQuickConnectOutput,
aws_smithy_http::result::SdkError<crate::error::DeleteQuickConnectError>,
> {
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 DeleteQuickConnectInput
.
source§impl DeleteQuickConnectInput
impl DeleteQuickConnectInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
sourcepub fn quick_connect_id(&self) -> Option<&str>
pub fn quick_connect_id(&self) -> Option<&str>
The identifier for the quick connect.
Trait Implementations§
source§impl Clone for DeleteQuickConnectInput
impl Clone for DeleteQuickConnectInput
source§fn clone(&self) -> DeleteQuickConnectInput
fn clone(&self) -> DeleteQuickConnectInput
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