Class: Aws::BackupSearch::Types::SearchScopeSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::SearchScopeSummary
- Defined in:
- gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb
Overview
The summary of the specified search job scope, including:
TotalBackupsToScanCount, the number of recovery points returned by the search.
TotalItemsToScanCount, the number of items returned by the search.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#total_items_to_scan_count ⇒ Integer
This is the count of the total number of items that will be scanned in a search.
-
#total_recovery_points_to_scan_count ⇒ Integer
This is the count of the total number of backups that will be scanned in a search.
Instance Attribute Details
#total_items_to_scan_count ⇒ Integer
This is the count of the total number of items that will be scanned in a search.
1131 1132 1133 1134 1135 1136 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 1131 class SearchScopeSummary < Struct.new( :total_recovery_points_to_scan_count, :total_items_to_scan_count) SENSITIVE = [] include Aws::Structure end |
#total_recovery_points_to_scan_count ⇒ Integer
This is the count of the total number of backups that will be scanned in a search.
1131 1132 1133 1134 1135 1136 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 1131 class SearchScopeSummary < Struct.new( :total_recovery_points_to_scan_count, :total_items_to_scan_count) SENSITIVE = [] include Aws::Structure end |