Class: Aws::Appflow::Types::SourceFieldProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SourceFieldProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The properties that can be applied to a field when the connector is being used as a source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_queryable ⇒ Boolean
Indicates if the field can be queried.
-
#is_retrievable ⇒ Boolean
Indicates whether the field can be returned in a search result.
-
#is_timestamp_field_for_incremental_queries ⇒ Boolean
Indicates if this timestamp field can be used for incremental queries.
Instance Attribute Details
#is_queryable ⇒ Boolean
Indicates if the field can be queried.
5170 5171 5172 5173 5174 5175 5176 |
# File 'lib/aws-sdk-appflow/types.rb', line 5170 class SourceFieldProperties < Struct.new( :is_retrievable, :is_queryable, :is_timestamp_field_for_incremental_queries) SENSITIVE = [] include Aws::Structure end |
#is_retrievable ⇒ Boolean
Indicates whether the field can be returned in a search result.
5170 5171 5172 5173 5174 5175 5176 |
# File 'lib/aws-sdk-appflow/types.rb', line 5170 class SourceFieldProperties < Struct.new( :is_retrievable, :is_queryable, :is_timestamp_field_for_incremental_queries) SENSITIVE = [] include Aws::Structure end |
#is_timestamp_field_for_incremental_queries ⇒ Boolean
Indicates if this timestamp field can be used for incremental queries.
5170 5171 5172 5173 5174 5175 5176 |
# File 'lib/aws-sdk-appflow/types.rb', line 5170 class SourceFieldProperties < Struct.new( :is_retrievable, :is_queryable, :is_timestamp_field_for_incremental_queries) SENSITIVE = [] include Aws::Structure end |