

# 连接到 Smartsheet
<a name="connecting-to-smartsheet"></a>

Smartsheet 是一款旨在协助工作管理和协作的 SaaS 产品。从根本上讲，Smartsheet 允许用户使用类似电子表格的对象来创建、存储和利用业务数据。

**Topics**
+ [AWS Glue 支持 SmartSheet](smartsheet-support.md)
+ [包含创建和使用连接的 API 操作的策略](smartsheet-configuring-iam-permissions.md)
+ [配置 Smartsheet](smartsheet-configuring.md)
+ [配置 Smartsheet 连接](smartsheet-configuring-connections.md)
+ [从 Smartsheet 实体读取内容](smartsheet-reading-from-entities.md)
+ [Smartsheet 连接选项](smartsheet-connection-options.md)
+ [创建 Smartsheet 账户](smartsheet-create-account.md)
+ [限制](smartsheet-connector-limitations.md)

**具有动态元数据的实体**：

对于以下实体，Smartsheet 提供用于动态获取元数据的端点，以便在数据类型级别捕获运算符支持。


| 实体 |  数据类型  | 支持的运算符 | 
| --- | --- | --- | 
| 工作表数据 | 字符串 | NA | 
| 工作表数据 | 长整型 | "=" | 
| 工作表数据 | 整数 | NA | 
| 工作表数据 | 日期时间 | > | 

 **示例** 

```
Smartsheet_read = glueContext.create_dynamic_frame.from_options(
    connection_type="smartsheet",
    connection_options={
        "connectionName": "connectionName",
        "ENTITY_NAME": "list-sheets",
        "API_VERSION": "2.0",
        "INSTANCE_URL": "https://api.smartsheet.com"
    }
```