Class: Aws::States::Types::BillingDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::BillingDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
An object that describes workflow billing details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#billed_duration_in_milliseconds ⇒ Integer
Billed duration of your workflow, in milliseconds.
-
#billed_memory_used_in_mb ⇒ Integer
Billed memory consumption of your workflow, in MB.
Instance Attribute Details
#billed_duration_in_milliseconds ⇒ Integer
Billed duration of your workflow, in milliseconds.
249 250 251 252 253 254 |
# File 'lib/aws-sdk-states/types.rb', line 249 class BillingDetails < Struct.new( :billed_memory_used_in_mb, :billed_duration_in_milliseconds) SENSITIVE = [] include Aws::Structure end |
#billed_memory_used_in_mb ⇒ Integer
Billed memory consumption of your workflow, in MB.
249 250 251 252 253 254 |
# File 'lib/aws-sdk-states/types.rb', line 249 class BillingDetails < Struct.new( :billed_memory_used_in_mb, :billed_duration_in_milliseconds) SENSITIVE = [] include Aws::Structure end |