Skip to content

Get Integration Table Properties

glue_get_integration_table_properties R Documentation

This API is used to retrieve optional override properties for the tables that need to be replicated

Description

This API is used to retrieve optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partition for source and target tables.

Usage

glue_get_integration_table_properties(ResourceArn, TableName)

Arguments

ResourceArn

[required] The connection ARN of the source, or the database ARN of the target.

TableName

[required] The name of the table to be replicated.

Value

A list with the following syntax:

list(
  ResourceArn = "string",
  TableName = "string",
  SourceTableConfig = list(
    Fields = list(
      "string"
    ),
    FilterPredicate = "string",
    PrimaryKey = list(
      "string"
    ),
    RecordUpdateField = "string"
  ),
  TargetTableConfig = list(
    UnnestSpec = "TOPLEVEL"|"FULL"|"NOUNNEST",
    PartitionSpec = list(
      list(
        FieldName = "string",
        FunctionSpec = "string"
      )
    ),
    TargetTableName = "string"
  )
)

Request syntax

svc$get_integration_table_properties(
  ResourceArn = "string",
  TableName = "string"
)