Class: Aws::XRay::Types::GetServiceGraphRequest

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

Overview

Note:

When making an API call, you may pass GetServiceGraphRequest data as a hash:

{
  start_time: Time.now, # required
  end_time: Time.now, # required
  next_token: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The end of the time frame for which to generate a graph.

Returns:

  • (Time)


291
292
293
294
295
296
# File 'lib/aws-sdk-xray/types.rb', line 291

class GetServiceGraphRequest < Struct.new(
  :start_time,
  :end_time,
  :next_token)
  include Aws::Structure
end

#next_tokenString

Pagination token. Not used.

Returns:

  • (String)


291
292
293
294
295
296
# File 'lib/aws-sdk-xray/types.rb', line 291

class GetServiceGraphRequest < Struct.new(
  :start_time,
  :end_time,
  :next_token)
  include Aws::Structure
end

#start_timeTime

The start of the time frame for which to generate a graph.

Returns:

  • (Time)


291
292
293
294
295
296
# File 'lib/aws-sdk-xray/types.rb', line 291

class GetServiceGraphRequest < Struct.new(
  :start_time,
  :end_time,
  :next_token)
  include Aws::Structure
end