Class: Aws::Appflow::Types::FieldTypeDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::FieldTypeDetails
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Contains details regarding the supported field type and the operators that can be applied for filtering.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_type ⇒ String
The type of field, such as string, integer, date, and so on.
-
#filter_operators ⇒ Array<String>
The list of operators supported by a field.
-
#supported_values ⇒ Array<String>
The list of values that a field can contain.
Instance Attribute Details
#field_type ⇒ String
The type of field, such as string, integer, date, and so on.
2494 2495 2496 2497 2498 2499 2500 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2494 class FieldTypeDetails < Struct.new( :field_type, :filter_operators, :supported_values) SENSITIVE = [] include Aws::Structure end |
#filter_operators ⇒ Array<String>
The list of operators supported by a field.
2494 2495 2496 2497 2498 2499 2500 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2494 class FieldTypeDetails < Struct.new( :field_type, :filter_operators, :supported_values) SENSITIVE = [] include Aws::Structure end |
#supported_values ⇒ Array<String>
The list of values that a field can contain. For example, a Boolean
fieldType
can have two values: "true" and "false".
2494 2495 2496 2497 2498 2499 2500 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2494 class FieldTypeDetails < Struct.new( :field_type, :filter_operators, :supported_values) SENSITIVE = [] include Aws::Structure end |