Class: Aws::XRay::Types::GetInsightEventsRequest

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

{
  insight_id: "InsightId", # required
  max_results: 1,
  next_token: "Token",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#insight_idString

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

Returns:

  • (String)


884
885
886
887
888
889
890
# File 'lib/aws-sdk-xray/types.rb', line 884

class GetInsightEventsRequest < Struct.new(
  :insight_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#max_resultsInteger

Used to retrieve at most the specified value of events.

Returns:

  • (Integer)


884
885
886
887
888
889
890
# File 'lib/aws-sdk-xray/types.rb', line 884

class GetInsightEventsRequest < Struct.new(
  :insight_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#next_tokenString

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

Returns:

  • (String)


884
885
886
887
888
889
890
# File 'lib/aws-sdk-xray/types.rb', line 884

class GetInsightEventsRequest < Struct.new(
  :insight_id,
  :max_results,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end