| 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.GetApplication
Description
Retrieves information about an application.
Synopsis
- data GetApplication = GetApplication' {}
 - newGetApplication :: Text -> GetApplication
 - getApplication_applicationId :: Lens' GetApplication 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 GetApplication Source #
See: newGetApplication smart constructor.
Constructors
| GetApplication' | |
Fields 
  | |
Instances
Arguments
| :: Text | |
| -> GetApplication | 
Create a value of GetApplication 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:
GetApplication, getApplication_applicationId - The ID of the application you want to get.
Request Lenses
getApplication_applicationId :: Lens' GetApplication Text Source #
The ID of the application you want to get.
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.