1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetSMSAttributes`](crate::operation::get_sms_attributes::builders::GetSMSAttributesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`attributes(Vec<String>)`](crate::operation::get_sms_attributes::builders::GetSMSAttributesFluentBuilder::attributes) / [`set_attributes(Option<Vec<String>>)`](crate::operation::get_sms_attributes::builders::GetSMSAttributesFluentBuilder::set_attributes): <p>A list of the individual attribute names, such as <code>MonthlySpendLimit</code>, for which you want values.</p>  <p>For all attribute names, see <a href="https://docs.aws.amazon.com/sns/latest/api/API_SetSMSAttributes.html">SetSMSAttributes</a>.</p>  <p>If you don't use this parameter, Amazon SNS returns all SMS attributes.</p>
    /// - On success, responds with [`GetSmsAttributesOutput`](crate::operation::get_sms_attributes::GetSmsAttributesOutput) with field(s):
    ///   - [`attributes(Option<HashMap<String, String>>)`](crate::operation::get_sms_attributes::GetSmsAttributesOutput::attributes): <p>The SMS attribute names and their values.</p>
    /// - On failure, responds with [`SdkError<GetSMSAttributesError>`](crate::operation::get_sms_attributes::GetSMSAttributesError)
    pub fn get_sms_attributes(
        &self,
    ) -> crate::operation::get_sms_attributes::builders::GetSMSAttributesFluentBuilder {
        crate::operation::get_sms_attributes::builders::GetSMSAttributesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}