Ada lebih banyak AWS SDK contoh yang tersedia di GitHub repo SDKContoh AWS Dokumen
Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.
Gunakan DescribeSnapshotAttribute
dengan CLI
Contoh kode berikut menunjukkan cara menggunakanDescribeSnapshotAttribute
.
- CLI
-
- AWS CLI
-
Untuk mendeskripsikan atribut snapshot untuk snapshot
describe-snapshot-attribute
Contoh berikut mencantumkan akun yang digunakan untuk berbagi snapshot.aws ec2 describe-snapshot-attribute \ --snapshot-id
snap-01234567890abcedf
\ --attributecreateVolumePermission
Output:
{ "SnapshotId": "snap-01234567890abcedf", "CreateVolumePermissions": [ { "UserId": "123456789012" } ] }
Untuk informasi selengkapnya, lihat Membagikan EBS snapshot Amazon di Panduan Pengguna Amazon Elastic Compute Cloud.
-
Untuk API detailnya, lihat DescribeSnapshotAttribute
di Referensi AWS CLI Perintah.
-
- PowerShell
-
- Alat untuk PowerShell
-
Contoh 1: Contoh ini menjelaskan atribut tertentu dari snapshot yang ditentukan.
Get-EC2SnapshotAttribute -SnapshotId snap-12345678 -Attribute ProductCodes
Output:
CreateVolumePermissions ProductCodes SnapshotId ----------------------- ------------ ---------- {} {} snap-12345678
Contoh 2: Contoh ini menjelaskan atribut tertentu dari snapshot yang ditentukan.
(Get-EC2SnapshotAttribute -SnapshotId snap-12345678 -Attribute CreateVolumePermission).CreateVolumePermissions
Output:
Group UserId ----- ------ all
-
Untuk API detailnya, lihat DescribeSnapshotAttributedi AWS Tools for PowerShell Referensi Cmdlet.
-