Class: Aws::States::Types::BillingDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-states/lib/aws-sdk-states/types.rb

Overview

An object that describes workflow billing details.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#billed_duration_in_millisecondsInteger

Billed duration of your workflow, in milliseconds.

Returns:

  • (Integer)


236
237
238
239
240
241
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 236

class BillingDetails < Struct.new(
  :billed_memory_used_in_mb,
  :billed_duration_in_milliseconds)
  SENSITIVE = []
  include Aws::Structure
end

#billed_memory_used_in_mbInteger

Billed memory consumption of your workflow, in MB.

Returns:

  • (Integer)


236
237
238
239
240
241
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 236

class BillingDetails < Struct.new(
  :billed_memory_used_in_mb,
  :billed_duration_in_milliseconds)
  SENSITIVE = []
  include Aws::Structure
end