Struct aws_sdk_apigatewayv2::input::get_vpc_link_input::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for GetVpcLinkInput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn vpc_link_id(self, input: impl Into<String>) -> Self
pub fn vpc_link_id(self, input: impl Into<String>) -> Self
The ID of the VPC link.
sourcepub fn set_vpc_link_id(self, input: Option<String>) -> Self
pub fn set_vpc_link_id(self, input: Option<String>) -> Self
The ID of the VPC link.
sourcepub fn build(self) -> Result<GetVpcLinkInput, BuildError>
pub fn build(self) -> Result<GetVpcLinkInput, BuildError>
Consumes the builder and constructs a GetVpcLinkInput.
Examples found in repository?
src/client.rs (line 7232)
7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::GetVpcLink,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::GetVpcLinkError>,
> {
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::GetVpcLinkOutput,
aws_smithy_http::result::SdkError<crate::error::GetVpcLinkError>,
> {
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
}