aws-sdk-pinpoint 1.59.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 [`CreateApp`](crate::operation::create_app::builders::CreateAppFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`create_application_request(CreateApplicationRequest)`](crate::operation::create_app::builders::CreateAppFluentBuilder::create_application_request) / [`set_create_application_request(Option<CreateApplicationRequest>)`](crate::operation::create_app::builders::CreateAppFluentBuilder::set_create_application_request):<br>required: **true**<br><p>Specifies the display name of an application and the tags to associate with the application.</p><br>
    /// - On success, responds with [`CreateAppOutput`](crate::operation::create_app::CreateAppOutput) with field(s):
    ///   - [`application_response(Option<ApplicationResponse>)`](crate::operation::create_app::CreateAppOutput::application_response): <p>Provides information about an application.</p>
    /// - On failure, responds with [`SdkError<CreateAppError>`](crate::operation::create_app::CreateAppError)
    pub fn create_app(&self) -> crate::operation::create_app::builders::CreateAppFluentBuilder {
        crate::operation::create_app::builders::CreateAppFluentBuilder::new(self.handle.clone())
    }
}