| 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.CodeStar.Types.Toolchain
Description
Synopsis
Documentation
The toolchain template file provided with the project request. AWS CodeStar uses the template to provision the toolchain stack in AWS CloudFormation.
See: newToolchain smart constructor.
Constructors
| Toolchain' | |
Fields
| |
Instances
| ToJSON Toolchain Source # | |
Defined in Amazonka.CodeStar.Types.Toolchain | |
| Generic Toolchain Source # | |
| Show Toolchain Source # | |
| NFData Toolchain Source # | |
Defined in Amazonka.CodeStar.Types.Toolchain | |
| Eq Toolchain Source # | |
| Hashable Toolchain Source # | |
Defined in Amazonka.CodeStar.Types.Toolchain | |
| type Rep Toolchain Source # | |
Defined in Amazonka.CodeStar.Types.Toolchain type Rep Toolchain = D1 ('MetaData "Toolchain" "Amazonka.CodeStar.Types.Toolchain" "amazonka-codestar-2.0-J6u0QgMrENu7wBmwByxQnV" 'False) (C1 ('MetaCons "Toolchain'" 'PrefixI 'True) (S1 ('MetaSel ('Just "roleArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "stackParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text (Sensitive Text)))) :*: S1 ('MetaSel ('Just "source") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ToolchainSource)))) | |
Arguments
| :: ToolchainSource | |
| -> Toolchain |
Create a value of Toolchain 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:roleArn:Toolchain', toolchain_roleArn - The service role ARN for AWS CodeStar to use for the toolchain template
during stack provisioning.
$sel:stackParameters:Toolchain', toolchain_stackParameters - The list of parameter overrides to be passed into the toolchain template
during stack provisioning, if any.
$sel:source:Toolchain', toolchain_source - The Amazon S3 location where the toolchain template file provided with
the project request is stored. AWS CodeStar retrieves the file during
project creation.
toolchain_roleArn :: Lens' Toolchain (Maybe Text) Source #
The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.
toolchain_stackParameters :: Lens' Toolchain (Maybe (HashMap Text Text)) Source #
The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.
toolchain_source :: Lens' Toolchain ToolchainSource Source #
The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.