Class: Aws::XRay::Types::GetInsightImpactGraphRequest

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 GetInsightImpactGraphRequest data as a hash:

{
  insight_id: "InsightId", # required
  start_time: Time.now, # required
  end_time: Time.now, # required
  next_token: "Token",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeTime

The estimated end time of the insight, in Unix time seconds. The EndTime is exclusive of the value provided. The time range between the start time and end time can’t be more than six hours.

Returns:

  • (Time)


945
946
947
948
949
950
951
952
# File 'lib/aws-sdk-xray/types.rb', line 945

class GetInsightImpactGraphRequest < Struct.new(
  :insight_id,
  :start_time,
  :end_time,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#insight_idString

The insight’s unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

Returns:

  • (String)


945
946
947
948
949
950
951
952
# File 'lib/aws-sdk-xray/types.rb', line 945

class GetInsightImpactGraphRequest < Struct.new(
  :insight_id,
  :start_time,
  :end_time,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

Specify the pagination token returned by a previous request to retrieve the next page of results.

Returns:

  • (String)


945
946
947
948
949
950
951
952
# File 'lib/aws-sdk-xray/types.rb', line 945

class GetInsightImpactGraphRequest < Struct.new(
  :insight_id,
  :start_time,
  :end_time,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The estimated start time of the insight, in Unix time seconds. The StartTime is inclusive of the value provided and can’t be more than 30 days old.

Returns:

  • (Time)


945
946
947
948
949
950
951
952
# File 'lib/aws-sdk-xray/types.rb', line 945

class GetInsightImpactGraphRequest < Struct.new(
  :insight_id,
  :start_time,
  :end_time,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end