Class: Aws::Braket::Types::SearchJobsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::SearchJobsFilter
- Defined in:
- gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb
Overview
A filter used to search for Amazon Braket hybrid jobs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the hybrid job parameter to filter based on.
-
#operator ⇒ String
An operator to use for the filter.
-
#values ⇒ Array<String>
The values used to filter hybrid jobs based on the filter name and operator.
Instance Attribute Details
#name ⇒ String
The name of the hybrid job parameter to filter based on. Filter name
can be either jobArn
or createdAt
.
1315 1316 1317 1318 1319 1320 1321 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 1315 class SearchJobsFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
An operator to use for the filter.
1315 1316 1317 1318 1319 1320 1321 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 1315 class SearchJobsFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The values used to filter hybrid jobs based on the filter name and operator.
1315 1316 1317 1318 1319 1320 1321 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 1315 class SearchJobsFilter < Struct.new( :name, :values, :operator) SENSITIVE = [] include Aws::Structure end |