aws-sdk-pinpointsmsvoicev2 1.124.0

AWS SDK for Amazon Pinpoint SMS Voice V2
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeProtectConfigurations`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`protect_configuration_ids(impl Into<String>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::protect_configuration_ids) / [`set_protect_configuration_ids(Option<Vec::<String>>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::set_protect_configuration_ids):<br>required: **false**<br><p>An array of protect configuration identifiers to search for.</p><br>
    ///   - [`filters(ProtectConfigurationFilter)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::filters) / [`set_filters(Option<Vec::<ProtectConfigurationFilter>>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::set_filters):<br>required: **false**<br><p>An array of ProtectConfigurationFilter objects to filter the results.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.</p><br>
    ///   - [`max_results(i32)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per each request.</p><br>
    /// - On success, responds with [`DescribeProtectConfigurationsOutput`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsOutput) with field(s):
    ///   - [`protect_configurations(Option<Vec::<ProtectConfigurationInformation>>)`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsOutput::protect_configurations): <p>An array of ProtectConfigurationInformation objects that contain the details for the request.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsOutput::next_token): <p>The token to be used for the next set of paginated results. You don't need to supply a value for this field in the initial request.</p>
    /// - On failure, responds with [`SdkError<DescribeProtectConfigurationsError>`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsError)
    pub fn describe_protect_configurations(
        &self,
    ) -> crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder {
        crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::new(self.handle.clone())
    }
}