Interface CfnProject.ArtifactsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.ArtifactsProperty.Jsii$Proxy
- Enclosing class:
CfnProject
Artifacts
is a property of the AWS::CodeBuild::Project resource that specifies output settings for artifacts generated by an AWS CodeBuild build.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codebuild.*; ArtifactsProperty artifactsProperty = ArtifactsProperty.builder() .type("type") // the properties below are optional .artifactIdentifier("artifactIdentifier") .encryptionDisabled(false) .location("location") .name("name") .namespaceType("namespaceType") .overrideArtifactName(false) .packaging("packaging") .path("path") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnProject.ArtifactsProperty
static final class
An implementation forCfnProject.ArtifactsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
An identifier for this artifact definition.default Object
Set to true if you do not want your output artifacts encrypted.default String
Information about the build output artifact location:.default String
getName()
Along withpath
andnamespaceType
, the pattern that AWS CodeBuild uses to name and store the output artifact:.default String
Along withpath
andname
, the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact: - Iftype
is set toCODEPIPELINE
, CodePipeline ignores this value if specified.default Object
If set to true a name specified in the buildspec file overrides the artifact name.default String
The type of build output artifact to create:.default String
getPath()
Along withnamespaceType
andname
, the pattern that AWS CodeBuild uses to name and store the output artifact:.getType()
The type of build output artifact.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of build output artifact. Valid values include:.CODEPIPELINE
: The build project has build output generated through CodePipeline.
The
CODEPIPELINE
type is not supported forsecondaryArtifacts
.NO_ARTIFACTS
: The build project does not produce any build output.S3
: The build project stores build output in Amazon S3.
- See Also:
-
getArtifactIdentifier
An identifier for this artifact definition.- See Also:
-
getEncryptionDisabled
Set to true if you do not want your output artifacts encrypted.This option is valid only if your artifacts type is Amazon Simple Storage Service (Amazon S3). If this is set with another artifacts type, an
invalidInputException
is thrown.- See Also:
-
getLocation
Information about the build output artifact location:.- If
type
is set toCODEPIPELINE
, AWS CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of 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 name of the output bucket.
If you specify
CODEPIPELINE
orNO_ARTIFACTS
for theType
property, don't specify this property. For all of the other types, you must specify this property.- See Also:
- If
-
getName
Along withpath
andnamespaceType
, 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 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 name of the output artifact object. If you set the name to be a forward slash ("/"), the artifact is stored in the root of the output bucket.
For example:
- If
path
is set toMyArtifacts
,namespaceType
is set toBUILD_ID
, andname
is set toMyArtifact.zip
, then the output artifact is stored inMyArtifacts/ *build-ID* /MyArtifact.zip
. - If
path
is empty,namespaceType
is set toNONE
, andname
is set to "/
", the output artifact is stored in the root of the output bucket. - If
path
is set toMyArtifacts
,namespaceType
is set toBUILD_ID
, andname
is set to "/
", the output artifact is stored inMyArtifacts/ *build-ID*
.
If you specify
CODEPIPELINE
orNO_ARTIFACTS
for theType
property, don't specify this property. For all of the other types, you must specify this property.- See Also:
- If
-
getNamespaceType
Along withpath
andname
, the pattern that AWS CodeBuild uses to determine the name and location to store the output artifact: - Iftype
is set toCODEPIPELINE
, CodePipeline ignores this value if specified.This is because 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
, valid values include: BUILD_ID
: Include the build ID in the location of the build output artifact.NONE
: Do not include the build ID. This is the default ifnamespaceType
is not specified.
For example, if
path
is set toMyArtifacts
,namespaceType
is set toBUILD_ID
, andname
is set toMyArtifact.zip
, the output artifact is stored inMyArtifacts/<build-ID>/MyArtifact.zip
.- See Also:
- If
-
getOverrideArtifactName
If set to true a name specified in the buildspec file overrides the artifact name.The name specified in a buildspec file is calculated at build time and uses the Shell command language. For example, you can append a date and time to your artifact name so that it is always unique.
- See Also:
-
getPackaging
The type of build output artifact to create:.- If
type
is set toCODEPIPELINE
, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts 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
, valid values include: NONE
: AWS CodeBuild creates in the output bucket a folder that contains the build output. This is the default ifpackaging
is not specified.ZIP
: AWS CodeBuild creates in the output bucket a ZIP file that contains the build output.
- See Also:
- If
-
getPath
Along withnamespaceType
andname
, the pattern that AWS CodeBuild uses to name and store the output artifact:.- If
type
is set toCODEPIPELINE
, CodePipeline ignores this value if specified. This is because 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.
For example, if
path
is set toMyArtifacts
,namespaceType
is set toNONE
, andname
is set toMyArtifact.zip
, the output artifact is stored in the output bucket atMyArtifacts/MyArtifact.zip
.- See Also:
- If
-
builder
-