Class: Aws::BackupSearch::Types::StringCondition

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#operatorString

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.

Returns:

  • (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

#valueString

The value of the string.

Returns:

  • (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