path property
Along with namespaceType
and name
, the pattern
that AWS CodeBuild uses to name and store the output artifact:
-
If
type
is set toCODEPIPELINE
, AWS CodePipeline ignores this value if specified. This is because AWS CodePipeline manages its build output names instead of AWS CodeBuild. -
If
type
is set toNO_ARTIFACTS
, this value is ignored if specified, because no build output is produced. -
If
type
is set toS3
, this is the path to the output artifact. Ifpath
is not specified,path
is not used.
path
is set to MyArtifacts
,
namespaceType
is set to NONE
, and
name
is set to MyArtifact.zip
, the output artifact
is stored in the output bucket at MyArtifacts/MyArtifact.zip
.
Implementation
final String? path;