aws-sdk-pinpoint 0.37.0

AWS SDK for Amazon Pinpoint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetApp`](crate::operation::get_app::builders::GetAppFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::get_app::builders::GetAppFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::get_app::builders::GetAppFluentBuilder::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>
    /// - On success, responds with [`GetAppOutput`](crate::operation::get_app::GetAppOutput) with field(s):
    ///   - [`application_response(Option<ApplicationResponse>)`](crate::operation::get_app::GetAppOutput::application_response): <p>Provides information about an application.</p>
    /// - On failure, responds with [`SdkError<GetAppError>`](crate::operation::get_app::GetAppError)
    pub fn get_app(&self) -> crate::operation::get_app::builders::GetAppFluentBuilder {
        crate::operation::get_app::builders::GetAppFluentBuilder::new(self.handle.clone())
    }
}