| 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.ProjectDescription
Description
Synopsis
- data ProjectDescription = ProjectDescription' {
- arn :: Maybe Text
- description :: Maybe Text
- placementTemplate :: Maybe PlacementTemplate
- tags :: Maybe (HashMap Text Text)
- projectName :: Text
- createdDate :: POSIX
- updatedDate :: POSIX
- newProjectDescription :: Text -> UTCTime -> UTCTime -> ProjectDescription
- projectDescription_arn :: Lens' ProjectDescription (Maybe Text)
- projectDescription_description :: Lens' ProjectDescription (Maybe Text)
- projectDescription_placementTemplate :: Lens' ProjectDescription (Maybe PlacementTemplate)
- projectDescription_tags :: Lens' ProjectDescription (Maybe (HashMap Text Text))
- projectDescription_projectName :: Lens' ProjectDescription Text
- projectDescription_createdDate :: Lens' ProjectDescription UTCTime
- projectDescription_updatedDate :: Lens' ProjectDescription UTCTime
Documentation
data ProjectDescription Source #
An object providing detailed information for a particular project associated with an AWS account and region.
See: newProjectDescription smart constructor.
Constructors
| ProjectDescription' | |
Fields
| |
Instances
newProjectDescription Source #
Arguments
| :: Text | |
| -> UTCTime | |
| -> UTCTime | |
| -> ProjectDescription |
Create a value of ProjectDescription 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:ProjectDescription', projectDescription_arn - The ARN of the project.
$sel:description:ProjectDescription', projectDescription_description - The description of the project.
$sel:placementTemplate:ProjectDescription', projectDescription_placementTemplate - An object describing the project's placement specifications.
$sel:tags:ProjectDescription', projectDescription_tags - The tags (metadata key/value pairs) associated with the project.
$sel:projectName:ProjectDescription', projectDescription_projectName - The name of the project for which to obtain information from.
$sel:createdDate:ProjectDescription', projectDescription_createdDate - The date when the project was originally created, in UNIX epoch time
format.
$sel:updatedDate:ProjectDescription', projectDescription_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.
projectDescription_arn :: Lens' ProjectDescription (Maybe Text) Source #
The ARN of the project.
projectDescription_description :: Lens' ProjectDescription (Maybe Text) Source #
The description of the project.
projectDescription_placementTemplate :: Lens' ProjectDescription (Maybe PlacementTemplate) Source #
An object describing the project's placement specifications.
projectDescription_tags :: Lens' ProjectDescription (Maybe (HashMap Text Text)) Source #
The tags (metadata key/value pairs) associated with the project.
projectDescription_projectName :: Lens' ProjectDescription Text Source #
The name of the project for which to obtain information from.
projectDescription_createdDate :: Lens' ProjectDescription UTCTime Source #
The date when the project was originally created, in UNIX epoch time format.
projectDescription_updatedDate :: Lens' ProjectDescription 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.