DynamoDB のゼロ ETL 統合を変更する - Amazon Redshift

DynamoDB のゼロ ETL 統合を変更する

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

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

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

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

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": [] }