

 Amazon Redshift は、パッチ 198 以降、新しい Python UDF の作成をサポートしなくなります。既存の Python UDF は、2026 年 6 月 30 日まで引き続き機能します。詳細については、[ブログ記事](https://aws.amazon.com/blogs/big-data/amazon-redshift-python-user-defined-functions-will-reach-end-of-support-after-june-30-2026/)を参照してください。

# DynamoDB のゼロ ETL 統合を変更する
<a name="zero-etl-managing.modify-integration-ddb"></a>

このステップでは、Amazon Redshift との DynamoDB ゼロ ETL 統合を変更します。

------
#### [ Amazon Redshift console ]

**Amazon Redshift コンソールを使用して Amazon DynamoDB ゼロ ETL 統合を変更するには**

1. Amazon Redshift コンソールから、**[ゼロ ETL 統合]**を選択します。ゼロ ETL 統合のリストがあるペインで、変更する DynamoDB 統合を選択します。

1. **[編集]** を選択し、**[統合名]** または **[説明]** を変更します。

1. **[変更を保存]** を選択して、変更を保存します。

------
#### [ AWS CLI ]

AWS CLI を使用して Amazon Redshift と Amazon DynamoDB のゼロ ETL 統合を変更するには、次のオプションで `modify-integration` コマンドを使用します。
+ `integration-arn` - 変更する DynamoDB 統合の ARN を指定します。
+ `integration-name` — 統合の新しい名前を指定します。
+ `description` — 統合の新しい説明を指定します。

次の例では、統合 ARN、新しい説明、および新しい名前を指定して統合を変更します。

```
aws redshift modify-integration \
--integration-arn arn:aws:redshift:us-east-1:123456789012:integration:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111 \
--description "Test modify description and name together." \
--integration-name "updated-integration-name-2"
      
{
    "IntegrationArn": "arn:aws:redshift:us-east-1:123456789012:integration:a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
    "IntegrationName": "updated-integration-name-2",
    "SourceArn": "arn:aws:dynamodb:us-east-1:123456789012:table/ddb-temp-test-table-table",
    "SourceType": "dynamodb",
    "TargetArn": "arn:aws:redshift:us-east-1:123456789012:namespace:a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
    "Status": "active",
    "Errors": [],
    "CreateTime": "2024-09-19T18:06:33.555Z",
    "Description": "Test modify description and name together.",
    "KMSKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333",
    "AdditionalEncryptionContext": {},
    "Tags": []
}
```

------