aws_sdk_apigatewayv2/client/
update_product_rest_endpoint_page.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 [`UpdateProductRestEndpointPage`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`display_content(EndpointDisplayContent)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::display_content) / [`set_display_content(Option<EndpointDisplayContent>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::set_display_content):<br>required: **false**<br><p>The display content.</p><br>
7    ///   - [`portal_product_id(impl Into<String>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::portal_product_id) / [`set_portal_product_id(Option<String>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::set_portal_product_id):<br>required: **true**<br><p>The portal product identifier.</p><br>
8    ///   - [`product_rest_endpoint_page_id(impl Into<String>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::product_rest_endpoint_page_id) / [`set_product_rest_endpoint_page_id(Option<String>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::set_product_rest_endpoint_page_id):<br>required: **true**<br><p>The product REST endpoint identifier.</p><br>
9    ///   - [`try_it_state(TryItState)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::try_it_state) / [`set_try_it_state(Option<TryItState>)`](crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::set_try_it_state):<br>required: **false**<br><p>The try it state of a product REST endpoint page.</p><br>
10    /// - On success, responds with [`UpdateProductRestEndpointPageOutput`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput) with field(s):
11    ///   - [`display_content(Option<EndpointDisplayContentResponse>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::display_content): <p>The content of the product REST endpoint page.</p>
12    ///   - [`last_modified(Option<DateTime>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::last_modified): <p>The timestamp when the product REST endpoint page was last modified.</p>
13    ///   - [`product_rest_endpoint_page_arn(Option<String>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::product_rest_endpoint_page_arn): <p>The ARN of the product REST endpoint page.</p>
14    ///   - [`product_rest_endpoint_page_id(Option<String>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::product_rest_endpoint_page_id): <p>The product REST endpoint page identifier.</p>
15    ///   - [`rest_endpoint_identifier(Option<RestEndpointIdentifier>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::rest_endpoint_identifier): <p>The REST endpoint identifier.</p>
16    ///   - [`status(Option<Status>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::status): <p>The status.</p>
17    ///   - [`status_exception(Option<StatusException>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::status_exception): <p>The status exception information.</p>
18    ///   - [`try_it_state(Option<TryItState>)`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageOutput::try_it_state): <p>The try it state of a product REST endpoint page.</p>
19    /// - On failure, responds with [`SdkError<UpdateProductRestEndpointPageError>`](crate::operation::update_product_rest_endpoint_page::UpdateProductRestEndpointPageError)
20    pub fn update_product_rest_endpoint_page(
21        &self,
22    ) -> crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder {
23        crate::operation::update_product_rest_endpoint_page::builders::UpdateProductRestEndpointPageFluentBuilder::new(self.handle.clone())
24    }
25}