aws_sdk_apigatewayv2/client/
get_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 [`GetProductRestEndpointPage`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`include_raw_display_content(impl Into<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::include_raw_display_content) / [`set_include_raw_display_content(Option<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::set_include_raw_display_content):<br>required: **false**<br><p>The query parameter to include raw display content.</p><br>
7    ///   - [`portal_product_id(impl Into<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::portal_product_id) / [`set_portal_product_id(Option<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::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::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::product_rest_endpoint_page_id) / [`set_product_rest_endpoint_page_id(Option<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::set_product_rest_endpoint_page_id):<br>required: **true**<br><p>The product REST endpoint identifier.</p><br>
9    ///   - [`resource_owner_account_id(impl Into<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::resource_owner_account_id) / [`set_resource_owner_account_id(Option<String>)`](crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::set_resource_owner_account_id):<br>required: **false**<br><p>The account ID of the resource owner of the portal product.</p><br>
10    /// - On success, responds with [`GetProductRestEndpointPageOutput`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput) with field(s):
11    ///   - [`display_content(Option<EndpointDisplayContentResponse>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::display_content): <p>The content of the product REST endpoint page.</p>
12    ///   - [`last_modified(Option<DateTime>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::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::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::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::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::product_rest_endpoint_page_id): <p>The product REST endpoint page identifier.</p>
15    ///   - [`raw_display_content(Option<String>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::raw_display_content): <p>The raw display content of the product REST endpoint page.</p>
16    ///   - [`rest_endpoint_identifier(Option<RestEndpointIdentifier>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::rest_endpoint_identifier): <p>The REST endpoint identifier.</p>
17    ///   - [`status(Option<Status>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::status): <p>The status of the product REST endpoint page.</p>
18    ///   - [`status_exception(Option<StatusException>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::status_exception): <p>The status exception information.</p>
19    ///   - [`try_it_state(Option<TryItState>)`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageOutput::try_it_state): <p>The try it state.</p>
20    /// - On failure, responds with [`SdkError<GetProductRestEndpointPageError>`](crate::operation::get_product_rest_endpoint_page::GetProductRestEndpointPageError)
21    pub fn get_product_rest_endpoint_page(
22        &self,
23    ) -> crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder {
24        crate::operation::get_product_rest_endpoint_page::builders::GetProductRestEndpointPageFluentBuilder::new(self.handle.clone())
25    }
26}