| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.AppConfig.CreateApplication
Description
Creates an application. In AppConfig, an application is simply an organizational construct like a folder. This organizational construct has a relationship with some unit of executable code. For example, you could create an application called MyMobileApp to organize and manage configuration data for a mobile application installed by your users.
Synopsis
- data CreateApplication = CreateApplication' {}
 - newCreateApplication :: Text -> CreateApplication
 - createApplication_description :: Lens' CreateApplication (Maybe Text)
 - createApplication_tags :: Lens' CreateApplication (Maybe (HashMap Text Text))
 - createApplication_name :: Lens' CreateApplication Text
 - data Application = Application' {}
 - newApplication :: Application
 - application_description :: Lens' Application (Maybe Text)
 - application_id :: Lens' Application (Maybe Text)
 - application_name :: Lens' Application (Maybe Text)
 
Creating a Request
data CreateApplication Source #
See: newCreateApplication smart constructor.
Constructors
| CreateApplication' | |
Fields 
  | |
Instances
Arguments
| :: Text | |
| -> CreateApplication | 
Create a value of CreateApplication with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
CreateApplication, createApplication_description - A description of the application.
$sel:tags:CreateApplication', createApplication_tags - Metadata to assign to the application. Tags help organize and categorize
 your AppConfig resources. Each tag consists of a key and an optional
 value, both of which you define.
CreateApplication, createApplication_name - A name for the application.
Request Lenses
createApplication_description :: Lens' CreateApplication (Maybe Text) Source #
A description of the application.
createApplication_tags :: Lens' CreateApplication (Maybe (HashMap Text Text)) Source #
Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
createApplication_name :: Lens' CreateApplication Text Source #
A name for the application.
Destructuring the Response
data Application Source #
See: newApplication smart constructor.
Constructors
| Application' | |
Instances
newApplication :: Application Source #
Create a value of Application with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:description:Application', application_description - The description of the application.
$sel:id:Application', application_id - The application ID.
$sel:name:Application', application_name - The application name.
Response Lenses
application_description :: Lens' Application (Maybe Text) Source #
The description of the application.
application_id :: Lens' Application (Maybe Text) Source #
The application ID.
application_name :: Lens' Application (Maybe Text) Source #
The application name.