@aws-sdk/client-cleanroomsml 3.1094.0 → 3.1096.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.
- package/dist-cjs/index.js +19 -14
- package/dist-es/models/enums.js +1 -0
- package/dist-es/models/errors.js +12 -12
- package/dist-es/schemas/schemas_0.js +5 -2
- package/dist-types/commands/CreateAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfiguredAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfiguredModelAlgorithmCommand.d.ts +3 -0
- package/dist-types/commands/CreateMLInputChannelCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrainingDatasetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAudienceGenerationJobCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/DeleteConfiguredAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/DeleteConfiguredAudienceModelPolicyCommand.d.ts +3 -0
- package/dist-types/commands/DeleteConfiguredModelAlgorithmCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTrainingDatasetCommand.d.ts +3 -0
- package/dist-types/commands/GetAudienceGenerationJobCommand.d.ts +4 -1
- package/dist-types/commands/GetAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/GetConfiguredAudienceModelCommand.d.ts +3 -0
- package/dist-types/commands/GetConfiguredAudienceModelPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetConfiguredModelAlgorithmCommand.d.ts +3 -0
- package/dist-types/commands/GetMLInputChannelCommand.d.ts +1 -1
- package/dist-types/commands/GetTrainingDatasetCommand.d.ts +3 -0
- package/dist-types/commands/ListAudienceExportJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListAudienceGenerationJobsCommand.d.ts +3 -0
- package/dist-types/commands/ListAudienceModelsCommand.d.ts +3 -0
- package/dist-types/commands/ListConfiguredAudienceModelsCommand.d.ts +3 -0
- package/dist-types/commands/ListConfiguredModelAlgorithmsCommand.d.ts +3 -0
- package/dist-types/commands/ListTrainingDatasetsCommand.d.ts +3 -0
- package/dist-types/commands/PutConfiguredAudienceModelPolicyCommand.d.ts +3 -0
- package/dist-types/commands/StartAudienceExportJobCommand.d.ts +3 -0
- package/dist-types/commands/StartAudienceGenerationJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfiguredAudienceModelCommand.d.ts +3 -0
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/errors.d.ts +12 -12
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/errors.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -69,7 +69,7 @@ const commonParams = {
|
|
|
69
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "3.
|
|
72
|
+
var version = "3.1095.0";
|
|
73
73
|
var packageInfo = {
|
|
74
74
|
version: version};
|
|
75
75
|
|
|
@@ -150,6 +150,18 @@ class AccessDeniedException extends CleanRoomsMLServiceException {
|
|
|
150
150
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
151
151
|
}
|
|
152
152
|
}
|
|
153
|
+
class ThrottlingException extends CleanRoomsMLServiceException {
|
|
154
|
+
name = "ThrottlingException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
constructor(opts) {
|
|
157
|
+
super({
|
|
158
|
+
name: "ThrottlingException",
|
|
159
|
+
$fault: "client",
|
|
160
|
+
...opts,
|
|
161
|
+
});
|
|
162
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
153
165
|
class ValidationException extends CleanRoomsMLServiceException {
|
|
154
166
|
name = "ValidationException";
|
|
155
167
|
$fault = "client";
|
|
@@ -202,18 +214,6 @@ class ServiceQuotaExceededException extends CleanRoomsMLServiceException {
|
|
|
202
214
|
this.quotaValue = opts.quotaValue;
|
|
203
215
|
}
|
|
204
216
|
}
|
|
205
|
-
class ThrottlingException extends CleanRoomsMLServiceException {
|
|
206
|
-
name = "ThrottlingException";
|
|
207
|
-
$fault = "client";
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "ThrottlingException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
217
|
class InternalServiceException extends CleanRoomsMLServiceException {
|
|
218
218
|
name = "InternalServiceException";
|
|
219
219
|
$fault = "server";
|
|
@@ -448,6 +448,7 @@ const _PCAMPR = "PutConfiguredAudienceModelPolicyRequest";
|
|
|
448
448
|
const _PCAMPRu = "PutConfiguredAudienceModelPolicyResponse";
|
|
449
449
|
const _PCP = "PrivacyConfigurationPolicies";
|
|
450
450
|
const _PCr = "PrivacyConfiguration";
|
|
451
|
+
const _PM = "ParameterMap";
|
|
451
452
|
const _PMLC = "PutMLConfiguration";
|
|
452
453
|
const _PMLCR = "PutMLConfigurationRequest";
|
|
453
454
|
const _PQIP = "ProtectedQueryInputParameters";
|
|
@@ -1438,7 +1439,7 @@ var ProtectedQueryInputParameters$ = [3, n0, _PQIP,
|
|
|
1438
1439
|
var ProtectedQuerySQLParameters$ = [3, n0, _PQSQLP,
|
|
1439
1440
|
8,
|
|
1440
1441
|
[_qS, _aTA, _pa],
|
|
1441
|
-
[0, 0,
|
|
1442
|
+
[0, 0, [() => ParameterMap, 0]]
|
|
1442
1443
|
];
|
|
1443
1444
|
var PutConfiguredAudienceModelPolicyRequest$ = [3, n0, _PCAMPR,
|
|
1444
1445
|
0,
|
|
@@ -1703,6 +1704,9 @@ var TrainedModelList = [1, n0, _TML,
|
|
|
1703
1704
|
var TrainingDatasetList = [1, n0, _TDL,
|
|
1704
1705
|
0, () => TrainingDatasetSummary$
|
|
1705
1706
|
];
|
|
1707
|
+
var ParameterMap = [2, n0, _PM,
|
|
1708
|
+
8, 0, 0
|
|
1709
|
+
];
|
|
1706
1710
|
var ComputeConfiguration$ = [4, n0, _CCo,
|
|
1707
1711
|
0,
|
|
1708
1712
|
[_w],
|
|
@@ -2366,6 +2370,7 @@ const AudienceExportJobStatus = {
|
|
|
2366
2370
|
const WorkerComputeType = {
|
|
2367
2371
|
CR1X: "CR.1X",
|
|
2368
2372
|
CR4X: "CR.4X",
|
|
2373
|
+
CR8X: "CR.8X",
|
|
2369
2374
|
};
|
|
2370
2375
|
const AudienceGenerationJobStatus = {
|
|
2371
2376
|
ACTIVE: "ACTIVE",
|
package/dist-es/models/enums.js
CHANGED
package/dist-es/models/errors.js
CHANGED
|
@@ -11,6 +11,18 @@ export class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
+
export class ThrottlingException extends __BaseException {
|
|
15
|
+
name = "ThrottlingException";
|
|
16
|
+
$fault = "client";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "ThrottlingException",
|
|
20
|
+
$fault: "client",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
14
26
|
export class ValidationException extends __BaseException {
|
|
15
27
|
name = "ValidationException";
|
|
16
28
|
$fault = "client";
|
|
@@ -63,18 +75,6 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
63
75
|
this.quotaValue = opts.quotaValue;
|
|
64
76
|
}
|
|
65
77
|
}
|
|
66
|
-
export class ThrottlingException extends __BaseException {
|
|
67
|
-
name = "ThrottlingException";
|
|
68
|
-
$fault = "client";
|
|
69
|
-
constructor(opts) {
|
|
70
|
-
super({
|
|
71
|
-
name: "ThrottlingException",
|
|
72
|
-
$fault: "client",
|
|
73
|
-
...opts,
|
|
74
|
-
});
|
|
75
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
78
|
export class InternalServiceException extends __BaseException {
|
|
79
79
|
name = "InternalServiceException";
|
|
80
80
|
$fault = "server";
|
|
@@ -219,6 +219,7 @@ const _PCAMPR = "PutConfiguredAudienceModelPolicyRequest";
|
|
|
219
219
|
const _PCAMPRu = "PutConfiguredAudienceModelPolicyResponse";
|
|
220
220
|
const _PCP = "PrivacyConfigurationPolicies";
|
|
221
221
|
const _PCr = "PrivacyConfiguration";
|
|
222
|
+
const _PM = "ParameterMap";
|
|
222
223
|
const _PMLC = "PutMLConfiguration";
|
|
223
224
|
const _PMLCR = "PutMLConfigurationRequest";
|
|
224
225
|
const _PQIP = "ProtectedQueryInputParameters";
|
|
@@ -1212,7 +1213,7 @@ export var ProtectedQueryInputParameters$ = [3, n0, _PQIP,
|
|
|
1212
1213
|
export var ProtectedQuerySQLParameters$ = [3, n0, _PQSQLP,
|
|
1213
1214
|
8,
|
|
1214
1215
|
[_qS, _aTA, _pa],
|
|
1215
|
-
[0, 0,
|
|
1216
|
+
[0, 0, [() => ParameterMap, 0]]
|
|
1216
1217
|
];
|
|
1217
1218
|
export var PutConfiguredAudienceModelPolicyRequest$ = [3, n0, _PCAMPR,
|
|
1218
1219
|
0,
|
|
@@ -1491,7 +1492,9 @@ var TrainingDatasetList = [1, n0, _TDL,
|
|
|
1491
1492
|
var Environment = 128 | 0;
|
|
1492
1493
|
var HyperParameters = 128 | 0;
|
|
1493
1494
|
var InferenceEnvironmentMap = 128 | 0;
|
|
1494
|
-
var ParameterMap =
|
|
1495
|
+
var ParameterMap = [2, n0, _PM,
|
|
1496
|
+
8, 0, 0
|
|
1497
|
+
];
|
|
1495
1498
|
var SparkProperties = 128 | 0;
|
|
1496
1499
|
var TagMap = 128 | 0;
|
|
1497
1500
|
export var ComputeConfiguration$ = [4, n0, _CCo,
|
|
@@ -70,6 +70,9 @@ declare const CreateAudienceModelCommand_base: {
|
|
|
70
70
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
71
71
|
* <p>You have exceeded your service quota.</p>
|
|
72
72
|
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>The request was denied due to request throttling.</p>
|
|
75
|
+
*
|
|
73
76
|
* @throws {@link ValidationException} (client fault)
|
|
74
77
|
* <p>The request parameters for this request are incorrect.</p>
|
|
75
78
|
*
|
|
@@ -86,6 +86,9 @@ declare const CreateConfiguredAudienceModelCommand_base: {
|
|
|
86
86
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
87
87
|
* <p>You have exceeded your service quota.</p>
|
|
88
88
|
*
|
|
89
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
90
|
+
* <p>The request was denied due to request throttling.</p>
|
|
91
|
+
*
|
|
89
92
|
* @throws {@link ValidationException} (client fault)
|
|
90
93
|
* <p>The request parameters for this request are incorrect.</p>
|
|
91
94
|
*
|
|
@@ -83,6 +83,9 @@ declare const CreateConfiguredModelAlgorithmCommand_base: {
|
|
|
83
83
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
84
84
|
* <p>You have exceeded your service quota.</p>
|
|
85
85
|
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
86
89
|
* @throws {@link ValidationException} (client fault)
|
|
87
90
|
* <p>The request parameters for this request are incorrect.</p>
|
|
88
91
|
*
|
|
@@ -50,7 +50,7 @@ declare const CreateMLInputChannelCommand_base: {
|
|
|
50
50
|
* },
|
|
51
51
|
* computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
52
52
|
* worker: { // WorkerComputeConfiguration
|
|
53
|
-
* type: "CR.1X" || "CR.4X",
|
|
53
|
+
* type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
54
54
|
* number: Number("int"),
|
|
55
55
|
* properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
56
56
|
* spark: { // SparkProperties
|
|
@@ -83,6 +83,9 @@ declare const CreateTrainingDatasetCommand_base: {
|
|
|
83
83
|
* @throws {@link ConflictException} (client fault)
|
|
84
84
|
* <p>You can't complete this action because another resource depends on this resource.</p>
|
|
85
85
|
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
86
89
|
* @throws {@link ValidationException} (client fault)
|
|
87
90
|
* <p>The request parameters for this request are incorrect.</p>
|
|
88
91
|
*
|
|
@@ -57,6 +57,9 @@ declare const DeleteAudienceGenerationJobCommand_base: {
|
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
58
|
* <p>The resource you are requesting does not exist.</p>
|
|
59
59
|
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The request was denied due to request throttling.</p>
|
|
62
|
+
*
|
|
60
63
|
* @throws {@link ValidationException} (client fault)
|
|
61
64
|
* <p>The request parameters for this request are incorrect.</p>
|
|
62
65
|
*
|
|
@@ -57,6 +57,9 @@ declare const DeleteAudienceModelCommand_base: {
|
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
58
|
* <p>The resource you are requesting does not exist.</p>
|
|
59
59
|
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The request was denied due to request throttling.</p>
|
|
62
|
+
*
|
|
60
63
|
* @throws {@link ValidationException} (client fault)
|
|
61
64
|
* <p>The request parameters for this request are incorrect.</p>
|
|
62
65
|
*
|
|
@@ -57,6 +57,9 @@ declare const DeleteConfiguredAudienceModelCommand_base: {
|
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
58
|
* <p>The resource you are requesting does not exist.</p>
|
|
59
59
|
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The request was denied due to request throttling.</p>
|
|
62
|
+
*
|
|
60
63
|
* @throws {@link ValidationException} (client fault)
|
|
61
64
|
* <p>The request parameters for this request are incorrect.</p>
|
|
62
65
|
*
|
|
@@ -54,6 +54,9 @@ declare const DeleteConfiguredAudienceModelPolicyCommand_base: {
|
|
|
54
54
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
55
|
* <p>The resource you are requesting does not exist.</p>
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
58
|
+
* <p>The request was denied due to request throttling.</p>
|
|
59
|
+
*
|
|
57
60
|
* @throws {@link ValidationException} (client fault)
|
|
58
61
|
* <p>The request parameters for this request are incorrect.</p>
|
|
59
62
|
*
|
|
@@ -57,6 +57,9 @@ declare const DeleteConfiguredModelAlgorithmCommand_base: {
|
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
58
|
* <p>The resource you are requesting does not exist.</p>
|
|
59
59
|
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The request was denied due to request throttling.</p>
|
|
62
|
+
*
|
|
60
63
|
* @throws {@link ValidationException} (client fault)
|
|
61
64
|
* <p>The request parameters for this request are incorrect.</p>
|
|
62
65
|
*
|
|
@@ -57,6 +57,9 @@ declare const DeleteTrainingDatasetCommand_base: {
|
|
|
57
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
58
|
* <p>The resource you are requesting does not exist.</p>
|
|
59
59
|
*
|
|
60
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
61
|
+
* <p>The request was denied due to request throttling.</p>
|
|
62
|
+
*
|
|
60
63
|
* @throws {@link ValidationException} (client fault)
|
|
61
64
|
* <p>The request parameters for this request are incorrect.</p>
|
|
62
65
|
*
|
|
@@ -64,7 +64,7 @@ declare const GetAudienceGenerationJobCommand_base: {
|
|
|
64
64
|
* // },
|
|
65
65
|
* // sqlComputeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
66
66
|
* // worker: { // WorkerComputeConfiguration
|
|
67
|
-
* // type: "CR.1X" || "CR.4X",
|
|
67
|
+
* // type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
68
68
|
* // number: Number("int"),
|
|
69
69
|
* // properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
70
70
|
* // spark: { // SparkProperties
|
|
@@ -109,6 +109,9 @@ declare const GetAudienceGenerationJobCommand_base: {
|
|
|
109
109
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
110
110
|
* <p>The resource you are requesting does not exist.</p>
|
|
111
111
|
*
|
|
112
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
113
|
+
* <p>The request was denied due to request throttling.</p>
|
|
114
|
+
*
|
|
112
115
|
* @throws {@link ValidationException} (client fault)
|
|
113
116
|
* <p>The request parameters for this request are incorrect.</p>
|
|
114
117
|
*
|
|
@@ -72,6 +72,9 @@ declare const GetAudienceModelCommand_base: {
|
|
|
72
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
73
|
* <p>The resource you are requesting does not exist.</p>
|
|
74
74
|
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>The request was denied due to request throttling.</p>
|
|
77
|
+
*
|
|
75
78
|
* @throws {@link ValidationException} (client fault)
|
|
76
79
|
* <p>The request parameters for this request are incorrect.</p>
|
|
77
80
|
*
|
|
@@ -84,6 +84,9 @@ declare const GetConfiguredAudienceModelCommand_base: {
|
|
|
84
84
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
85
85
|
* <p>The resource you are requesting does not exist.</p>
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
88
|
+
* <p>The request was denied due to request throttling.</p>
|
|
89
|
+
*
|
|
87
90
|
* @throws {@link ValidationException} (client fault)
|
|
88
91
|
* <p>The request parameters for this request are incorrect.</p>
|
|
89
92
|
*
|
|
@@ -58,6 +58,9 @@ declare const GetConfiguredAudienceModelPolicyCommand_base: {
|
|
|
58
58
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
59
59
|
* <p>The resource you are requesting does not exist.</p>
|
|
60
60
|
*
|
|
61
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
62
|
+
* <p>The request was denied due to request throttling.</p>
|
|
63
|
+
*
|
|
61
64
|
* @throws {@link ValidationException} (client fault)
|
|
62
65
|
* <p>The request parameters for this request are incorrect.</p>
|
|
63
66
|
*
|
|
@@ -83,6 +83,9 @@ declare const GetConfiguredModelAlgorithmCommand_base: {
|
|
|
83
83
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
84
84
|
* <p>The resource you are requesting does not exist.</p>
|
|
85
85
|
*
|
|
86
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
87
|
+
* <p>The request was denied due to request throttling.</p>
|
|
88
|
+
*
|
|
86
89
|
* @throws {@link ValidationException} (client fault)
|
|
87
90
|
* <p>The request parameters for this request are incorrect.</p>
|
|
88
91
|
*
|
|
@@ -116,7 +116,7 @@ declare const GetMLInputChannelCommand_base: {
|
|
|
116
116
|
* // },
|
|
117
117
|
* // computeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
118
118
|
* // worker: { // WorkerComputeConfiguration
|
|
119
|
-
* // type: "CR.1X" || "CR.4X",
|
|
119
|
+
* // type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
120
120
|
* // number: Number("int"),
|
|
121
121
|
* // properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
122
122
|
* // spark: { // SparkProperties
|
|
@@ -87,6 +87,9 @@ declare const GetTrainingDatasetCommand_base: {
|
|
|
87
87
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
88
88
|
* <p>The resource you are requesting does not exist.</p>
|
|
89
89
|
*
|
|
90
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
91
|
+
* <p>The request was denied due to request throttling.</p>
|
|
92
|
+
*
|
|
90
93
|
* @throws {@link ValidationException} (client fault)
|
|
91
94
|
* <p>The request parameters for this request are incorrect.</p>
|
|
92
95
|
*
|
|
@@ -74,6 +74,9 @@ declare const ListAudienceExportJobsCommand_base: {
|
|
|
74
74
|
* @throws {@link AccessDeniedException} (client fault)
|
|
75
75
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
76
76
|
*
|
|
77
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
78
|
+
* <p>The request was denied due to request throttling.</p>
|
|
79
|
+
*
|
|
77
80
|
* @throws {@link ValidationException} (client fault)
|
|
78
81
|
* <p>The request parameters for this request are incorrect.</p>
|
|
79
82
|
*
|
|
@@ -69,6 +69,9 @@ declare const ListAudienceGenerationJobsCommand_base: {
|
|
|
69
69
|
* @throws {@link AccessDeniedException} (client fault)
|
|
70
70
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
71
71
|
*
|
|
72
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
73
|
+
* <p>The request was denied due to request throttling.</p>
|
|
74
|
+
*
|
|
72
75
|
* @throws {@link ValidationException} (client fault)
|
|
73
76
|
* <p>The request parameters for this request are incorrect.</p>
|
|
74
77
|
*
|
|
@@ -65,6 +65,9 @@ declare const ListAudienceModelsCommand_base: {
|
|
|
65
65
|
* @throws {@link AccessDeniedException} (client fault)
|
|
66
66
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
67
67
|
*
|
|
68
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
69
|
+
* <p>The request was denied due to request throttling.</p>
|
|
70
|
+
*
|
|
68
71
|
* @throws {@link ValidationException} (client fault)
|
|
69
72
|
* <p>The request parameters for this request are incorrect.</p>
|
|
70
73
|
*
|
|
@@ -73,6 +73,9 @@ declare const ListConfiguredAudienceModelsCommand_base: {
|
|
|
73
73
|
* @throws {@link AccessDeniedException} (client fault)
|
|
74
74
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
75
75
|
*
|
|
76
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
77
|
+
* <p>The request was denied due to request throttling.</p>
|
|
78
|
+
*
|
|
76
79
|
* @throws {@link ValidationException} (client fault)
|
|
77
80
|
* <p>The request parameters for this request are incorrect.</p>
|
|
78
81
|
*
|
|
@@ -63,6 +63,9 @@ declare const ListConfiguredModelAlgorithmsCommand_base: {
|
|
|
63
63
|
* @throws {@link AccessDeniedException} (client fault)
|
|
64
64
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
65
65
|
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>The request was denied due to request throttling.</p>
|
|
68
|
+
*
|
|
66
69
|
* @throws {@link ValidationException} (client fault)
|
|
67
70
|
* <p>The request parameters for this request are incorrect.</p>
|
|
68
71
|
*
|
|
@@ -64,6 +64,9 @@ declare const ListTrainingDatasetsCommand_base: {
|
|
|
64
64
|
* @throws {@link AccessDeniedException} (client fault)
|
|
65
65
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
66
66
|
*
|
|
67
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
68
|
+
* <p>The request was denied due to request throttling.</p>
|
|
69
|
+
*
|
|
67
70
|
* @throws {@link ValidationException} (client fault)
|
|
68
71
|
* <p>The request parameters for this request are incorrect.</p>
|
|
69
72
|
*
|
|
@@ -60,6 +60,9 @@ declare const PutConfiguredAudienceModelPolicyCommand_base: {
|
|
|
60
60
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
61
|
* <p>The resource you are requesting does not exist.</p>
|
|
62
62
|
*
|
|
63
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
64
|
+
* <p>The request was denied due to request throttling.</p>
|
|
65
|
+
*
|
|
63
66
|
* @throws {@link ValidationException} (client fault)
|
|
64
67
|
* <p>The request parameters for this request are incorrect.</p>
|
|
65
68
|
*
|
|
@@ -66,6 +66,9 @@ declare const StartAudienceExportJobCommand_base: {
|
|
|
66
66
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
67
67
|
* <p>You have exceeded your service quota.</p>
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link ValidationException} (client fault)
|
|
70
73
|
* <p>The request parameters for this request are incorrect.</p>
|
|
71
74
|
*
|
|
@@ -50,7 +50,7 @@ declare const StartAudienceGenerationJobCommand_base: {
|
|
|
50
50
|
* },
|
|
51
51
|
* sqlComputeConfiguration: { // ComputeConfiguration Union: only one key present
|
|
52
52
|
* worker: { // WorkerComputeConfiguration
|
|
53
|
-
* type: "CR.1X" || "CR.4X",
|
|
53
|
+
* type: "CR.1X" || "CR.4X" || "CR.8X",
|
|
54
54
|
* number: Number("int"),
|
|
55
55
|
* properties: { // WorkerComputeConfigurationProperties Union: only one key present
|
|
56
56
|
* spark: { // SparkProperties
|
|
@@ -79,6 +79,9 @@ declare const UpdateConfiguredAudienceModelCommand_base: {
|
|
|
79
79
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
80
|
* <p>The resource you are requesting does not exist.</p>
|
|
81
81
|
*
|
|
82
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
83
|
+
* <p>The request was denied due to request throttling.</p>
|
|
84
|
+
*
|
|
82
85
|
* @throws {@link ValidationException} (client fault)
|
|
83
86
|
* <p>The request parameters for this request are incorrect.</p>
|
|
84
87
|
*
|
|
@@ -12,6 +12,18 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
12
12
|
*/
|
|
13
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>The request was denied due to request throttling.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ThrottlingException extends __BaseException {
|
|
20
|
+
readonly name: "ThrottlingException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
26
|
+
}
|
|
15
27
|
/**
|
|
16
28
|
* <p>The request parameters for this request are incorrect.</p>
|
|
17
29
|
* @public
|
|
@@ -70,18 +82,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
70
82
|
*/
|
|
71
83
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
72
84
|
}
|
|
73
|
-
/**
|
|
74
|
-
* <p>The request was denied due to request throttling.</p>
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
export declare class ThrottlingException extends __BaseException {
|
|
78
|
-
readonly name: "ThrottlingException";
|
|
79
|
-
readonly $fault: "client";
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
84
|
-
}
|
|
85
85
|
/**
|
|
86
86
|
* <p>An internal service error occurred. Retry your request. If the problem persists, contact AWS Support.</p>
|
|
87
87
|
* @public
|
|
@@ -42,6 +42,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
42
42
|
logger?: import("@smithy/types").Logger;
|
|
43
43
|
}) => import("@smithy/types").EndpointV2;
|
|
44
44
|
tls?: boolean;
|
|
45
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
45
46
|
serviceConfiguredEndpoint?: never;
|
|
46
47
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
52
53
|
systemClockOffset?: number;
|
|
53
54
|
signingRegion?: string;
|
|
54
55
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
55
57
|
};
|
|
@@ -43,6 +43,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
43
43
|
logger?: import("@smithy/types").Logger;
|
|
44
44
|
}) => import("@smithy/types").EndpointV2;
|
|
45
45
|
tls?: boolean;
|
|
46
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
46
47
|
serviceConfiguredEndpoint?: never;
|
|
47
48
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
49
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsMLHttpAuthSchemeProvider;
|
|
@@ -52,4 +53,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
52
53
|
systemClockOffset?: number;
|
|
53
54
|
signingRegion?: string;
|
|
54
55
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
56
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
55
57
|
};
|
|
@@ -41,6 +41,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
41
41
|
logger?: import("@smithy/types").Logger;
|
|
42
42
|
}) => import("@smithy/types").EndpointV2;
|
|
43
43
|
tls?: boolean;
|
|
44
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
44
45
|
serviceConfiguredEndpoint?: never;
|
|
45
46
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
47
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -51,4 +52,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
51
52
|
systemClockOffset?: number;
|
|
52
53
|
signingRegion?: string;
|
|
53
54
|
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
54
56
|
};
|
|
@@ -26,6 +26,7 @@ export type AudienceExportJobStatus =
|
|
|
26
26
|
export declare const WorkerComputeType: {
|
|
27
27
|
readonly CR1X: "CR.1X";
|
|
28
28
|
readonly CR4X: "CR.4X";
|
|
29
|
+
readonly CR8X: "CR.8X";
|
|
29
30
|
};
|
|
30
31
|
export type WorkerComputeType = (typeof WorkerComputeType)[keyof typeof WorkerComputeType];
|
|
31
32
|
export declare const AudienceGenerationJobStatus: {
|
|
@@ -5,6 +5,11 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
5
5
|
readonly $fault: "client";
|
|
6
6
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
7
|
}
|
|
8
|
+
export declare class ThrottlingException extends __BaseException {
|
|
9
|
+
readonly name: "ThrottlingException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
12
|
+
}
|
|
8
13
|
export declare class ValidationException extends __BaseException {
|
|
9
14
|
readonly name: "ValidationException";
|
|
10
15
|
readonly $fault: "client";
|
|
@@ -27,11 +32,6 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
27
32
|
quotaValue?: number | undefined;
|
|
28
33
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
29
34
|
}
|
|
30
|
-
export declare class ThrottlingException extends __BaseException {
|
|
31
|
-
readonly name: "ThrottlingException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
34
|
-
}
|
|
35
35
|
export declare class InternalServiceException extends __BaseException {
|
|
36
36
|
readonly name: "InternalServiceException";
|
|
37
37
|
readonly $fault: "server";
|
|
@@ -71,6 +71,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
71
71
|
},
|
|
72
72
|
) => import("@smithy/types").EndpointV2;
|
|
73
73
|
tls?: boolean;
|
|
74
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
74
75
|
serviceConfiguredEndpoint?: never;
|
|
75
76
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
76
77
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
90
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
92
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
92
93
|
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
93
95
|
};
|
|
@@ -72,6 +72,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
72
72
|
},
|
|
73
73
|
) => import("@smithy/types").EndpointV2;
|
|
74
74
|
tls?: boolean;
|
|
75
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
75
76
|
serviceConfiguredEndpoint?: never;
|
|
76
77
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
77
78
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CleanRoomsMLHttpAuthSchemeProvider;
|
|
@@ -90,4 +91,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
90
91
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
92
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
92
93
|
) => import("@smithy/types").RequestSigner;
|
|
94
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
93
95
|
};
|
|
@@ -75,6 +75,7 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
75
75
|
},
|
|
76
76
|
) => import("@smithy/types").EndpointV2;
|
|
77
77
|
tls?: boolean;
|
|
78
|
+
ignoreConfiguredEndpointUrls?: boolean;
|
|
78
79
|
serviceConfiguredEndpoint?: never;
|
|
79
80
|
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
81
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
@@ -94,4 +95,5 @@ export declare const getRuntimeConfig: (config: CleanRoomsMLClientConfig) => {
|
|
|
94
95
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
96
|
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
96
97
|
) => import("@smithy/types").RequestSigner;
|
|
98
|
+
disableClockSkewCorrection?: boolean | import("@smithy/types").Provider<boolean>;
|
|
97
99
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cleanroomsml",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1096.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Cleanroomsml Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cleanroomsml",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.1",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.73",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
|
-
"@smithy/core": "^3.29.
|
|
53
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
54
|
-
"@smithy/node-http-handler": "^4.9.
|
|
52
|
+
"@smithy/core": "^3.29.8",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.10",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.10",
|
|
55
55
|
"@smithy/types": "^4.16.1",
|
|
56
56
|
"tslib": "^2.6.2"
|
|
57
57
|
},
|