_aws_profile Input Column
The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( "type" VARCHAR, "name" VARCHAR, "account_id" VARCHAR, "via_profile_name" VARCHAR, "assumed_role_arn" VARCHAR, "organization" STRUCT( "account_name" VARCHAR, "id" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[], "master_account" STRUCT( "id" VARCHAR, "email" VARCHAR ), "parents" STRUCT( "type" VARCHAR, "id" VARCHAR, "name" VARCHAR, "tags" STRUCT( "key" VARCHAR, "value" VARCHAR )[] )[] ) ) |
connector_entity_fields
Describes the fields for that connector entity. For example, for an account entity, the fields would be account name, account ID, and so on. | STRUCT( "identifier" VARCHAR, "parent_identifier" VARCHAR, "label" VARCHAR, "is_primary_key" BOOLEAN, "default_value" VARCHAR, "is_deprecated" BOOLEAN, "supported_field_type_details" STRUCT( "v1" STRUCT( "field_type" VARCHAR, "filter_operators" VARCHAR[], "supported_values" VARCHAR[], "value_regex_pattern" VARCHAR, "supported_date_format" VARCHAR, "field_value_range" STRUCT( "maximum" DOUBLE, "minimum" DOUBLE ), "field_length_range" STRUCT( "maximum" DOUBLE, "minimum" DOUBLE ) ) ), "description" VARCHAR, "source_properties" STRUCT( "is_retrievable" BOOLEAN, "is_queryable" BOOLEAN, "is_timestamp_field_for_incremental_queries" BOOLEAN ), "destination_properties" STRUCT( "is_creatable" BOOLEAN, "is_nullable" BOOLEAN, "is_upsertable" BOOLEAN, "is_updatable" BOOLEAN, "is_defaulted_on_create" BOOLEAN, "supported_write_operations" VARCHAR[] ), "custom_properties" MAP(VARCHAR, VARCHAR) )[] |
Show child fields- connector_entity_fields[]
Show child fields- connector_entity_fields[].custom_properties
A map that has specific properties related to the ConnectorEntityField.
- connector_entity_fields[].default_value
Default value that can be assigned to this field.
- connector_entity_fields[].description
A description of the connector entity field.
- connector_entity_fields[].destination_properties
The properties applied to a field when the connector is being used as a destination. Show child fields- connector_entity_fields[].destination_properties.is_creatable
Specifies if the destination field can be created by the current user.
- connector_entity_fields[].destination_properties.is_defaulted_on_create
Specifies whether the field can use the default value during a Create operation.
- connector_entity_fields[].destination_properties.is_nullable
Specifies if the destination field can have a null value.
- connector_entity_fields[].destination_properties.is_updatable
Specifies whether the field can be updated during an UPDATE or UPSERT write operation.
- connector_entity_fields[].destination_properties.is_upsertable
Specifies if the flow run can either insert new rows in the destination field if they do not already exist, or update them if they do.
- connector_entity_fields[].destination_properties.supported_write_operations[]
- connector_entity_fields[].identifier
The unique identifier of the connector field.
- connector_entity_fields[].is_deprecated
Booelan value that indicates whether this field is deprecated or not.
- connector_entity_fields[].is_primary_key
Booelan value that indicates whether this field can be used as a primary key.
- connector_entity_fields[].label
The label applied to a connector entity field.
- connector_entity_fields[].parent_identifier
The parent identifier of the connector field.
- connector_entity_fields[].source_properties
The properties that can be applied to a field when the connector is being used as a source. Show child fields- connector_entity_fields[].source_properties.is_queryable
Indicates if the field can be queried.
- connector_entity_fields[].source_properties.is_retrievable
Indicates whether the field can be returned in a search result.
- connector_entity_fields[].source_properties.is_timestamp_field_for_incremental_queries
Indicates if this timestamp field can be used for incremental queries.
- connector_entity_fields[].supported_field_type_details
Contains details regarding the supported FieldType, including the corresponding filterOperators and supportedValues. Show child fields- connector_entity_fields[].supported_field_type_details.v1
The initial supported version for fieldType. If this is later changed to a different version, v2 will be introduced. Show child fields- connector_entity_fields[].supported_field_type_details.v1.field_length_range
This is the allowable length range for this field's value. Show child fields- connector_entity_fields[].supported_field_type_details.v1.field_length_range.maximum
Maximum value supported by the field.
- connector_entity_fields[].supported_field_type_details.v1.field_length_range.minimum
Minimum value supported by the field.
- connector_entity_fields[].supported_field_type_details.v1.field_type
The type of field, such as string, integer, date, and so on.
- connector_entity_fields[].supported_field_type_details.v1.field_value_range
The range of values this field can hold. Show child fields- connector_entity_fields[].supported_field_type_details.v1.field_value_range.maximum
Maximum value supported by the field.
- connector_entity_fields[].supported_field_type_details.v1.field_value_range.minimum
Minimum value supported by the field.
- connector_entity_fields[].supported_field_type_details.v1.filter_operators[]
- connector_entity_fields[].supported_field_type_details.v1.supported_date_format
The date format that the field supports.
- connector_entity_fields[].supported_field_type_details.v1.supported_values[]
- connector_entity_fields[].supported_field_type_details.v1.value_regex_pattern
The regular expression pattern for the field name.
|