Class: Aws::Backup::Types::RecoveryPointSelection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::RecoveryPointSelection
- Includes:
- Structure
- Defined in:
- 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.
6810 6811 6812 6813 6814 6815 6816 |
# File 'lib/aws-sdk-backup/types.rb', line 6810 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).
6810 6811 6812 6813 6814 6815 6816 |
# File 'lib/aws-sdk-backup/types.rb', line 6810 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.
6810 6811 6812 6813 6814 6815 6816 |
# File 'lib/aws-sdk-backup/types.rb', line 6810 class RecoveryPointSelection < Struct.new( :vault_names, :resource_identifiers, :date_range) SENSITIVE = [] include Aws::Structure end |