Class: Aws::BackupSearch::Types::StringCondition
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::StringCondition
- Defined in:
- gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb
Overview
This contains the value of the string and can contain one or more operators.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#operator ⇒ String
A string that defines what values will be returned.
-
#value ⇒ String
The value of the string.
Instance Attribute Details
#operator ⇒ String
A string that defines what values will be returned.
If this is included, avoid combinations of operators that will
return all possible values. For example, including both EQUALS_TO
and NOT_EQUALS_TO
with a value of 4
will return all values.
1341 1342 1343 1344 1345 1346 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 1341 class StringCondition < Struct.new( :value, :operator) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the string.
1341 1342 1343 1344 1345 1346 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 1341 class StringCondition < Struct.new( :value, :operator) SENSITIVE = [] include Aws::Structure end |