aws_sdk_pinpointsmsvoicev2/client/describe_protect_configurations.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 [`DescribeProtectConfigurations`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`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>
8 /// - [`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>
9 /// - [`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>
10 /// - [`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>
11 /// - On success, responds with [`DescribeProtectConfigurationsOutput`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsOutput) with field(s):
12 /// - [`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>
13 /// - [`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>
14 /// - On failure, responds with [`SdkError<DescribeProtectConfigurationsError>`](crate::operation::describe_protect_configurations::DescribeProtectConfigurationsError)
15 pub fn describe_protect_configurations(
16 &self,
17 ) -> crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder {
18 crate::operation::describe_protect_configurations::builders::DescribeProtectConfigurationsFluentBuilder::new(self.handle.clone())
19 }
20}