Class: Aws::Billing::Types::StringSearch

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

Overview

A structure that defines how to search for string values. You can specify a search option and the value to search for.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#search_optionString

The type of search operation to perform on the string value. Determines how the search value is matched against the target field.

Returns:

  • (String)


750
751
752
753
754
755
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 750

class StringSearch < Struct.new(
  :search_option,
  :search_value)
  SENSITIVE = []
  include Aws::Structure
end

#search_valueString

The string value to use in the search operation. This value is compared against the target field using the specified search option.

Returns:

  • (String)


750
751
752
753
754
755
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 750

class StringSearch < Struct.new(
  :search_option,
  :search_value)
  SENSITIVE = []
  include Aws::Structure
end