| 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.IoT1ClickProjects.Types.ProjectSummary
Description
Synopsis
- data ProjectSummary = ProjectSummary' {
- arn :: Maybe Text
- tags :: Maybe (HashMap Text Text)
- projectName :: Text
- createdDate :: POSIX
- updatedDate :: POSIX
- newProjectSummary :: Text -> UTCTime -> UTCTime -> ProjectSummary
- projectSummary_arn :: Lens' ProjectSummary (Maybe Text)
- projectSummary_tags :: Lens' ProjectSummary (Maybe (HashMap Text Text))
- projectSummary_projectName :: Lens' ProjectSummary Text
- projectSummary_createdDate :: Lens' ProjectSummary UTCTime
- projectSummary_updatedDate :: Lens' ProjectSummary UTCTime
Documentation
data ProjectSummary Source #
An object providing summary information for a particular project for an associated AWS account and region.
See: newProjectSummary smart constructor.
Constructors
| ProjectSummary' | |
Fields
| |
Instances
Arguments
| :: Text | |
| -> UTCTime | |
| -> UTCTime | |
| -> ProjectSummary |
Create a value of ProjectSummary 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:arn:ProjectSummary', projectSummary_arn - The ARN of the project.
$sel:tags:ProjectSummary', projectSummary_tags - The tags (metadata key/value pairs) associated with the project.
$sel:projectName:ProjectSummary', projectSummary_projectName - The name of the project being summarized.
$sel:createdDate:ProjectSummary', projectSummary_createdDate - The date when the project was originally created, in UNIX epoch time
format.
$sel:updatedDate:ProjectSummary', projectSummary_updatedDate - The date when the project was last updated, in UNIX epoch time format.
If the project was not updated, then createdDate and updatedDate are
the same.
projectSummary_arn :: Lens' ProjectSummary (Maybe Text) Source #
The ARN of the project.
projectSummary_tags :: Lens' ProjectSummary (Maybe (HashMap Text Text)) Source #
The tags (metadata key/value pairs) associated with the project.
projectSummary_projectName :: Lens' ProjectSummary Text Source #
The name of the project being summarized.
projectSummary_createdDate :: Lens' ProjectSummary UTCTime Source #
The date when the project was originally created, in UNIX epoch time format.
projectSummary_updatedDate :: Lens' ProjectSummary UTCTime Source #
The date when the project was last updated, in UNIX epoch time format.
If the project was not updated, then createdDate and updatedDate are
the same.