Class: Aws::Backup::Types::ListReportPlansInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ListReportPlansInput
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Note:
When making an API call, you may pass ListReportPlansInput data as a hash:
{
max_results: 1,
next_token: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The number of desired results from 1 to 1000.
-
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Instance Attribute Details
#max_results ⇒ Integer
The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.
4692 4693 4694 4695 4696 4697 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 4692 class ListReportPlansInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
4692 4693 4694 4695 4696 4697 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 4692 class ListReportPlansInput < Struct.new( :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |