Struct aws_sdk_workspacesweb::input::create_portal_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CreatePortalInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The name of the web portal. This is not visible to users who log into the web portal.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The name of the web portal. This is not visible to users who log into the web portal.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The tags to add to the web portal. A tag is a key-value pair.
sourcepub fn customer_managed_key(self, input: impl Into<String>) -> Self
pub fn customer_managed_key(self, input: impl Into<String>) -> Self
The customer managed key of the web portal.
sourcepub fn set_customer_managed_key(self, input: Option<String>) -> Self
pub fn set_customer_managed_key(self, input: Option<String>) -> Self
The customer managed key of the web portal.
sourcepub fn additional_encryption_context(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
pub fn additional_encryption_context(
self,
k: impl Into<String>,
v: impl Into<String>
) -> Self
Adds a key-value pair to additional_encryption_context
.
To override the contents of this collection use set_additional_encryption_context
.
The additional encryption context of the portal.
sourcepub fn set_additional_encryption_context(
self,
input: Option<HashMap<String, String>>
) -> Self
pub fn set_additional_encryption_context(
self,
input: Option<HashMap<String, String>>
) -> Self
The additional encryption context of the portal.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the AWS SDK.
sourcepub fn build(self) -> Result<CreatePortalInput, BuildError>
pub fn build(self) -> Result<CreatePortalInput, BuildError>
Consumes the builder and constructs a CreatePortalInput
.
Examples found in repository?
1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::CreatePortal,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::CreatePortalError>,
> {
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::CreatePortalOutput,
aws_smithy_http::result::SdkError<crate::error::CreatePortalError>,
> {
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
}