- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Secure your Amazon Simple Queue Service (SQS) messages with server-side encryption.
Encryption ensures that Amazon SQS messages, which may contain sensitive data, are not available to anonymous or unauthorized users.
Follow the Configuring service-side encryption for a queue(console) docs to learn how to create and use AWS Key Management Service (AWS KMS) to manage customer master keys (CMK) for server-side encryption.
Define set-queue-attributes
in a file. Use your custom KMS Master Key ARN for KmsMasterKeyID
. Save the file.
{
"KmsMasterKeyId": "custom_key_arn",
"KmsDataKeyReusePeriodSeconds": "300"
}
Run set-queue-attributes
with the queue URL and the file created in step 1.
aws sqs set-queue-attributes
--queue-url https://us-west-2.queue.amazonaws.com/<insert-account-id>/<insert-sqs-queue-name>
--attributes file://sqs-sse-enabled.json