ProjectArtifacts

data class ProjectArtifacts(val artifactIdentifier: String? = null, val bucketOwnerAccess: String? = null, val encryptionDisabled: Boolean? = null, val location: String? = null, val name: String? = null, val namespaceType: String? = null, val overrideArtifactName: Boolean? = null, val packaging: String? = null, val path: String? = null, val type: String)

Constructors

Link copied to clipboard
constructor(artifactIdentifier: String? = null, bucketOwnerAccess: String? = null, encryptionDisabled: Boolean? = null, location: String? = null, name: String? = null, namespaceType: String? = null, overrideArtifactName: Boolean? = null, packaging: String? = null, path: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Artifact identifier. Must be the same specified inside the AWS CodeBuild build specification.

Link copied to clipboard

Specifies the bucket owner's access for objects that another account uploads to their Amazon S3 bucket. By default, only the account that uploads the objects to the bucket has access to these objects. This property allows you to give the bucket owner access to these objects. Valid values are NONE, READ_ONLY, and FULL. your CodeBuild service role must have the s3:PutBucketAcl permission. This permission allows CodeBuild to modify the access control list for the bucket.

Link copied to clipboard

Whether to disable encrypting output artifacts. If type is set to NO_ARTIFACTS, this value is ignored. Defaults to false.

Link copied to clipboard
val location: String? = null

Information about the build output artifact location. If type is set to CODEPIPELINE or NO_ARTIFACTS, this value is ignored. If type is set to S3, this is the name of the output bucket.

Link copied to clipboard
val name: String? = null

Name of the project. If type is set to S3, this is the name of the output artifact object

Link copied to clipboard
val namespaceType: String? = null

Namespace to use in storing build artifacts. If type is set to S3, then valid values are BUILD_ID, NONE.

Link copied to clipboard

Whether a name specified in the build specification overrides the artifact name.

Link copied to clipboard
val packaging: String? = null

Type of build output artifact to create. If type is set to S3, valid values are NONE, ZIP

Link copied to clipboard
val path: String? = null

If type is set to S3, this is the path to the output artifact.

Link copied to clipboard

Build output artifact's type. Valid values: CODEPIPELINE, NO_ARTIFACTS, S3.