Class: Aws::CodeBuild::Types::BatchRestrictions
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::BatchRestrictions
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Specifies restrictions for the batch build.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_types_allowed ⇒ Array<String>
An array of strings that specify the compute types that are allowed for the batch build.
-
#maximum_builds_allowed ⇒ Integer
Specifies the maximum number of builds allowed.
Instance Attribute Details
#compute_types_allowed ⇒ Array<String>
An array of strings that specify the compute types that are allowed for the batch build. See Build environment compute types in the CodeBuild User Guide for these values.
286 287 288 289 290 291 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 286 class BatchRestrictions < Struct.new( :maximum_builds_allowed, :compute_types_allowed) SENSITIVE = [] include Aws::Structure end |
#maximum_builds_allowed ⇒ Integer
Specifies the maximum number of builds allowed.
286 287 288 289 290 291 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 286 class BatchRestrictions < Struct.new( :maximum_builds_allowed, :compute_types_allowed) SENSITIVE = [] include Aws::Structure end |