@aws-sdk/client-ssm 3.301.0 → 3.306.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.
@@ -372,13 +372,18 @@ export interface UpdateDocumentDefaultVersionResult {
372
372
  }
373
373
  /**
374
374
  * @public
375
+ * @enum
375
376
  */
376
- export declare enum DocumentReviewAction {
377
- Approve = "Approve",
378
- Reject = "Reject",
379
- SendForReview = "SendForReview",
380
- UpdateReview = "UpdateReview"
381
- }
377
+ export declare const DocumentReviewAction: {
378
+ readonly Approve: "Approve";
379
+ readonly Reject: "Reject";
380
+ readonly SendForReview: "SendForReview";
381
+ readonly UpdateReview: "UpdateReview";
382
+ };
383
+ /**
384
+ * @public
385
+ */
386
+ export type DocumentReviewAction = (typeof DocumentReviewAction)[keyof typeof DocumentReviewAction];
382
387
  /**
383
388
  * @public
384
389
  * <p>Information about a document approval review.</p>