Class: Aws::Billing::Types::StringSearch
- Inherits:
-
Struct
- Object
- Struct
- Aws::Billing::Types::StringSearch
- 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
-
#search_option ⇒ String
The type of search operation to perform on the string value.
-
#search_value ⇒ String
The string value to use in the search operation.
Instance Attribute Details
#search_option ⇒ String
The type of search operation to perform on the string value. Determines how the search value is matched against the target field.
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_value ⇒ String
The string value to use in the search operation. This value is compared against the target field using the specified search option.
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 |