Class: Aws::Backup::Types::RecoveryPointSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::RecoveryPointSelection
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
This specifies criteria to assign a set of resources, such as resource types or backup vaults.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#date_range ⇒ Types::DateRange
This is a resource filter containing FromDate: DateTime and ToDate: DateTime.
-
#resource_identifiers ⇒ Array<String>
These are the resources included in the resource selection (including type of resources and vaults).
-
#vault_names ⇒ Array<String>
These are the names of the vaults in which the selected recovery points are contained.
Instance Attribute Details
#date_range ⇒ Types::DateRange
This is a resource filter containing FromDate: DateTime and ToDate: DateTime. Both values are required. Future DateTime values are not permitted.
The date and time are in Unix format and Coordinated Universal Time (UTC), and it is accurate to milliseconds ((milliseconds are optional). For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
8473 8474 8475 8476 8477 8478 8479 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8473 class RecoveryPointSelection < Struct.new( :vault_names, :resource_identifiers, :date_range) SENSITIVE = [] include Aws::Structure end |
#resource_identifiers ⇒ Array<String>
These are the resources included in the resource selection (including type of resources and vaults).
8473 8474 8475 8476 8477 8478 8479 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8473 class RecoveryPointSelection < Struct.new( :vault_names, :resource_identifiers, :date_range) SENSITIVE = [] include Aws::Structure end |
#vault_names ⇒ Array<String>
These are the names of the vaults in which the selected recovery points are contained.
8473 8474 8475 8476 8477 8478 8479 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8473 class RecoveryPointSelection < Struct.new( :vault_names, :resource_identifiers, :date_range) SENSITIVE = [] include Aws::Structure end |