#[non_exhaustive]pub struct UpdateQuickConnectConfigInput { /* private fields */ }
Implementations§
source§impl UpdateQuickConnectConfigInput
impl UpdateQuickConnectConfigInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateQuickConnectConfig, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateQuickConnectConfig, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateQuickConnectConfig
>
Examples found in repository?
src/client.rs (line 17923)
17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::UpdateQuickConnectConfig,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::UpdateQuickConnectConfigError>,
> {
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::UpdateQuickConnectConfigOutput,
aws_smithy_http::result::SdkError<crate::error::UpdateQuickConnectConfigError>,
> {
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 UpdateQuickConnectConfigInput
.
source§impl UpdateQuickConnectConfigInput
impl UpdateQuickConnectConfigInput
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 quick_connect_config(&self) -> Option<&QuickConnectConfig>
pub fn quick_connect_config(&self) -> Option<&QuickConnectConfig>
Information about the configuration settings for the quick connect.
Trait Implementations§
source§impl Clone for UpdateQuickConnectConfigInput
impl Clone for UpdateQuickConnectConfigInput
source§fn clone(&self) -> UpdateQuickConnectConfigInput
fn clone(&self) -> UpdateQuickConnectConfigInput
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