aws-sdk-pinpointsmsvoicev2 1.124.0

AWS SDK for Amazon Pinpoint SMS Voice V2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeNotifyTemplates`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`template_ids(impl Into<String>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::template_ids) / [`set_template_ids(Option<Vec::<String>>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::set_template_ids):<br>required: **false**<br><p>An array of template IDs to describe.</p><br>
    ///   - [`filters(NotifyTemplateFilter)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::filters) / [`set_filters(Option<Vec::<NotifyTemplateFilter>>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::set_filters):<br>required: **false**<br><p>An array of NotifyTemplateFilter objects to filter the results on.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::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_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return per each request.</p><br>
    /// - On success, responds with [`DescribeNotifyTemplatesOutput`](crate::operation::describe_notify_templates::DescribeNotifyTemplatesOutput) with field(s):
    ///   - [`notify_templates(Option<Vec::<NotifyTemplateInformation>>)`](crate::operation::describe_notify_templates::DescribeNotifyTemplatesOutput::notify_templates): <p>An array of NotifyTemplateInformation objects that contain the results.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::describe_notify_templates::DescribeNotifyTemplatesOutput::next_token): <p>The token to be used for the next set of paginated results. If this field is empty then there are no more results.</p>
    /// - On failure, responds with [`SdkError<DescribeNotifyTemplatesError>`](crate::operation::describe_notify_templates::DescribeNotifyTemplatesError)
    pub fn describe_notify_templates(&self) -> crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder {
        crate::operation::describe_notify_templates::builders::DescribeNotifyTemplatesFluentBuilder::new(self.handle.clone())
    }
}