Class: Aws::CodeBuild::Types::ComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ComputeConfiguration
- Defined in:
- gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb
Overview
Contains compute attributes. These attributes only need be specified
when your project's or fleet's computeType
is set to
ATTRIBUTE_BASED_COMPUTE
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disk ⇒ Integer
The amount of disk space of the instance type included in your fleet.
-
#machine_type ⇒ String
The machine type of the instance type included in your fleet.
-
#memory ⇒ Integer
The amount of memory of the instance type included in your fleet.
-
#v_cpu ⇒ Integer
The number of vCPUs of the instance type included in your fleet.
Instance Attribute Details
#disk ⇒ Integer
The amount of disk space of the instance type included in your fleet.
1464 1465 1466 1467 1468 1469 1470 1471 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1464 class ComputeConfiguration < Struct.new( :v_cpu, :memory, :disk, :machine_type) SENSITIVE = [] include Aws::Structure end |
#machine_type ⇒ String
The machine type of the instance type included in your fleet.
1464 1465 1466 1467 1468 1469 1470 1471 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1464 class ComputeConfiguration < Struct.new( :v_cpu, :memory, :disk, :machine_type) SENSITIVE = [] include Aws::Structure end |
#memory ⇒ Integer
The amount of memory of the instance type included in your fleet.
1464 1465 1466 1467 1468 1469 1470 1471 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1464 class ComputeConfiguration < Struct.new( :v_cpu, :memory, :disk, :machine_type) SENSITIVE = [] include Aws::Structure end |
#v_cpu ⇒ Integer
The number of vCPUs of the instance type included in your fleet.
1464 1465 1466 1467 1468 1469 1470 1471 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1464 class ComputeConfiguration < Struct.new( :v_cpu, :memory, :disk, :machine_type) SENSITIVE = [] include Aws::Structure end |