aws-sdk-pinpoint 0.28.0

AWS SDK for Amazon Pinpoint
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 [`GetInAppMessages`](crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl ::std::convert::Into<String>)`](crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder::set_application_id): <p>The unique identifier for the application. This identifier is displayed as the <b>Project ID</b> on the Amazon Pinpoint console.</p>
    ///   - [`endpoint_id(impl ::std::convert::Into<String>)`](crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder::endpoint_id) / [`set_endpoint_id(Option<String>)`](crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder::set_endpoint_id): <p>The unique identifier for the endpoint.</p>
    /// - On success, responds with [`GetInAppMessagesOutput`](crate::operation::get_in_app_messages::GetInAppMessagesOutput) with field(s):
    ///   - [`in_app_messages_response(Option<InAppMessagesResponse>)`](crate::operation::get_in_app_messages::GetInAppMessagesOutput::in_app_messages_response): <p>Get in-app messages response object.</p>
    /// - On failure, responds with [`SdkError<GetInAppMessagesError>`](crate::operation::get_in_app_messages::GetInAppMessagesError)
    pub fn get_in_app_messages(
        &self,
    ) -> crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder {
        crate::operation::get_in_app_messages::builders::GetInAppMessagesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}