Class: Aws::FIS::Types::ListActionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FIS::Types::ListActionsRequest
- Defined in:
- gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb
Overview
Note:
When making an API call, you may pass ListActionsRequest data as a hash:
{
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return with a single call.
-
#next_token ⇒ String
The token for the next page of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return with a single call. To
retrieve the remaining results, make another call with the returned
nextToken
value.
1319 1320 1321 1322 1323 1324 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1319 class ListActionsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next page of results.
1319 1320 1321 1322 1323 1324 |
# File 'gems/aws-sdk-fis/lib/aws-sdk-fis/types.rb', line 1319 class ListActionsRequest < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |