#[non_exhaustive]pub struct UpdateQuickConnectNameInput { /* private fields */ }
Implementations§
source§impl UpdateQuickConnectNameInput
impl UpdateQuickConnectNameInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateQuickConnectName, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateQuickConnectName, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateQuickConnectName
>
Examples found in repository?
src/client.rs (line 18022)
18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateQuickConnectName,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateQuickConnectNameError>,
> {
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::UpdateQuickConnectNameOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateQuickConnectNameError>,
> {
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 UpdateQuickConnectNameInput
.
source§impl UpdateQuickConnectNameInput
impl UpdateQuickConnectNameInput
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.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the quick connect.
Trait Implementations§
source§impl Clone for UpdateQuickConnectNameInput
impl Clone for UpdateQuickConnectNameInput
source§fn clone(&self) -> UpdateQuickConnectNameInput
fn clone(&self) -> UpdateQuickConnectNameInput
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