Class: Aws::EMRServerless::Types::ResourceUtilization
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRServerless::Types::ResourceUtilization
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrserverless/types.rb
Overview
The resource utilization for memory, storage, and vCPU for jobs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#memory_gb_hour ⇒ Float
The aggregated memory used per hour from the time the job starts executing until the job is terminated.
-
#storage_gb_hour ⇒ Float
The aggregated storage used per hour from the time the job starts executing until the job is terminated.
-
#v_cpu_hour ⇒ Float
The aggregated vCPU used per hour from the time the job starts executing until the job is terminated.
Instance Attribute Details
#memory_gb_hour ⇒ Float
The aggregated memory used per hour from the time the job starts executing until the job is terminated.
1448 1449 1450 1451 1452 1453 1454 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1448 class ResourceUtilization < Struct.new( :v_cpu_hour, :memory_gb_hour, :storage_gb_hour) SENSITIVE = [] include Aws::Structure end |
#storage_gb_hour ⇒ Float
The aggregated storage used per hour from the time the job starts executing until the job is terminated.
1448 1449 1450 1451 1452 1453 1454 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1448 class ResourceUtilization < Struct.new( :v_cpu_hour, :memory_gb_hour, :storage_gb_hour) SENSITIVE = [] include Aws::Structure end |
#v_cpu_hour ⇒ Float
The aggregated vCPU used per hour from the time the job starts executing until the job is terminated.
1448 1449 1450 1451 1452 1453 1454 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1448 class ResourceUtilization < Struct.new( :v_cpu_hour, :memory_gb_hour, :storage_gb_hour) SENSITIVE = [] include Aws::Structure end |