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 data store query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_after ⇒ Time
A filter that allows the user to set cutoff dates for records.
-
#created_before ⇒ Time
A filter that allows the user to set cutoff dates for records.
-
#datastore_name ⇒ String
Allows the user to filter data store results by name.
-
#datastore_status ⇒ String
Allows the user to filter data store results by status.
Instance Attribute Details
#created_after ⇒ Time
A filter that allows the user to set cutoff dates for records. All data stores created after the specified date will be included in the results.
145 146 147 148 149 150 151 152 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 145 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#created_before ⇒ Time
A filter that allows the user to set cutoff dates for records. All data stores created before the specified date will be included in the results.
145 146 147 148 149 150 151 152 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 145 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#datastore_name ⇒ String
Allows the user to filter data store results by name.
145 146 147 148 149 150 151 152 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 145 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |
#datastore_status ⇒ String
Allows the user to filter data store results by status.
145 146 147 148 149 150 151 152 |
# File 'gems/aws-sdk-healthlake/lib/aws-sdk-healthlake/types.rb', line 145 class DatastoreFilter < Struct.new( :datastore_name, :datastore_status, :created_before, :created_after) SENSITIVE = [] include Aws::Structure end |