Class: Aws::BackupSearch::Types::BackupCreationTimeFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb

Overview

This filters by recovery points within the CreatedAfter and CreatedBefore timestamps.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#created_afterTime

This timestamp includes recovery points only created after the specified time.

Returns:

  • (Time)


42
43
44
45
46
47
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 42

class BackupCreationTimeFilter < Struct.new(
  :created_after,
  :created_before)
  SENSITIVE = []
  include Aws::Structure
end

#created_beforeTime

This timestamp includes recovery points only created before the specified time.

Returns:

  • (Time)


42
43
44
45
46
47
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 42

class BackupCreationTimeFilter < Struct.new(
  :created_after,
  :created_before)
  SENSITIVE = []
  include Aws::Structure
end