@aws-sdk/client-cleanrooms 3.934.0 → 3.936.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.
Files changed (31) hide show
  1. package/dist-cjs/index.js +278 -391
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +277 -0
  4. package/dist-es/models/errors.js +105 -0
  5. package/dist-es/models/models_0.js +5 -349
  6. package/dist-es/models/models_1.js +0 -38
  7. package/dist-es/schemas/schemas_0.js +1 -1
  8. package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
  10. package/dist-types/commands/GetMembershipCommand.d.ts +1 -1
  11. package/dist-types/commands/GetProtectedJobCommand.d.ts +1 -1
  12. package/dist-types/commands/GetProtectedQueryCommand.d.ts +2 -1
  13. package/dist-types/index.d.ts +4 -1
  14. package/dist-types/models/enums.d.ts +613 -0
  15. package/dist-types/models/errors.d.ts +137 -0
  16. package/dist-types/models/models_0.d.ts +856 -652
  17. package/dist-types/models/models_1.d.ts +2 -953
  18. package/dist-types/ts3.4/commands/CreateMembershipCommand.d.ts +1 -1
  19. package/dist-types/ts3.4/commands/DeleteMembershipCommand.d.ts +1 -1
  20. package/dist-types/ts3.4/commands/GetMembershipCommand.d.ts +1 -1
  21. package/dist-types/ts3.4/commands/GetProtectedJobCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/GetProtectedQueryCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/index.d.ts +4 -1
  24. package/dist-types/ts3.4/models/enums.d.ts +354 -0
  25. package/dist-types/ts3.4/models/errors.d.ts +66 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +328 -364
  27. package/dist-types/ts3.4/models/models_1.d.ts +23 -341
  28. package/package.json +19 -19
  29. package/dist-es/models/index.js +0 -2
  30. package/dist-types/models/index.d.ts +0 -2
  31. package/dist-types/ts3.4/models/index.d.ts +0 -2
@@ -0,0 +1,137 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { CleanRoomsServiceException as __BaseException } from "./CleanRoomsServiceException";
3
+ import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceType, ValidationExceptionField, ValidationExceptionReason } from "./models_0";
4
+ /**
5
+ * <p>Caller does not have sufficient access to perform this action.</p>
6
+ * @public
7
+ */
8
+ export declare class AccessDeniedException extends __BaseException {
9
+ readonly name: "AccessDeniedException";
10
+ readonly $fault: "client";
11
+ /**
12
+ * <p>A reason code for the exception.</p>
13
+ * @public
14
+ */
15
+ reason?: AccessDeniedExceptionReason | undefined;
16
+ /**
17
+ * @internal
18
+ */
19
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
20
+ }
21
+ /**
22
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
23
+ * @public
24
+ */
25
+ export declare class ConflictException extends __BaseException {
26
+ readonly name: "ConflictException";
27
+ readonly $fault: "client";
28
+ /**
29
+ * <p>The ID of the conflicting resource.</p>
30
+ * @public
31
+ */
32
+ resourceId?: string | undefined;
33
+ /**
34
+ * <p>The type of the conflicting resource.</p>
35
+ * @public
36
+ */
37
+ resourceType?: ResourceType | undefined;
38
+ /**
39
+ * <p>A reason code for the exception.</p>
40
+ * @public
41
+ */
42
+ reason?: ConflictExceptionReason | undefined;
43
+ /**
44
+ * @internal
45
+ */
46
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
47
+ }
48
+ /**
49
+ * <p>Unexpected error during processing of request.</p>
50
+ * @public
51
+ */
52
+ export declare class InternalServerException extends __BaseException {
53
+ readonly name: "InternalServerException";
54
+ readonly $fault: "server";
55
+ /**
56
+ * @internal
57
+ */
58
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
59
+ }
60
+ /**
61
+ * <p>Request references a resource which does not exist.</p>
62
+ * @public
63
+ */
64
+ export declare class ResourceNotFoundException extends __BaseException {
65
+ readonly name: "ResourceNotFoundException";
66
+ readonly $fault: "client";
67
+ /**
68
+ * <p>The Id of the missing resource.</p>
69
+ * @public
70
+ */
71
+ resourceId: string | undefined;
72
+ /**
73
+ * <p>The type of the missing resource.</p>
74
+ * @public
75
+ */
76
+ resourceType: ResourceType | undefined;
77
+ /**
78
+ * @internal
79
+ */
80
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
81
+ }
82
+ /**
83
+ * <p>Request denied because service quota has been exceeded.</p>
84
+ * @public
85
+ */
86
+ export declare class ServiceQuotaExceededException extends __BaseException {
87
+ readonly name: "ServiceQuotaExceededException";
88
+ readonly $fault: "client";
89
+ /**
90
+ * <p>The name of the quota.</p>
91
+ * @public
92
+ */
93
+ quotaName: string | undefined;
94
+ /**
95
+ * <p>The value of the quota.</p>
96
+ * @public
97
+ */
98
+ quotaValue: number | undefined;
99
+ /**
100
+ * @internal
101
+ */
102
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
103
+ }
104
+ /**
105
+ * <p>Request was denied due to request throttling.</p>
106
+ * @public
107
+ */
108
+ export declare class ThrottlingException extends __BaseException {
109
+ readonly name: "ThrottlingException";
110
+ readonly $fault: "client";
111
+ /**
112
+ * @internal
113
+ */
114
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
115
+ }
116
+ /**
117
+ * <p>The input fails to satisfy the specified constraints.</p>
118
+ * @public
119
+ */
120
+ export declare class ValidationException extends __BaseException {
121
+ readonly name: "ValidationException";
122
+ readonly $fault: "client";
123
+ /**
124
+ * <p>A reason code for the exception.</p>
125
+ * @public
126
+ */
127
+ reason?: ValidationExceptionReason | undefined;
128
+ /**
129
+ * <p>Validation errors for specific input parameters.</p>
130
+ * @public
131
+ */
132
+ fieldList?: ValidationExceptionField[] | undefined;
133
+ /**
134
+ * @internal
135
+ */
136
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
137
+ }