1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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 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):<br>required: **true**<br><p>The ARN of the signaling channel by which Alexa and the master peer communicate.</p><br>
    ///   - [`sender_client_id(impl 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):<br>required: **true**<br><p>The unique identifier for the sender client.</p><br>
    ///   - [`message_payload(impl 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):<br>required: **true**<br><p>The base64-encoded SDP offer content.</p><br>
    /// - 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())
    }
}