Class: Aws::Connect::Types::StringCondition

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

A leaf node condition which can be used to specify a string condition.

The currently supported values for FieldName are name and description.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#comparison_typeString

The type of comparison to be made when evaluating the string condition.

Returns:

  • (String)


17859
17860
17861
17862
17863
17864
17865
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17859

class StringCondition < Struct.new(
  :field_name,
  :value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#field_nameString

The name of the field in the string condition.

Returns:

  • (String)


17859
17860
17861
17862
17863
17864
17865
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17859

class StringCondition < Struct.new(
  :field_name,
  :value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the string.

Returns:

  • (String)


17859
17860
17861
17862
17863
17864
17865
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17859

class StringCondition < Struct.new(
  :field_name,
  :value,
  :comparison_type)
  SENSITIVE = []
  include Aws::Structure
end