aws_sdk_pinpoint/client/
create_app.rs

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