Class: Aws::Appflow::Types::SourceFieldProperties

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#is_queryableBoolean

Indicates if the field can be queried.

Returns:

  • (Boolean)


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_retrievableBoolean

Indicates whether the field can be returned in a search result.

Returns:

  • (Boolean)


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_queriesBoolean

Indicates if this timestamp field can be used for incremental queries.

Returns:

  • (Boolean)


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