Class: Aws::CodeBuild::Types::BuildArtifacts
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::BuildArtifacts
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Information about build output artifacts.
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
Information that tells you if encryption for build artifacts is disabled.
-
#location ⇒ String
Information about the location of the build artifacts.
-
#md5sum ⇒ String
The MD5 hash of the build artifact.
-
#override_artifact_name ⇒ Boolean
If this flag is set, a name specified in the buildspec file overrides the artifact name.
-
#sha256sum ⇒ String
The SHA-256 hash of the build artifact.
Instance Attribute Details
#artifact_identifier ⇒ String
An identifier for this artifact definition.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :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.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#encryption_disabled ⇒ Boolean
Information that tells you if encryption for build artifacts is disabled.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#location ⇒ String
Information about the location of the build artifacts.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#md5sum ⇒ String
The MD5 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
packaging
value is set to ZIP
.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :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.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |
#sha256sum ⇒ String
The SHA-256 hash of the build artifact.
You can use this hash along with a checksum tool to confirm file integrity and authenticity.
packaging
value is set to ZIP
.
653 654 655 656 657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 653 class BuildArtifacts < Struct.new( :location, :sha256sum, :md5sum, :override_artifact_name, :encryption_disabled, :artifact_identifier, :bucket_owner_access) SENSITIVE = [] include Aws::Structure end |