aws-sdk-securityhub 1.110.0

AWS SDK for AWS SecurityHub
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeProductsV2`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::set_next_token):<br>required: **false**<br><p>The token required for pagination. On your first call, set the value of this parameter to <code>NULL</code>. For subsequent calls, to continue listing data, set the value of this parameter to the value returned in the previous response.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return.</p><br>
    /// - On success, responds with [`DescribeProductsV2Output`](crate::operation::describe_products_v2::DescribeProductsV2Output) with field(s):
    ///   - [`products_v2(Option<Vec::<ProductV2>>)`](crate::operation::describe_products_v2::DescribeProductsV2Output::products_v2): <p>Gets information about the product integration.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_products_v2::DescribeProductsV2Output::next_token): <p>The pagination token to use to request the next page of results. Otherwise, this parameter is null.</p>
    /// - On failure, responds with [`SdkError<DescribeProductsV2Error>`](crate::operation::describe_products_v2::DescribeProductsV2Error)
    pub fn describe_products_v2(&self) -> crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder {
        crate::operation::describe_products_v2::builders::DescribeProductsV2FluentBuilder::new(self.handle.clone())
    }
}