Class: Aws::Detective::Types::ListInvestigationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Detective::Types::ListInvestigationsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-detective/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#investigation_details ⇒ Array<Types::InvestigationDetail>
Lists the summary of uncommon behavior or malicious activity which indicates a compromise.
-
#next_token ⇒ String
Lists if there are more results available.
Instance Attribute Details
#investigation_details ⇒ Array<Types::InvestigationDetail>
Lists the summary of uncommon behavior or malicious activity which indicates a compromise.
1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-detective/types.rb', line 1062 class ListInvestigationsResponse < Struct.new( :investigation_details, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Lists if there are more results available. The value of nextToken is a unique pagination token for each page. Repeat the call using the returned token to retrieve the next page. Keep all other arguments unchanged.
Each pagination token expires after 24 hours.
1062 1063 1064 1065 1066 1067 |
# File 'lib/aws-sdk-detective/types.rb', line 1062 class ListInvestigationsResponse < Struct.new( :investigation_details, :next_token) SENSITIVE = [] include Aws::Structure end |