View a markdown version of this page

DynamoDB에 대한 제로 ETL 통합 수정 - Amazon Redshift

Amazon Redshift는 2026년 6월 30일 이후에 Python UDF 사용을 더 이상 지원하지 않습니다. 해당 조치는 단계적으로 시행될 예정입니다. Python 수명 종료 및 마이그레이션 옵션에 대한 자세한 내용은 2025년 6월 30일에 게시된 블로그 게시물을 참조하세요.

DynamoDB에 대한 제로 ETL 통합 수정

이 단계에서는 Amazon Redshift와의 DynamoDB 제로 ETL 통합을 수정합니다.

Amazon Redshift console
Amazon Redshift 콘솔을 사용하여 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": [] }