@aws-sdk/client-auditmanager 3.934.0 → 3.935.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.
@@ -0,0 +1,101 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AuditManagerServiceException as __BaseException } from "./AuditManagerServiceException";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ValidationExceptionField } from "./models_0";
5
+ /**
6
+ * <p> Your account isn't registered with Audit Manager. Check the delegated
7
+ * administrator setup on the Audit Manager settings page, and try again. </p>
8
+ * @public
9
+ */
10
+ export declare class AccessDeniedException extends __BaseException {
11
+ readonly name: "AccessDeniedException";
12
+ readonly $fault: "client";
13
+ /**
14
+ * @internal
15
+ */
16
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
17
+ }
18
+ /**
19
+ * <p> An internal service error occurred during the processing of your request. Try again
20
+ * later. </p>
21
+ * @public
22
+ */
23
+ export declare class InternalServerException extends __BaseException {
24
+ readonly name: "InternalServerException";
25
+ readonly $fault: "server";
26
+ /**
27
+ * @internal
28
+ */
29
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
30
+ }
31
+ /**
32
+ * <p> The resource that's specified in the request can't be found. </p>
33
+ * @public
34
+ */
35
+ export declare class ResourceNotFoundException extends __BaseException {
36
+ readonly name: "ResourceNotFoundException";
37
+ readonly $fault: "client";
38
+ /**
39
+ * <p> The unique identifier for the resource. </p>
40
+ * @public
41
+ */
42
+ resourceId: string | undefined;
43
+ /**
44
+ * <p> The type of resource that's affected by the error. </p>
45
+ * @public
46
+ */
47
+ resourceType: string | undefined;
48
+ /**
49
+ * @internal
50
+ */
51
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
52
+ }
53
+ /**
54
+ * <p> The request has invalid or missing parameters. </p>
55
+ * @public
56
+ */
57
+ export declare class ValidationException extends __BaseException {
58
+ readonly name: "ValidationException";
59
+ readonly $fault: "client";
60
+ /**
61
+ * <p> The reason the request failed validation. </p>
62
+ * @public
63
+ */
64
+ reason?: ValidationExceptionReason | undefined;
65
+ /**
66
+ * <p> The fields that caused the error, if applicable. </p>
67
+ * @public
68
+ */
69
+ fields?: ValidationExceptionField[] | undefined;
70
+ /**
71
+ * @internal
72
+ */
73
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
74
+ }
75
+ /**
76
+ * <p>The request was denied due to request throttling.</p>
77
+ * @public
78
+ */
79
+ export declare class ThrottlingException extends __BaseException {
80
+ readonly name: "ThrottlingException";
81
+ readonly $fault: "client";
82
+ /**
83
+ * @internal
84
+ */
85
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
86
+ }
87
+ /**
88
+ * <p>You've reached your account quota for this resource type. To perform the requested
89
+ * action, delete some existing resources or <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">request a quota increase</a> from
90
+ * the Service Quotas console. For a list of Audit Manager service quotas, see <a href="https://docs.aws.amazon.com/audit-manager/latest/userguide/service-quotas.html">Quotas and
91
+ * restrictions for Audit Manager</a>.</p>
92
+ * @public
93
+ */
94
+ export declare class ServiceQuotaExceededException extends __BaseException {
95
+ readonly name: "ServiceQuotaExceededException";
96
+ readonly $fault: "client";
97
+ /**
98
+ * @internal
99
+ */
100
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
101
+ }