Class: Aws::Amplify::Types::JobConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::JobConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
Describes the configuration details that apply to the jobs for an Amplify app.
Use JobConfig to apply configuration to jobs, such as customizing the build instance size when you create or update an Amplify app. For more information about customizable build instances, see [Custom build instances] in the *Amplify User Guide*.
[1]: docs.aws.amazon.com/amplify/latest/userguide/custom-build-instance.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#build_compute_type ⇒ String
Specifies the size of the build instance.
Instance Attribute Details
#build_compute_type ⇒ String
Specifies the size of the build instance. Amplify supports three instance sizes: STANDARD_8GB, LARGE_16GB, and XLARGE_72GB. If you don’t specify a value, Amplify uses the STANDARD_8GB default.
The following list describes the CPU, memory, and storage capacity for each build instance type:
STANDARD_8GB : * vCPUs: 4
* Memory: 8 GiB
* Disk space: 128 GB
LARGE_16GB : * vCPUs: 8
* Memory: 16 GiB
* Disk space: 128 GB
XLARGE_72GB : * vCPUs: 36
* Memory: 72 GiB
* Disk space: 256 GB
1986 1987 1988 1989 1990 |
# File 'lib/aws-sdk-amplify/types.rb', line 1986 class JobConfig < Struct.new( :build_compute_type) SENSITIVE = [] include Aws::Structure end |