aws_sdk_workspacesweb/client/delete_portal.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeletePortal`](crate::operation::delete_portal::builders::DeletePortalFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DeletePortalOutput`](crate::operation::delete_portal::DeletePortalOutput)
8 /// - On failure, responds with [`SdkError<DeletePortalError>`](crate::operation::delete_portal::DeletePortalError)
9 pub fn delete_portal(&self) -> crate::operation::delete_portal::builders::DeletePortalFluentBuilder {
10 crate::operation::delete_portal::builders::DeletePortalFluentBuilder::new(self.handle.clone())
11 }
12}