aws-sdk-pinpoint 1.37.0

AWS SDK for Amazon Pinpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateSmsChannel`](crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder::set_application_id):<br>required: **true**<br><p>The unique identifier for the application. This identifier is displayed as the <b>Project ID</b> on the Amazon Pinpoint console.</p><br>
    ///   - [`sms_channel_request(SmsChannelRequest)`](crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder::sms_channel_request) / [`set_sms_channel_request(Option<SmsChannelRequest>)`](crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder::set_sms_channel_request):<br>required: **true**<br><p>Specifies the status and settings of the SMS channel for an application.</p><br>
    /// - On success, responds with [`UpdateSmsChannelOutput`](crate::operation::update_sms_channel::UpdateSmsChannelOutput) with field(s):
    ///   - [`sms_channel_response(Option<SmsChannelResponse>)`](crate::operation::update_sms_channel::UpdateSmsChannelOutput::sms_channel_response): <p>Provides information about the status and settings of the SMS channel for an application.</p>
    /// - On failure, responds with [`SdkError<UpdateSmsChannelError>`](crate::operation::update_sms_channel::UpdateSmsChannelError)
    pub fn update_sms_channel(&self) -> crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder {
        crate::operation::update_sms_channel::builders::UpdateSmsChannelFluentBuilder::new(self.handle.clone())
    }
}