Class: Aws::SecurityIR::Types::ListCaseEditsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::ListCaseEditsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityir/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#case_id ⇒ String
Required element used with ListCaseEdits to identify the case to query.
-
#max_results ⇒ Integer
Optional element to identify how many results to obtain.
-
#next_token ⇒ String
An optional string that, if supplied, must be copied from the output of a previous call to ListCaseEdits.
Instance Attribute Details
#case_id ⇒ String
Required element used with ListCaseEdits to identify the case to query.
997 998 999 1000 1001 1002 1003 |
# File 'lib/aws-sdk-securityir/types.rb', line 997 class ListCaseEditsRequest < Struct.new( :next_token, :max_results, :case_id) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Optional element to identify how many results to obtain. There is a maximum value of 25.
997 998 999 1000 1001 1002 1003 |
# File 'lib/aws-sdk-securityir/types.rb', line 997 class ListCaseEditsRequest < Struct.new( :next_token, :max_results, :case_id) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An optional string that, if supplied, must be copied from the output of a previous call to ListCaseEdits. When provided in this manner, the API fetches the next page of results.
997 998 999 1000 1001 1002 1003 |
# File 'lib/aws-sdk-securityir/types.rb', line 997 class ListCaseEditsRequest < Struct.new( :next_token, :max_results, :case_id) SENSITIVE = [] include Aws::Structure end |