Class: Aws::IoTAnalytics::Types::ResourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTAnalytics::Types::ResourceConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iotanalytics/types.rb
Overview
The configuration of the resource used to execute the ‘containerAction`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_type ⇒ String
The type of the compute resource used to execute the ‘containerAction`.
-
#volume_size_in_gb ⇒ Integer
The size, in GB, of the persistent storage available to the resource instance used to execute the ‘containerAction` (min: 1, max: 50).
Instance Attribute Details
#compute_type ⇒ String
The type of the compute resource used to execute the ‘containerAction`. Possible values are: `ACU_1` (vCPU=4, memory=16 GiB) or `ACU_2` (vCPU=8, memory=32 GiB).
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2521 class ResourceConfiguration < Struct.new( :compute_type, :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |
#volume_size_in_gb ⇒ Integer
The size, in GB, of the persistent storage available to the resource instance used to execute the ‘containerAction` (min: 1, max: 50).
2521 2522 2523 2524 2525 2526 |
# File 'lib/aws-sdk-iotanalytics/types.rb', line 2521 class ResourceConfiguration < Struct.new( :compute_type, :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |