aws_sdk_workspacesweb/client/
delete_portal.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeletePortal`](crate::operation::delete_portal::builders::DeletePortalFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`portal_arn(impl Into<String>)`](crate::operation::delete_portal::builders::DeletePortalFluentBuilder::portal_arn) / [`set_portal_arn(Option<String>)`](crate::operation::delete_portal::builders::DeletePortalFluentBuilder::set_portal_arn):<br>required: **true**<br><p>The ARN of the web portal.</p><br>
    /// - On success, responds with [`DeletePortalOutput`](crate::operation::delete_portal::DeletePortalOutput)
    /// - On failure, responds with [`SdkError<DeletePortalError>`](crate::operation::delete_portal::DeletePortalError)
    pub fn delete_portal(&self) -> crate::operation::delete_portal::builders::DeletePortalFluentBuilder {
        crate::operation::delete_portal::builders::DeletePortalFluentBuilder::new(self.handle.clone())
    }
}