Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
An application in AppConfig is a logical unit of code that provides capabilities for your customers. For example, an application can be a microservice that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless application using Amazon API Gateway and AWS Lambda, or any system you run on behalf of others.
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_name :: Lens' Application (Maybe Text)
- application_id :: Lens' Application (Maybe Text)
- application_description :: Lens' Application (Maybe Text)
Creating a Request
data CreateApplication Source #
See: newCreateApplication
smart constructor.
CreateApplication' | |
|
Instances
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:
$sel:description: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.
$sel:name: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.
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:name:Application'
, application_name
- The application name.
$sel:id:Application'
, application_id
- The application ID.
$sel:description:Application'
, application_description
- The description of the application.
Response Lenses
application_name :: Lens' Application (Maybe Text) Source #
The application name.
application_id :: Lens' Application (Maybe Text) Source #
The application ID.
application_description :: Lens' Application (Maybe Text) Source #
The description of the application.