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 [`SendAlexaOfferToMaster`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`channel_arn(impl ::std::convert::Into<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::channel_arn) / [`set_channel_arn(Option<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::set_channel_arn): <p>The ARN of the signaling channel by which Alexa and the master peer communicate.</p>
    ///   - [`sender_client_id(impl ::std::convert::Into<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::sender_client_id) / [`set_sender_client_id(Option<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::set_sender_client_id): <p>The unique identifier for the sender client.</p>
    ///   - [`message_payload(impl ::std::convert::Into<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::message_payload) / [`set_message_payload(Option<String>)`](crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::set_message_payload): <p>The base64-encoded SDP offer content.</p>
    /// - On success, responds with [`SendAlexaOfferToMasterOutput`](crate::operation::send_alexa_offer_to_master::SendAlexaOfferToMasterOutput) with field(s):
    ///   - [`answer(Option<String>)`](crate::operation::send_alexa_offer_to_master::SendAlexaOfferToMasterOutput::answer): <p>The base64-encoded SDP answer content.</p>
    /// - On failure, responds with [`SdkError<SendAlexaOfferToMasterError>`](crate::operation::send_alexa_offer_to_master::SendAlexaOfferToMasterError)
    pub fn send_alexa_offer_to_master(
        &self,
    ) -> crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder
    {
        crate::operation::send_alexa_offer_to_master::builders::SendAlexaOfferToMasterFluentBuilder::new(self.handle.clone())
    }
}