- 重要な情報
- はじめに
- 用語集
- ガイド
- エージェント
- インテグレーション
- OpenTelemetry
- 開発者
- API
- CoScreen
- アプリ内
- Service Management
- インフラストラクチャー
- アプリケーションパフォーマンス
- 継続的インテグレーション
- ログ管理
- セキュリティ
- UX モニタリング
- 管理
Secure Amazon Elastic Block Store (EBS) snapshots.
Publicly shared Amazon EBS volume snapshots contain sensitive application data that can be seen, copied, and exploited.
Follow the AWS Share a snapshot documentation to learn how to modify snapshot sharing for both the console and the command line.
Enter the following command with your snapshot ID to remove global sharing.
aws ec2 modify-snapshot-attribute \
--snapshot-id 1234567890abcdef0 \
--attribute createVolumePermission \
--operation-type remove \
--group-names all
Run the follow command with your snapshot ID to share a snapshot with a specific user ID.
aws ec2 modify-snapshot-attribute \
--snapshot-id 1234567890abcdef0 \
--attribute createVolumePermission \
--operation-type add \
--user-ids 123456789012