Class: Aws::IoTAnalytics::Types::ResourceConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotanalytics/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

Instance Attribute Details

#compute_typeString

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).

Returns:

  • (String)


2521
2522
2523
2524
2525
2526
# File 'gems/aws-sdk-iotanalytics/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_gbInteger

The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction (min: 1, max: 50).

Returns:

  • (Integer)


2521
2522
2523
2524
2525
2526
# File 'gems/aws-sdk-iotanalytics/lib/aws-sdk-iotanalytics/types.rb', line 2521

class ResourceConfiguration < Struct.new(
  :compute_type,
  :volume_size_in_gb)
  SENSITIVE = []
  include Aws::Structure
end