Class: Aws::CodeBuild::Types::ProjectBuildBatchConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ProjectBuildBatchConfig
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Contains configuration information about a batch build project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#batch_report_mode ⇒ String
Specifies how build status reports are sent to the source provider for the batch build.
-
#combine_artifacts ⇒ Boolean
Specifies if the build artifacts for the batch build should be combined into a single artifact location.
-
#restrictions ⇒ Types::BatchRestrictions
A
BatchRestrictions
object that specifies the restrictions for the batch build. -
#service_role ⇒ String
Specifies the service role ARN for the batch build project.
-
#timeout_in_mins ⇒ Integer
Specifies the maximum amount of time, in minutes, that the batch build must be completed in.
Instance Attribute Details
#batch_report_mode ⇒ String
Specifies how build status reports are sent to the source provider for the batch build. This property is only used when the source provider for your project is Bitbucket, GitHub, or GitHub Enterprise, and your project is configured to report build statuses to the source provider.
- REPORT_AGGREGATED_BATCH
(Default) Aggregate all of the build statuses into a single status report.
- REPORT_INDIVIDUAL_BUILDS
Send a separate status report for each individual build.
4219 4220 4221 4222 4223 4224 4225 4226 4227 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4219 class ProjectBuildBatchConfig < Struct.new( :service_role, :combine_artifacts, :restrictions, :timeout_in_mins, :batch_report_mode) SENSITIVE = [] include Aws::Structure end |
#combine_artifacts ⇒ Boolean
Specifies if the build artifacts for the batch build should be combined into a single artifact location.
4219 4220 4221 4222 4223 4224 4225 4226 4227 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4219 class ProjectBuildBatchConfig < Struct.new( :service_role, :combine_artifacts, :restrictions, :timeout_in_mins, :batch_report_mode) SENSITIVE = [] include Aws::Structure end |
#restrictions ⇒ Types::BatchRestrictions
A BatchRestrictions
object that specifies the restrictions for the
batch build.
4219 4220 4221 4222 4223 4224 4225 4226 4227 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4219 class ProjectBuildBatchConfig < Struct.new( :service_role, :combine_artifacts, :restrictions, :timeout_in_mins, :batch_report_mode) SENSITIVE = [] include Aws::Structure end |
#service_role ⇒ String
Specifies the service role ARN for the batch build project.
4219 4220 4221 4222 4223 4224 4225 4226 4227 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4219 class ProjectBuildBatchConfig < Struct.new( :service_role, :combine_artifacts, :restrictions, :timeout_in_mins, :batch_report_mode) SENSITIVE = [] include Aws::Structure end |
#timeout_in_mins ⇒ Integer
Specifies the maximum amount of time, in minutes, that the batch build must be completed in.
4219 4220 4221 4222 4223 4224 4225 4226 4227 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 4219 class ProjectBuildBatchConfig < Struct.new( :service_role, :combine_artifacts, :restrictions, :timeout_in_mins, :batch_report_mode) SENSITIVE = [] include Aws::Structure end |