| 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.CodeBuild.Types.BuildGroup
Description
Synopsis
- data BuildGroup = BuildGroup' {}
- newBuildGroup :: BuildGroup
- buildGroup_currentBuildSummary :: Lens' BuildGroup (Maybe BuildSummary)
- buildGroup_dependsOn :: Lens' BuildGroup (Maybe [Text])
- buildGroup_identifier :: Lens' BuildGroup (Maybe Text)
- buildGroup_ignoreFailure :: Lens' BuildGroup (Maybe Bool)
- buildGroup_priorBuildSummaryList :: Lens' BuildGroup (Maybe [BuildSummary])
Documentation
data BuildGroup Source #
Contains information about a batch build build group. Build groups are used to combine builds that can run in parallel, while still being able to set dependencies on other build groups.
See: newBuildGroup smart constructor.
Constructors
| BuildGroup' | |
Fields
| |
Instances
newBuildGroup :: BuildGroup Source #
Create a value of BuildGroup 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:currentBuildSummary:BuildGroup', buildGroup_currentBuildSummary - A BuildSummary object that contains a summary of the current build
group.
$sel:dependsOn:BuildGroup', buildGroup_dependsOn - An array of strings that contain the identifiers of the build groups
that this build group depends on.
$sel:identifier:BuildGroup', buildGroup_identifier - Contains the identifier of the build group.
$sel:ignoreFailure:BuildGroup', buildGroup_ignoreFailure - Specifies if failures in this build group can be ignored.
$sel:priorBuildSummaryList:BuildGroup', buildGroup_priorBuildSummaryList - An array of BuildSummary objects that contain summaries of previous
build groups.
buildGroup_currentBuildSummary :: Lens' BuildGroup (Maybe BuildSummary) Source #
A BuildSummary object that contains a summary of the current build
group.
buildGroup_dependsOn :: Lens' BuildGroup (Maybe [Text]) Source #
An array of strings that contain the identifiers of the build groups that this build group depends on.
buildGroup_identifier :: Lens' BuildGroup (Maybe Text) Source #
Contains the identifier of the build group.
buildGroup_ignoreFailure :: Lens' BuildGroup (Maybe Bool) Source #
Specifies if failures in this build group can be ignored.
buildGroup_priorBuildSummaryList :: Lens' BuildGroup (Maybe [BuildSummary]) Source #
An array of BuildSummary objects that contain summaries of previous
build groups.