aws_sdk_apigatewayv2/client/update_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 [`UpdatePortal`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`authorization(Authorization)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::authorization) / [`set_authorization(Option<Authorization>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_authorization):<br>required: **false**<br><p>The authorization of the portal.</p><br>
7 /// - [`endpoint_configuration(EndpointConfigurationRequest)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::endpoint_configuration) / [`set_endpoint_configuration(Option<EndpointConfigurationRequest>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_endpoint_configuration):<br>required: **false**<br><p>Represents an endpoint configuration.</p><br>
8 /// - [`included_portal_product_arns(impl Into<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::included_portal_product_arns) / [`set_included_portal_product_arns(Option<Vec::<String>>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_included_portal_product_arns):<br>required: **false**<br><p>The ARNs of the portal products included in the portal.</p><br>
9 /// - [`logo_uri(impl Into<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::logo_uri) / [`set_logo_uri(Option<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_logo_uri):<br>required: **false**<br><p>The logo URI.</p><br>
10 /// - [`portal_content(PortalContent)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::portal_content) / [`set_portal_content(Option<PortalContent>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_portal_content):<br>required: **false**<br><p>Contains the content that is visible to portal consumers including the themes, display names, and description.</p><br>
11 /// - [`portal_id(impl Into<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::portal_id) / [`set_portal_id(Option<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_portal_id):<br>required: **true**<br><p>The portal identifier.</p><br>
12 /// - [`rum_app_monitor_name(impl Into<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::rum_app_monitor_name) / [`set_rum_app_monitor_name(Option<String>)`](crate::operation::update_portal::builders::UpdatePortalFluentBuilder::set_rum_app_monitor_name):<br>required: **false**<br><p>The CloudWatch RUM app monitor name.</p><br>
13 /// - On success, responds with [`UpdatePortalOutput`](crate::operation::update_portal::UpdatePortalOutput) with field(s):
14 /// - [`authorization(Option<Authorization>)`](crate::operation::update_portal::UpdatePortalOutput::authorization): <p>The authorization for the portal.</p>
15 /// - [`endpoint_configuration(Option<EndpointConfigurationResponse>)`](crate::operation::update_portal::UpdatePortalOutput::endpoint_configuration): <p>The endpoint configuration.</p>
16 /// - [`included_portal_product_arns(Option<Vec::<String>>)`](crate::operation::update_portal::UpdatePortalOutput::included_portal_product_arns): <p>The ARNs of the portal products included in the portal.</p>
17 /// - [`last_modified(Option<DateTime>)`](crate::operation::update_portal::UpdatePortalOutput::last_modified): <p>The timestamp when the portal was last modified.</p>
18 /// - [`last_published(Option<DateTime>)`](crate::operation::update_portal::UpdatePortalOutput::last_published): <p>The timestamp when the portal was last published.</p>
19 /// - [`last_published_description(Option<String>)`](crate::operation::update_portal::UpdatePortalOutput::last_published_description): <p>The description associated with the last time the portal was published.</p>
20 /// - [`portal_arn(Option<String>)`](crate::operation::update_portal::UpdatePortalOutput::portal_arn): <p>The ARN of the portal.</p>
21 /// - [`portal_content(Option<PortalContent>)`](crate::operation::update_portal::UpdatePortalOutput::portal_content): <p>Contains the content that is visible to portal consumers including the themes, display names, and description.</p>
22 /// - [`portal_id(Option<String>)`](crate::operation::update_portal::UpdatePortalOutput::portal_id): <p>The portal identifier.</p>
23 /// - [`preview(Option<Preview>)`](crate::operation::update_portal::UpdatePortalOutput::preview): <p>Represents the preview endpoint and the any possible error messages during preview generation.</p>
24 /// - [`publish_status(Option<PublishStatus>)`](crate::operation::update_portal::UpdatePortalOutput::publish_status): <p>The publishStatus.</p>
25 /// - [`rum_app_monitor_name(Option<String>)`](crate::operation::update_portal::UpdatePortalOutput::rum_app_monitor_name): <p>The CloudWatch RUM app monitor name.</p>
26 /// - [`status_exception(Option<StatusException>)`](crate::operation::update_portal::UpdatePortalOutput::status_exception): <p>The status exception information.</p>
27 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::update_portal::UpdatePortalOutput::tags): <p>The collection of tags. Each tag element is associated with a given resource.</p>
28 /// - On failure, responds with [`SdkError<UpdatePortalError>`](crate::operation::update_portal::UpdatePortalError)
29 pub fn update_portal(&self) -> crate::operation::update_portal::builders::UpdatePortalFluentBuilder {
30 crate::operation::update_portal::builders::UpdatePortalFluentBuilder::new(self.handle.clone())
31 }
32}