Class: Aws::Backup::Types::RecoveryPointSelection

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#date_rangeTypes::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.

Returns:



7170
7171
7172
7173
7174
7175
7176
# File 'lib/aws-sdk-backup/types.rb', line 7170

class RecoveryPointSelection < Struct.new(
  :vault_names,
  :resource_identifiers,
  :date_range)
  SENSITIVE = []
  include Aws::Structure
end

#resource_identifiersArray<String>

These are the resources included in the resource selection (including type of resources and vaults).

Returns:

  • (Array<String>)


7170
7171
7172
7173
7174
7175
7176
# File 'lib/aws-sdk-backup/types.rb', line 7170

class RecoveryPointSelection < Struct.new(
  :vault_names,
  :resource_identifiers,
  :date_range)
  SENSITIVE = []
  include Aws::Structure
end

#vault_namesArray<String>

These are the names of the vaults in which the selected recovery points are contained.

Returns:

  • (Array<String>)


7170
7171
7172
7173
7174
7175
7176
# File 'lib/aws-sdk-backup/types.rb', line 7170

class RecoveryPointSelection < Struct.new(
  :vault_names,
  :resource_identifiers,
  :date_range)
  SENSITIVE = []
  include Aws::Structure
end