Class: Aws::HealthLake::Types::DatastoreFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::HealthLake::Types::DatastoreFilter
- Defined in:
- gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb
Overview
The filters applied to a data store query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_after ⇒ Time
Filter to set cutoff dates for records.
-
#created_before ⇒ Time
Filter to set cutoff dates for records.
-
#datastore_name ⇒ String
Filter data store results by name.
-
#datastore_status ⇒ String
Filter data store results by status.
Instance Attribute Details
#created_after ⇒ Time
Filter to set cutoff dates for records. All data stores created after the specified date are included in the results.
138 139 140 141 142 143 144 145 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 138 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#created_before ⇒ Time
Filter to set cutoff dates for records. All data stores created before the specified date are included in the results.
138 139 140 141 142 143 144 145 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 138 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#datastore_name ⇒ String
Filter data store results by name.
138 139 140 141 142 143 144 145 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 138 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#datastore_status ⇒ String
Filter data store results by status.
138 139 140 141 142 143 144 145 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 138 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |