Class: Aws::CodeBuild::Types::BatchRestrictions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codebuild/types.rb

Overview

Specifies restrictions for the batch build.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#compute_types_allowedArray<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.

[1]: docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html

Returns:

  • (Array<String>)


250
251
252
253
254
255
# File 'lib/aws-sdk-codebuild/types.rb', line 250

class BatchRestrictions < Struct.new(
  :maximum_builds_allowed,
  :compute_types_allowed)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_builds_allowedInteger

Specifies the maximum number of builds allowed.

Returns:

  • (Integer)


250
251
252
253
254
255
# File 'lib/aws-sdk-codebuild/types.rb', line 250

class BatchRestrictions < Struct.new(
  :maximum_builds_allowed,
  :compute_types_allowed)
  SENSITIVE = []
  include Aws::Structure
end