pub struct Builder { /* private fields */ }Expand description
A builder for CreateInterconnectInput.
Implementations§
source§impl Builder
impl Builder
sourcepub fn interconnect_name(self, input: impl Into<String>) -> Self
pub fn interconnect_name(self, input: impl Into<String>) -> Self
The name of the interconnect.
sourcepub fn set_interconnect_name(self, input: Option<String>) -> Self
pub fn set_interconnect_name(self, input: Option<String>) -> Self
The name of the interconnect.
sourcepub fn bandwidth(self, input: impl Into<String>) -> Self
pub fn bandwidth(self, input: impl Into<String>) -> Self
The port bandwidth, in Gbps. The possible values are 1 and 10.
sourcepub fn set_bandwidth(self, input: Option<String>) -> Self
pub fn set_bandwidth(self, input: Option<String>) -> Self
The port bandwidth, in Gbps. The possible values are 1 and 10.
sourcepub fn set_location(self, input: Option<String>) -> Self
pub fn set_location(self, input: Option<String>) -> Self
The location of the interconnect.
sourcepub fn set_lag_id(self, input: Option<String>) -> Self
pub fn set_lag_id(self, input: Option<String>) -> Self
The ID of the LAG.
Appends an item to tags.
To override the contents of this collection use set_tags.
The tags to associate with the interconnect.
sourcepub fn provider_name(self, input: impl Into<String>) -> Self
pub fn provider_name(self, input: impl Into<String>) -> Self
The name of the service provider associated with the interconnect.
sourcepub fn set_provider_name(self, input: Option<String>) -> Self
pub fn set_provider_name(self, input: Option<String>) -> Self
The name of the service provider associated with the interconnect.
sourcepub fn build(self) -> Result<CreateInterconnectInput, BuildError>
pub fn build(self) -> Result<CreateInterconnectInput, BuildError>
Consumes the builder and constructs a CreateInterconnectInput.
Examples found in repository?
src/client.rs (line 3493)
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreateInterconnect,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::CreateInterconnectError>,
> {
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::CreateInterconnectOutput,
aws_smithy_http::result::SdkError<crate::error::CreateInterconnectError>,
> {
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
}