@aws-sdk/client-acm-pca 3.746.0 → 3.748.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -652,25 +652,37 @@ export interface CrlConfiguration {
652
652
  */
653
653
  CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration | undefined;
654
654
  /**
655
- * <p>Choose whether to use a partitioned or complete CRL. Your choice determines the maximum number of certificates that the certificate authority can issue and revoke, as described in the <a href="https://docs.aws.amazon.com/general/latest/gr/pca.html#limits_pca-connector-ad">Amazon Web Services Private CA quotas</a>.</p>
655
+ * <p>Specifies whether to create a complete or partitioned CRL. This setting determines the maximum
656
+ * number of certificates that the certificate authority can issue and revoke. For more information, see
657
+ * <a href="privateca/latest/userguide/pca.html#limits_pca">Amazon Web Services Private CA quotas</a>.</p>
656
658
  * <ul>
657
659
  * <li>
658
660
  * <p>
659
- * <code>PARTITIONED</code> - The default setting. Partitioned CRLs are an especially good option for devices that have limited processing power or storage capacity, such as certain IoT devices. Compared to complete CRLs, partitioned CRLs dramatically increase the number of certificates your private CA can issue. Each certificate that Amazon Web Services Private CA issues is bound to a specific CRL partition through the CRL distribution point (CDP) defined in <a href="https://datatracker.ietf.org/doc/html/rfc5280">RFC 5280</a>.</p>
660
- * <important>
661
- * <p>To make sure that your client fetches the CRL from a valid endpoint, we recommend that you programmatically validate that the CRL's issuing distribution point (IDP) URI matches the certificate's CDP URI. Amazon Web Services Private CA marks the IDP extension as critical, which your client must be able to process.</p>
662
- * </important>
661
+ * <code>COMPLETE</code> - The default setting. Amazon Web Services Private CA maintains a single CRL file for all unexpired
662
+ * certificates issued by a CA that have been revoked for any reason. Each certificate that Amazon Web Services Private CA
663
+ * issues is bound to a specific CRL through its CRL distribution point (CDP) extension, defined in <a href="https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.9">
664
+ * RFC 5280</a>.</p>
663
665
  * </li>
664
666
  * <li>
665
667
  * <p>
666
- * <code>COMPLETE</code> - Amazon Web Services Private CA maintains a single CRL file for all unexpired certificates issued by a CA that have been revoked for any reason.</p>
668
+ * <code>PARTITIONED</code> - Compared to complete CRLs, partitioned CRLs
669
+ * dramatically increase the number of certificates your private CA can issue. </p>
670
+ * <important>
671
+ * <p> When using partitioned CRLs, you must validate that the CRL's associated
672
+ * issuing distribution point (IDP) URI matches the certificate's CDP URI to ensure
673
+ * the right CRL has been fetched. Amazon Web Services Private CA marks the IDP extension as critical,
674
+ * which your client must be able to process.
675
+ * </p>
676
+ * </important>
667
677
  * </li>
668
678
  * </ul>
669
679
  * @public
670
680
  */
671
681
  CrlType?: CrlType | undefined;
672
682
  /**
673
- * <p>Designates a custom file path in S3 for CRL(s). For example, <code>http://&lt;CustomName&gt;/&lt;CustomPath&gt;/&lt;CrlPartition_GUID&gt;.crl</code>. You can change the custom path up to five times.</p>
683
+ * <p>Designates a custom file path in S3 for CRL(s). For example, <code>http://&lt;CustomName&gt;/
684
+ * &lt;CustomPath&gt;/&lt;CrlPartition_GUID&gt;.crl</code>.
685
+ * </p>
674
686
  * @public
675
687
  */
676
688
  CustomPath?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-acm-pca",
3
3
  "description": "AWS SDK for JavaScript Acm Pca Client for Node.js, Browser and React Native",
4
- "version": "3.746.0",
4
+ "version": "3.748.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-acm-pca",