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 |
Retrieve information about an application.
Synopsis
- data GetApplication = GetApplication' {}
- newGetApplication :: Text -> GetApplication
- getApplication_applicationId :: Lens' GetApplication 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 GetApplication Source #
See: newGetApplication
smart constructor.
GetApplication' | |
|
Instances
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:
$sel:applicationId: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.
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.