aws_sdk_amplifybackend/client/
create_backend_config.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 [`CreateBackendConfig`](crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`app_id(impl Into<String>)`](crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder::set_app_id):<br>required: **true**<br><p>The app ID.</p><br>
7    ///   - [`backend_manager_app_id(impl Into<String>)`](crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder::backend_manager_app_id) / [`set_backend_manager_app_id(Option<String>)`](crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder::set_backend_manager_app_id):<br>required: **false**<br><p>The app ID for the backend manager.</p><br>
8    /// - On success, responds with [`CreateBackendConfigOutput`](crate::operation::create_backend_config::CreateBackendConfigOutput) with field(s):
9    ///   - [`app_id(Option<String>)`](crate::operation::create_backend_config::CreateBackendConfigOutput::app_id): <p>The app ID.</p>
10    ///   - [`backend_environment_name(Option<String>)`](crate::operation::create_backend_config::CreateBackendConfigOutput::backend_environment_name): <p>The name of the backend environment.</p>
11    ///   - [`job_id(Option<String>)`](crate::operation::create_backend_config::CreateBackendConfigOutput::job_id): <p>The ID for the job.</p>
12    ///   - [`status(Option<String>)`](crate::operation::create_backend_config::CreateBackendConfigOutput::status): <p>The current status of the request.</p>
13    /// - On failure, responds with [`SdkError<CreateBackendConfigError>`](crate::operation::create_backend_config::CreateBackendConfigError)
14    pub fn create_backend_config(&self) -> crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder {
15        crate::operation::create_backend_config::builders::CreateBackendConfigFluentBuilder::new(self.handle.clone())
16    }
17}