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

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

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:



6830
6831
6832
6833
6834
6835
6836
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6830

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>)


6830
6831
6832
6833
6834
6835
6836
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6830

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>)


6830
6831
6832
6833
6834
6835
6836
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 6830

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