Class: Aws::CodeBuild::Types::ProjectArtifacts
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ProjectArtifacts
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Information about the build output artifacts for the build project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#artifact_identifier ⇒ String
An identifier for this artifact definition.
-
#bucket_owner_access ⇒ String
Specifies the bucket owner's access for objects that another account uploads to their Amazon S3 bucket.
-
#encryption_disabled ⇒ Boolean
Set to true if you do not want your output artifacts encrypted.
-
#location ⇒ String
Information about the build output artifact location:.
-
#name ⇒ String
Along with
pathandnamespaceType, the pattern that CodeBuild uses to name and store the output artifact:. -
#namespace_type ⇒ String
Along with
pathandname, the pattern that CodeBuild uses to determine the name and location to store the output artifact:. -
#override_artifact_name ⇒ Boolean
If this flag is set, a name specified in the buildspec file overrides the artifact name.
-
#packaging ⇒ String
The type of build output artifact to create:.
-
#path ⇒ String
Along with
namespaceTypeandname, the pattern that CodeBuild uses to name and store the output artifact:. -
#type ⇒ String
The type of build output artifact.
Instance Attribute Details
#artifact_identifier ⇒ String
An identifier for this artifact definition.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#bucket_owner_access ⇒ String
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.
s3:PutBucketAcl permission. This permission allows CodeBuild to
modify the access control list for the bucket.
This property can be one of the following values:
- NONE
The bucket owner does not have access to the objects. This is the default.
- READ_ONLY
The bucket owner has read-only access to the objects. The uploading account retains ownership of the objects.
- FULL
The bucket owner has full access to the objects. Object ownership is determined by the following criteria:
If the bucket is configured with the Bucket owner preferred setting, the bucket owner owns the objects. The uploading account will have object access as specified by the bucket's policy.
Otherwise, the uploading account retains ownership of the objects.
For more information about Amazon S3 object ownership, see Controlling ownership of uploaded objects using S3 Object Ownership in the Amazon Simple Storage Service User Guide.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#encryption_disabled ⇒ Boolean
Set to true if you do not want your output artifacts encrypted. This option is valid only if your artifacts type is Amazon S3. If this is set with another artifacts type, an invalidInputException is thrown.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
Information about the build output artifact location:
If
typeis set toCODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output locations instead of CodeBuild.If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced.If
typeis set toS3, this is the name of the output bucket.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Along with path and namespaceType, the pattern that CodeBuild
uses to name and store the output artifact:
If
typeis set toCODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced.If
typeis 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
pathis set toMyArtifacts,namespaceTypeis set toBUILD_ID, andnameis set toMyArtifact.zip, then the output artifact is stored inMyArtifacts/<build-ID>/MyArtifact.zip.If
pathis empty,namespaceTypeis set toNONE, andnameis set to "/", the output artifact is stored in the root of the output bucket.If
pathis set toMyArtifacts,namespaceTypeis set toBUILD_ID, andnameis set to "/", the output artifact is stored inMyArtifacts/<build-ID>.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#namespace_type ⇒ String
Along with path and name, the pattern that CodeBuild uses to
determine the name and location to store the output artifact:
If
typeis set toCODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced.If
typeis 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 ifnamespaceTypeis not specified.
For example, if path is set to MyArtifacts, namespaceType is
set to BUILD_ID, and name is set to MyArtifact.zip, the output
artifact is stored in MyArtifacts/<build-ID>/MyArtifact.zip.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#override_artifact_name ⇒ Boolean
If this flag is set, 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.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#packaging ⇒ String
The type of build output artifact to create:
If
typeis set toCODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output artifacts instead of CodeBuild.If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced.If
typeis set toS3, valid values include:NONE: CodeBuild creates in the output bucket a folder that contains the build output. This is the default ifpackagingis not specified.ZIP: CodeBuild creates in the output bucket a ZIP file that contains the build output.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#path ⇒ String
Along with namespaceType and name, the pattern that CodeBuild
uses to name and store the output artifact:
If
typeis set toCODEPIPELINE, CodePipeline ignores this value if specified. This is because CodePipeline manages its build output names instead of CodeBuild.If
typeis set toNO_ARTIFACTS, this value is ignored if specified, because no build output is produced.If
typeis set toS3, this is the path to the output artifact. Ifpathis not specified,pathis not used.
For example, if 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.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of build output artifact. Valid values include:
CODEPIPELINE: The build project has build output generated through CodePipeline.The CODEPIPELINEtype 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.
4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4775 class ProjectArtifacts < Struct.new( :type, :location, :path, :namespace_type, :name, :packaging, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |