cdk notices - AWS Cloud Development Kit (AWS CDK) v2

Ini adalah Panduan Pengembang AWS CDK v2. CDKV1 yang lebih lama memasuki pemeliharaan pada 1 Juni 2022 dan mengakhiri dukungan pada 1 Juni 2023.

Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.

cdk notices

Tampilkan pemberitahuan untuk aplikasi CDK Anda.

Pemberitahuan dapat mencakup pesan penting mengenai kerentanan keamanan, regresi, dan penggunaan versi yang tidak didukung.

Perintah ini menampilkan pemberitahuan yang relevan, terlepas dari apakah mereka telah diakui atau tidak. Pemberitahuan yang relevan juga dapat muncul setelah setiap perintah secara default.

Anda dapat menekan pemberitahuan dengan cara berikut:

  • Melalui opsi perintah. Berikut adalah contohnya:

    $ cdk deploy --no-notices
  • Menekan semua pemberitahuan tanpa batas melalui konteks dalam file proyek: cdk.json

    { "notices": false, "context": { // ... } }
  • Akui setiap pemberitahuan dengan cdk acknowledge perintah.

Penggunaan

$ cdk notices <options>

Opsi

Untuk daftar opsi global yang berfungsi dengan semua CLI perintah CDK, lihatOpsi global.

--help, -h BOOLEAN

Tampilkan informasi referensi perintah untuk cdk notices perintah.

Contoh

Contoh pemberitahuan default yang ditampilkan setelah menjalankan perintah cdk deploy

$ cdk deploy ... # Normal output of the command NOTICES 16603 Toggling off auto_delete_objects for Bucket empties the bucket Overview: If a stack is deployed with an S3 bucket with auto_delete_objects=True, and then re-deployed with auto_delete_objects=False, all the objects in the bucket will be deleted. Affected versions: <1.126.0. More information at: https://github.com/aws/aws-cdk/issues/16603 17061 Error when building EKS cluster with monocdk import Overview: When using monocdk/aws-eks to build a stack containing an EKS cluster, error is thrown about missing lambda-layer-node-proxy-agent/layer/package.json. Affected versions: >=1.126.0 <=1.130.0. More information at: https://github.com/aws/aws-cdk/issues/17061 If you don’t want to see an notice anymore, use "cdk acknowledge ID". For example, "cdk acknowledge 16603"

Contoh sederhana menjalankan perintah pemberitahuan cdk

$ cdk notices NOTICES 16603 Toggling off auto_delete_objects for Bucket empties the bucket Overview: if a stack is deployed with an S3 bucket with auto_delete_objects=True, and then re-deployed with auto_delete_objects=False, all the objects in the bucket will be deleted. Affected versions: framework: <=2.15.0 >=2.10.0 More information at: https://github.com/aws/aws-cdk/issues/16603 If you don’t want to see a notice anymore, use "cdk acknowledge <id>". For example, "cdk acknowledge 16603"