Class: Aws::EMR::Types::InstanceFleetTimeline

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-emr/types.rb

Overview

Provides historical timestamps for the instance fleet, including the time of creation, the time it became ready to run jobs, and the time of termination.

<note markdown=“1”> The instance fleet configuration is available only in Amazon EMR releases 4.8.0 and later, excluding 5.0.x versions.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#creation_date_timeTime

The time and date the instance fleet was created.

Returns:

  • (Time)


2682
2683
2684
2685
2686
2687
2688
# File 'lib/aws-sdk-emr/types.rb', line 2682

class InstanceFleetTimeline < Struct.new(
  :creation_date_time,
  :ready_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#end_date_timeTime

The time and date the instance fleet terminated.

Returns:

  • (Time)


2682
2683
2684
2685
2686
2687
2688
# File 'lib/aws-sdk-emr/types.rb', line 2682

class InstanceFleetTimeline < Struct.new(
  :creation_date_time,
  :ready_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#ready_date_timeTime

The time and date the instance fleet was ready to run jobs.

Returns:

  • (Time)


2682
2683
2684
2685
2686
2687
2688
# File 'lib/aws-sdk-emr/types.rb', line 2682

class InstanceFleetTimeline < Struct.new(
  :creation_date_time,
  :ready_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end