@aws-sdk/client-ssm 3.52.0 → 3.53.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.
@@ -1,6 +1,7 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { LoggingInfo, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskParameterValueExpression, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, OpsItemStatus, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchRuleGroup, PatchSource, RelatedOpsItem, ResourceDataSyncSource, Target } from "./models_0";
3
3
  import { InventoryFilter, InventoryGroup, MaintenanceWindowTaskInvocationParameters, OpsFilter, OpsResultAttribute, ResultAttribute } from "./models_1";
4
+ import { SSMServiceException as __BaseException } from "./SSMServiceException";
4
5
  export interface UpdateDocumentMetadataResponse {
5
6
  }
6
7
  export declare namespace UpdateDocumentMetadataResponse {
@@ -608,10 +609,13 @@ export declare namespace UpdateOpsItemResponse {
608
609
  * <p>The OpsMetadata object exceeds the maximum number of OpsMetadata keys that you can assign to
609
610
  * an application in Application Manager.</p>
610
611
  */
611
- export interface OpsMetadataKeyLimitExceededException extends __SmithyException, $MetadataBearer {
612
- name: "OpsMetadataKeyLimitExceededException";
613
- $fault: "client";
614
- message?: string;
612
+ export declare class OpsMetadataKeyLimitExceededException extends __BaseException {
613
+ readonly name: "OpsMetadataKeyLimitExceededException";
614
+ readonly $fault: "client";
615
+ /**
616
+ * @internal
617
+ */
618
+ constructor(opts: __ExceptionOptionType<OpsMetadataKeyLimitExceededException, __BaseException>);
615
619
  }
616
620
  export interface UpdateOpsMetadataRequest {
617
621
  /**
@@ -810,10 +814,14 @@ export declare namespace UpdatePatchBaselineResult {
810
814
  * <p>Another <code>UpdateResourceDataSync</code> request is being processed. Wait a few minutes
811
815
  * and try again.</p>
812
816
  */
813
- export interface ResourceDataSyncConflictException extends __SmithyException, $MetadataBearer {
814
- name: "ResourceDataSyncConflictException";
815
- $fault: "client";
817
+ export declare class ResourceDataSyncConflictException extends __BaseException {
818
+ readonly name: "ResourceDataSyncConflictException";
819
+ readonly $fault: "client";
816
820
  Message?: string;
821
+ /**
822
+ * @internal
823
+ */
824
+ constructor(opts: __ExceptionOptionType<ResourceDataSyncConflictException, __BaseException>);
817
825
  }
818
826
  export interface UpdateResourceDataSyncRequest {
819
827
  /**
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { SSMServiceException } from "./models/SSMServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class SSMServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }