@aws-sdk/client-cleanroomsml 3.1075.0 → 3.1076.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 +2204 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/CleanRoomsMLServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -89
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1880
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultCleanRoomsMLHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "cleanrooms-ml",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultCleanRoomsMLHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,1904 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://cleanrooms-ml-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://cleanrooms-ml-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://cleanrooms-ml.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://cleanrooms-ml.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class CleanRoomsMLServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, CleanRoomsMLServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends CleanRoomsMLServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "AccessDeniedException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
class ValidationException extends CleanRoomsMLServiceException {
|
|
152
|
+
name = "ValidationException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "ValidationException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
class ConflictException extends CleanRoomsMLServiceException {
|
|
164
|
+
name = "ConflictException";
|
|
165
|
+
$fault = "client";
|
|
166
|
+
constructor(opts) {
|
|
167
|
+
super({
|
|
168
|
+
name: "ConflictException",
|
|
169
|
+
$fault: "client",
|
|
170
|
+
...opts,
|
|
171
|
+
});
|
|
172
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
class ResourceNotFoundException extends CleanRoomsMLServiceException {
|
|
176
|
+
name = "ResourceNotFoundException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
constructor(opts) {
|
|
179
|
+
super({
|
|
180
|
+
name: "ResourceNotFoundException",
|
|
181
|
+
$fault: "client",
|
|
182
|
+
...opts,
|
|
183
|
+
});
|
|
184
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
class ServiceQuotaExceededException extends CleanRoomsMLServiceException {
|
|
188
|
+
name = "ServiceQuotaExceededException";
|
|
189
|
+
$fault = "client";
|
|
190
|
+
quotaName;
|
|
191
|
+
quotaValue;
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "ServiceQuotaExceededException",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
199
|
+
this.quotaName = opts.quotaName;
|
|
200
|
+
this.quotaValue = opts.quotaValue;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ThrottlingException extends CleanRoomsMLServiceException {
|
|
204
|
+
name = "ThrottlingException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "ThrottlingException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class InternalServiceException extends CleanRoomsMLServiceException {
|
|
216
|
+
name = "InternalServiceException";
|
|
217
|
+
$fault = "server";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "InternalServiceException",
|
|
221
|
+
$fault: "server",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
const _AB = "AccessBudget";
|
|
229
|
+
const _ABD = "AccessBudgetDetails";
|
|
230
|
+
const _ABDL = "AccessBudgetDetailsList";
|
|
231
|
+
const _ABc = "AccessBudgets";
|
|
232
|
+
const _AD = "AudienceDestination";
|
|
233
|
+
const _ADE = "AccessDeniedException";
|
|
234
|
+
const _AEJL = "AudienceExportJobList";
|
|
235
|
+
const _AEJS = "AudienceExportJobSummary";
|
|
236
|
+
const _AGJDS = "AudienceGenerationJobDataSource";
|
|
237
|
+
const _AGJL = "AudienceGenerationJobList";
|
|
238
|
+
const _AGJS = "AudienceGenerationJobSummary";
|
|
239
|
+
const _AML = "AudienceModelList";
|
|
240
|
+
const _AMS = "AudienceModelSummary";
|
|
241
|
+
const _AQM = "AudienceQualityMetrics";
|
|
242
|
+
const _AS = "AudienceSize";
|
|
243
|
+
const _ASC = "AudienceSizeConfig";
|
|
244
|
+
const _CAM = "CreateAudienceModel";
|
|
245
|
+
const _CAML = "ConfiguredAudienceModelList";
|
|
246
|
+
const _CAMOC = "ConfiguredAudienceModelOutputConfig";
|
|
247
|
+
const _CAMR = "CreateAudienceModelRequest";
|
|
248
|
+
const _CAMRr = "CreateAudienceModelResponse";
|
|
249
|
+
const _CAMS = "ConfiguredAudienceModelSummary";
|
|
250
|
+
const _CC = "ContainerConfig";
|
|
251
|
+
const _CCAM = "CreateConfiguredAudienceModel";
|
|
252
|
+
const _CCAMR = "CreateConfiguredAudienceModelRequest";
|
|
253
|
+
const _CCAMRr = "CreateConfiguredAudienceModelResponse";
|
|
254
|
+
const _CCD = "ColumnClassificationDetails";
|
|
255
|
+
const _CCMA = "CreateConfiguredModelAlgorithm";
|
|
256
|
+
const _CCMAA = "CreateConfiguredModelAlgorithmAssociation";
|
|
257
|
+
const _CCMAAL = "CollaborationConfiguredModelAlgorithmAssociationList";
|
|
258
|
+
const _CCMAAR = "CreateConfiguredModelAlgorithmAssociationRequest";
|
|
259
|
+
const _CCMAARr = "CreateConfiguredModelAlgorithmAssociationResponse";
|
|
260
|
+
const _CCMAAS = "CollaborationConfiguredModelAlgorithmAssociationSummary";
|
|
261
|
+
const _CCMAR = "CreateConfiguredModelAlgorithmRequest";
|
|
262
|
+
const _CCMARr = "CreateConfiguredModelAlgorithmResponse";
|
|
263
|
+
const _CCo = "ComputeConfiguration";
|
|
264
|
+
const _CE = "ConflictException";
|
|
265
|
+
const _CEC = "CustomEntityConfig";
|
|
266
|
+
const _CMAAL = "ConfiguredModelAlgorithmAssociationList";
|
|
267
|
+
const _CMAAS = "ConfiguredModelAlgorithmAssociationSummary";
|
|
268
|
+
const _CMAL = "ConfiguredModelAlgorithmList";
|
|
269
|
+
const _CMAS = "ConfiguredModelAlgorithmSummary";
|
|
270
|
+
const _CML = "ColumnMappingList";
|
|
271
|
+
const _CMLIC = "CreateMLInputChannel";
|
|
272
|
+
const _CMLICL = "CollaborationMLInputChannelsList";
|
|
273
|
+
const _CMLICR = "CreateMLInputChannelRequest";
|
|
274
|
+
const _CMLICRr = "CreateMLInputChannelResponse";
|
|
275
|
+
const _CMLICS = "CollaborationMLInputChannelSummary";
|
|
276
|
+
const _CS = "ColumnSchema";
|
|
277
|
+
const _CTD = "CreateTrainingDataset";
|
|
278
|
+
const _CTDR = "CreateTrainingDatasetRequest";
|
|
279
|
+
const _CTDRr = "CreateTrainingDatasetResponse";
|
|
280
|
+
const _CTM = "CancelTrainedModel";
|
|
281
|
+
const _CTMEJL = "CollaborationTrainedModelExportJobList";
|
|
282
|
+
const _CTMEJS = "CollaborationTrainedModelExportJobSummary";
|
|
283
|
+
const _CTMIJ = "CancelTrainedModelInferenceJob";
|
|
284
|
+
const _CTMIJL = "CollaborationTrainedModelInferenceJobList";
|
|
285
|
+
const _CTMIJR = "CancelTrainedModelInferenceJobRequest";
|
|
286
|
+
const _CTMIJS = "CollaborationTrainedModelInferenceJobSummary";
|
|
287
|
+
const _CTML = "CollaborationTrainedModelList";
|
|
288
|
+
const _CTMR = "CancelTrainedModelRequest";
|
|
289
|
+
const _CTMRr = "CreateTrainedModelRequest";
|
|
290
|
+
const _CTMRre = "CreateTrainedModelResponse";
|
|
291
|
+
const _CTMS = "CollaborationTrainedModelSummary";
|
|
292
|
+
const _CTMr = "CreateTrainedModel";
|
|
293
|
+
const _D = "Dataset";
|
|
294
|
+
const _DAGJ = "DeleteAudienceGenerationJob";
|
|
295
|
+
const _DAGJR = "DeleteAudienceGenerationJobRequest";
|
|
296
|
+
const _DAM = "DeleteAudienceModel";
|
|
297
|
+
const _DAMR = "DeleteAudienceModelRequest";
|
|
298
|
+
const _DCAM = "DeleteConfiguredAudienceModel";
|
|
299
|
+
const _DCAMP = "DeleteConfiguredAudienceModelPolicy";
|
|
300
|
+
const _DCAMPR = "DeleteConfiguredAudienceModelPolicyRequest";
|
|
301
|
+
const _DCAMR = "DeleteConfiguredAudienceModelRequest";
|
|
302
|
+
const _DCMA = "DeleteConfiguredModelAlgorithm";
|
|
303
|
+
const _DCMAA = "DeleteConfiguredModelAlgorithmAssociation";
|
|
304
|
+
const _DCMAAR = "DeleteConfiguredModelAlgorithmAssociationRequest";
|
|
305
|
+
const _DCMAR = "DeleteConfiguredModelAlgorithmRequest";
|
|
306
|
+
const _DIC = "DatasetInputConfig";
|
|
307
|
+
const _DL = "DatasetList";
|
|
308
|
+
const _DMLC = "DeleteMLConfiguration";
|
|
309
|
+
const _DMLCR = "DeleteMLConfigurationRequest";
|
|
310
|
+
const _DMLICD = "DeleteMLInputChannelData";
|
|
311
|
+
const _DMLICDR = "DeleteMLInputChannelDataRequest";
|
|
312
|
+
const _DPS = "DataPrivacyScores";
|
|
313
|
+
const _DS = "DataSource";
|
|
314
|
+
const _DSL = "DatasetSchemaList";
|
|
315
|
+
const _DTD = "DeleteTrainingDataset";
|
|
316
|
+
const _DTDR = "DeleteTrainingDatasetRequest";
|
|
317
|
+
const _DTMO = "DeleteTrainedModelOutput";
|
|
318
|
+
const _DTMOR = "DeleteTrainedModelOutputRequest";
|
|
319
|
+
const _De = "Destination";
|
|
320
|
+
const _GAGJ = "GetAudienceGenerationJob";
|
|
321
|
+
const _GAGJR = "GetAudienceGenerationJobRequest";
|
|
322
|
+
const _GAGJRe = "GetAudienceGenerationJobResponse";
|
|
323
|
+
const _GAM = "GetAudienceModel";
|
|
324
|
+
const _GAMR = "GetAudienceModelRequest";
|
|
325
|
+
const _GAMRe = "GetAudienceModelResponse";
|
|
326
|
+
const _GCAM = "GetConfiguredAudienceModel";
|
|
327
|
+
const _GCAMP = "GetConfiguredAudienceModelPolicy";
|
|
328
|
+
const _GCAMPR = "GetConfiguredAudienceModelPolicyRequest";
|
|
329
|
+
const _GCAMPRe = "GetConfiguredAudienceModelPolicyResponse";
|
|
330
|
+
const _GCAMR = "GetConfiguredAudienceModelRequest";
|
|
331
|
+
const _GCAMRe = "GetConfiguredAudienceModelResponse";
|
|
332
|
+
const _GCCMAA = "GetCollaborationConfiguredModelAlgorithmAssociation";
|
|
333
|
+
const _GCCMAAR = "GetCollaborationConfiguredModelAlgorithmAssociationRequest";
|
|
334
|
+
const _GCCMAARe = "GetCollaborationConfiguredModelAlgorithmAssociationResponse";
|
|
335
|
+
const _GCMA = "GetConfiguredModelAlgorithm";
|
|
336
|
+
const _GCMAA = "GetConfiguredModelAlgorithmAssociation";
|
|
337
|
+
const _GCMAAR = "GetConfiguredModelAlgorithmAssociationRequest";
|
|
338
|
+
const _GCMAARe = "GetConfiguredModelAlgorithmAssociationResponse";
|
|
339
|
+
const _GCMAR = "GetConfiguredModelAlgorithmRequest";
|
|
340
|
+
const _GCMARe = "GetConfiguredModelAlgorithmResponse";
|
|
341
|
+
const _GCMLIC = "GetCollaborationMLInputChannel";
|
|
342
|
+
const _GCMLICR = "GetCollaborationMLInputChannelRequest";
|
|
343
|
+
const _GCMLICRe = "GetCollaborationMLInputChannelResponse";
|
|
344
|
+
const _GCTM = "GetCollaborationTrainedModel";
|
|
345
|
+
const _GCTMR = "GetCollaborationTrainedModelRequest";
|
|
346
|
+
const _GCTMRe = "GetCollaborationTrainedModelResponse";
|
|
347
|
+
const _GDS = "GlueDataSource";
|
|
348
|
+
const _GMLC = "GetMLConfiguration";
|
|
349
|
+
const _GMLCR = "GetMLConfigurationRequest";
|
|
350
|
+
const _GMLCRe = "GetMLConfigurationResponse";
|
|
351
|
+
const _GMLIC = "GetMLInputChannel";
|
|
352
|
+
const _GMLICR = "GetMLInputChannelRequest";
|
|
353
|
+
const _GMLICRe = "GetMLInputChannelResponse";
|
|
354
|
+
const _GTD = "GetTrainingDataset";
|
|
355
|
+
const _GTDR = "GetTrainingDatasetRequest";
|
|
356
|
+
const _GTDRe = "GetTrainingDatasetResponse";
|
|
357
|
+
const _GTM = "GetTrainedModel";
|
|
358
|
+
const _GTMIJ = "GetTrainedModelInferenceJob";
|
|
359
|
+
const _GTMIJR = "GetTrainedModelInferenceJobRequest";
|
|
360
|
+
const _GTMIJRe = "GetTrainedModelInferenceJobResponse";
|
|
361
|
+
const _GTMR = "GetTrainedModelRequest";
|
|
362
|
+
const _GTMRe = "GetTrainedModelResponse";
|
|
363
|
+
const _IC = "InputChannel";
|
|
364
|
+
const _ICC = "InferenceContainerConfig";
|
|
365
|
+
const _ICDS = "InputChannelDataSource";
|
|
366
|
+
const _ICEP = "InferenceContainerExecutionParameters";
|
|
367
|
+
const _IOC = "InferenceOutputConfiguration";
|
|
368
|
+
const _IRC = "InferenceResourceConfig";
|
|
369
|
+
const _IRM = "InferenceReceiverMember";
|
|
370
|
+
const _IRMn = "InferenceReceiverMembers";
|
|
371
|
+
const _ISE = "InternalServiceException";
|
|
372
|
+
const _ITDC = "IncrementalTrainingDataChannel";
|
|
373
|
+
const _ITDCO = "IncrementalTrainingDataChannelOutput";
|
|
374
|
+
const _ITDCOn = "IncrementalTrainingDataChannelsOutput";
|
|
375
|
+
const _ITDCn = "IncrementalTrainingDataChannels";
|
|
376
|
+
const _LAEJ = "ListAudienceExportJobs";
|
|
377
|
+
const _LAEJR = "ListAudienceExportJobsRequest";
|
|
378
|
+
const _LAEJRi = "ListAudienceExportJobsResponse";
|
|
379
|
+
const _LAGJ = "ListAudienceGenerationJobs";
|
|
380
|
+
const _LAGJR = "ListAudienceGenerationJobsRequest";
|
|
381
|
+
const _LAGJRi = "ListAudienceGenerationJobsResponse";
|
|
382
|
+
const _LAM = "ListAudienceModels";
|
|
383
|
+
const _LAMR = "ListAudienceModelsRequest";
|
|
384
|
+
const _LAMRi = "ListAudienceModelsResponse";
|
|
385
|
+
const _LCAM = "ListConfiguredAudienceModels";
|
|
386
|
+
const _LCAMR = "ListConfiguredAudienceModelsRequest";
|
|
387
|
+
const _LCAMRi = "ListConfiguredAudienceModelsResponse";
|
|
388
|
+
const _LCCMAA = "ListCollaborationConfiguredModelAlgorithmAssociations";
|
|
389
|
+
const _LCCMAAR = "ListCollaborationConfiguredModelAlgorithmAssociationsRequest";
|
|
390
|
+
const _LCCMAARi = "ListCollaborationConfiguredModelAlgorithmAssociationsResponse";
|
|
391
|
+
const _LCMA = "ListConfiguredModelAlgorithms";
|
|
392
|
+
const _LCMAA = "ListConfiguredModelAlgorithmAssociations";
|
|
393
|
+
const _LCMAAR = "ListConfiguredModelAlgorithmAssociationsRequest";
|
|
394
|
+
const _LCMAARi = "ListConfiguredModelAlgorithmAssociationsResponse";
|
|
395
|
+
const _LCMAR = "ListConfiguredModelAlgorithmsRequest";
|
|
396
|
+
const _LCMARi = "ListConfiguredModelAlgorithmsResponse";
|
|
397
|
+
const _LCMLIC = "ListCollaborationMLInputChannels";
|
|
398
|
+
const _LCMLICR = "ListCollaborationMLInputChannelsRequest";
|
|
399
|
+
const _LCMLICRi = "ListCollaborationMLInputChannelsResponse";
|
|
400
|
+
const _LCP = "LogsConfigurationPolicy";
|
|
401
|
+
const _LCPL = "LogsConfigurationPolicyList";
|
|
402
|
+
const _LCTM = "ListCollaborationTrainedModels";
|
|
403
|
+
const _LCTMEJ = "ListCollaborationTrainedModelExportJobs";
|
|
404
|
+
const _LCTMEJR = "ListCollaborationTrainedModelExportJobsRequest";
|
|
405
|
+
const _LCTMEJRi = "ListCollaborationTrainedModelExportJobsResponse";
|
|
406
|
+
const _LCTMIJ = "ListCollaborationTrainedModelInferenceJobs";
|
|
407
|
+
const _LCTMIJR = "ListCollaborationTrainedModelInferenceJobsRequest";
|
|
408
|
+
const _LCTMIJRi = "ListCollaborationTrainedModelInferenceJobsResponse";
|
|
409
|
+
const _LCTMR = "ListCollaborationTrainedModelsRequest";
|
|
410
|
+
const _LCTMRi = "ListCollaborationTrainedModelsResponse";
|
|
411
|
+
const _LMLIC = "ListMLInputChannels";
|
|
412
|
+
const _LMLICR = "ListMLInputChannelsRequest";
|
|
413
|
+
const _LMLICRi = "ListMLInputChannelsResponse";
|
|
414
|
+
const _LRC = "LogRedactionConfiguration";
|
|
415
|
+
const _LTD = "ListTrainingDatasets";
|
|
416
|
+
const _LTDR = "ListTrainingDatasetsRequest";
|
|
417
|
+
const _LTDRi = "ListTrainingDatasetsResponse";
|
|
418
|
+
const _LTFR = "ListTagsForResource";
|
|
419
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
420
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
421
|
+
const _LTM = "ListTrainedModels";
|
|
422
|
+
const _LTMIJ = "ListTrainedModelInferenceJobs";
|
|
423
|
+
const _LTMIJR = "ListTrainedModelInferenceJobsRequest";
|
|
424
|
+
const _LTMIJRi = "ListTrainedModelInferenceJobsResponse";
|
|
425
|
+
const _LTMR = "ListTrainedModelsRequest";
|
|
426
|
+
const _LTMRi = "ListTrainedModelsResponse";
|
|
427
|
+
const _LTMV = "ListTrainedModelVersions";
|
|
428
|
+
const _LTMVR = "ListTrainedModelVersionsRequest";
|
|
429
|
+
const _LTMVRi = "ListTrainedModelVersionsResponse";
|
|
430
|
+
const _MCP = "MetricsConfigurationPolicy";
|
|
431
|
+
const _MD = "MetricDefinition";
|
|
432
|
+
const _MDL = "MetricDefinitionList";
|
|
433
|
+
const _MIAS = "MembershipInferenceAttackScore";
|
|
434
|
+
const _MIASL = "MembershipInferenceAttackScoreList";
|
|
435
|
+
const _MIDS = "ModelInferenceDataSource";
|
|
436
|
+
const _MLICL = "MLInputChannelsList";
|
|
437
|
+
const _MLICS = "MLInputChannelSummary";
|
|
438
|
+
const _MLOC = "MLOutputConfiguration";
|
|
439
|
+
const _MLSDP = "MLSyntheticDataParameters";
|
|
440
|
+
const _MTDC = "ModelTrainingDataChannel";
|
|
441
|
+
const _MTDCo = "ModelTrainingDataChannels";
|
|
442
|
+
const _PB = "PrivacyBudgets";
|
|
443
|
+
const _PC = "PayerConfiguration";
|
|
444
|
+
const _PCAMP = "PutConfiguredAudienceModelPolicy";
|
|
445
|
+
const _PCAMPR = "PutConfiguredAudienceModelPolicyRequest";
|
|
446
|
+
const _PCAMPRu = "PutConfiguredAudienceModelPolicyResponse";
|
|
447
|
+
const _PCP = "PrivacyConfigurationPolicies";
|
|
448
|
+
const _PCr = "PrivacyConfiguration";
|
|
449
|
+
const _PMLC = "PutMLConfiguration";
|
|
450
|
+
const _PMLCR = "PutMLConfigurationRequest";
|
|
451
|
+
const _PQIP = "ProtectedQueryInputParameters";
|
|
452
|
+
const _PQSQLP = "ProtectedQuerySQLParameters";
|
|
453
|
+
const _RC = "ResourceConfig";
|
|
454
|
+
const _RM = "RelevanceMetric";
|
|
455
|
+
const _RMe = "RelevanceMetrics";
|
|
456
|
+
const _RNFE = "ResourceNotFoundException";
|
|
457
|
+
const _SAEJ = "StartAudienceExportJob";
|
|
458
|
+
const _SAEJR = "StartAudienceExportJobRequest";
|
|
459
|
+
const _SAGJ = "StartAudienceGenerationJob";
|
|
460
|
+
const _SAGJR = "StartAudienceGenerationJobRequest";
|
|
461
|
+
const _SAGJRt = "StartAudienceGenerationJobResponse";
|
|
462
|
+
const _SC = "StoppingCondition";
|
|
463
|
+
const _SCM = "S3ConfigMap";
|
|
464
|
+
const _SD = "StatusDetails";
|
|
465
|
+
const _SDC = "SyntheticDataConfiguration";
|
|
466
|
+
const _SDCP = "SyntheticDataColumnProperties";
|
|
467
|
+
const _SDES = "SyntheticDataEvaluationScores";
|
|
468
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
469
|
+
const _STMEJ = "StartTrainedModelExportJob";
|
|
470
|
+
const _STMEJR = "StartTrainedModelExportJobRequest";
|
|
471
|
+
const _STMIJ = "StartTrainedModelInferenceJob";
|
|
472
|
+
const _STMIJR = "StartTrainedModelInferenceJobRequest";
|
|
473
|
+
const _STMIJRt = "StartTrainedModelInferenceJobResponse";
|
|
474
|
+
const _TDL = "TrainingDatasetList";
|
|
475
|
+
const _TDS = "TrainingDatasetSummary";
|
|
476
|
+
const _TE = "ThrottlingException";
|
|
477
|
+
const _TMAMS = "TrainedModelArtifactMaxSize";
|
|
478
|
+
const _TMCP = "TrainedModelsConfigurationPolicy";
|
|
479
|
+
const _TMECP = "TrainedModelExportsConfigurationPolicy";
|
|
480
|
+
const _TMEMS = "TrainedModelExportsMaxSize";
|
|
481
|
+
const _TMEOC = "TrainedModelExportOutputConfiguration";
|
|
482
|
+
const _TMERM = "TrainedModelExportReceiverMember";
|
|
483
|
+
const _TMERMr = "TrainedModelExportReceiverMembers";
|
|
484
|
+
const _TMIJCP = "TrainedModelInferenceJobsConfigurationPolicy";
|
|
485
|
+
const _TMIJL = "TrainedModelInferenceJobList";
|
|
486
|
+
const _TMIJS = "TrainedModelInferenceJobSummary";
|
|
487
|
+
const _TMIMOS = "TrainedModelInferenceMaxOutputSize";
|
|
488
|
+
const _TML = "TrainedModelList";
|
|
489
|
+
const _TMS = "TrainedModelSummary";
|
|
490
|
+
const _TR = "TagResource";
|
|
491
|
+
const _TRR = "TagResourceRequest";
|
|
492
|
+
const _TRRa = "TagResourceResponse";
|
|
493
|
+
const _UCAM = "UpdateConfiguredAudienceModel";
|
|
494
|
+
const _UCAMR = "UpdateConfiguredAudienceModelRequest";
|
|
495
|
+
const _UCAMRp = "UpdateConfiguredAudienceModelResponse";
|
|
496
|
+
const _UR = "UntagResource";
|
|
497
|
+
const _URR = "UntagResourceRequest";
|
|
498
|
+
const _URRn = "UntagResourceResponse";
|
|
499
|
+
const _VE = "ValidationException";
|
|
500
|
+
const _WCC = "WorkerComputeConfiguration";
|
|
501
|
+
const _WCCP = "WorkerComputeConfigurationProperties";
|
|
502
|
+
const _a = "arguments";
|
|
503
|
+
const _aAI = "allowedAccountIds";
|
|
504
|
+
const _aB = "accessBudgets";
|
|
505
|
+
const _aEJ = "audienceExportJobs";
|
|
506
|
+
const _aGJ = "audienceGenerationJobs";
|
|
507
|
+
const _aGJA = "audienceGenerationJobArn";
|
|
508
|
+
const _aI = "accountId";
|
|
509
|
+
const _aM = "audienceModels";
|
|
510
|
+
const _aMA = "audienceModelArn";
|
|
511
|
+
const _aR = "autoRefresh";
|
|
512
|
+
const _aRB = "aggregateRemainingBudget";
|
|
513
|
+
const _aS = "audienceSize";
|
|
514
|
+
const _aSB = "audienceSizeBins";
|
|
515
|
+
const _aSC = "audienceSizeConfig";
|
|
516
|
+
const _aST = "audienceSizeType";
|
|
517
|
+
const _aTA = "analysisTemplateArn";
|
|
518
|
+
const _aV = "attackVersion";
|
|
519
|
+
const _ac = "accept";
|
|
520
|
+
const _b = "budget";
|
|
521
|
+
const _bT = "budgetType";
|
|
522
|
+
const _c = "client";
|
|
523
|
+
const _cAI = "creatorAccountId";
|
|
524
|
+
const _cAM = "configuredAudienceModels";
|
|
525
|
+
const _cAMA = "configuredAudienceModelArn";
|
|
526
|
+
const _cAMP = "configuredAudienceModelPolicy";
|
|
527
|
+
const _cC = "columnClassification";
|
|
528
|
+
const _cCMAA = "collaborationConfiguredModelAlgorithmAssociations";
|
|
529
|
+
const _cCo = "computeConfiguration";
|
|
530
|
+
const _cDI = "customDataIdentifiers";
|
|
531
|
+
const _cEC = "customEntityConfig";
|
|
532
|
+
const _cEP = "containerExecutionParameters";
|
|
533
|
+
const _cI = "collaborationId";
|
|
534
|
+
const _cIa = "catalogId";
|
|
535
|
+
const _cIo = "collaborationIdentifier";
|
|
536
|
+
const _cL = "containerLogs";
|
|
537
|
+
const _cM = "columnMapping";
|
|
538
|
+
const _cMA = "configuredModelAlgorithms";
|
|
539
|
+
const _cMAA = "configuredModelAlgorithmArn";
|
|
540
|
+
const _cMAAA = "configuredModelAlgorithmAssociationArn";
|
|
541
|
+
const _cMAAo = "configuredModelAlgorithmAssociations";
|
|
542
|
+
const _cMLICL = "collaborationMLInputChannelsList";
|
|
543
|
+
const _cMo = "containerMetrics";
|
|
544
|
+
const _cN = "columnName";
|
|
545
|
+
const _cNh = "channelName";
|
|
546
|
+
const _cPAI = "computePayerAccountId";
|
|
547
|
+
const _cRTOCP = "childResourceTagOnCreatePolicy";
|
|
548
|
+
const _cT = "createTime";
|
|
549
|
+
const _cTM = "collaborationTrainedModels";
|
|
550
|
+
const _cTMEJ = "collaborationTrainedModelExportJobs";
|
|
551
|
+
const _cTMIJ = "collaborationTrainedModelInferenceJobs";
|
|
552
|
+
const _cTo = "columnTypes";
|
|
553
|
+
const _cTol = "columnType";
|
|
554
|
+
const _d = "details";
|
|
555
|
+
const _dC = "dataChannels";
|
|
556
|
+
const _dN = "databaseName";
|
|
557
|
+
const _dOL = "defaultOutputLocation";
|
|
558
|
+
const _dPS = "dataPrivacyScores";
|
|
559
|
+
const _dS = "dataSource";
|
|
560
|
+
const _de = "description";
|
|
561
|
+
const _des = "destination";
|
|
562
|
+
const _e = "error";
|
|
563
|
+
const _eT = "endTime";
|
|
564
|
+
const _eTR = "entitiesToRedact";
|
|
565
|
+
const _en = "entrypoint";
|
|
566
|
+
const _env = "environment";
|
|
567
|
+
const _ep = "epsilon";
|
|
568
|
+
const _fP = "filterPattern";
|
|
569
|
+
const _fTE = "filesToExport";
|
|
570
|
+
const _gDS = "glueDataSource";
|
|
571
|
+
const _h = "hyperparameters";
|
|
572
|
+
const _hE = "httpError";
|
|
573
|
+
const _hQ = "httpQuery";
|
|
574
|
+
const _ht = "http";
|
|
575
|
+
const _iC = "inputChannel";
|
|
576
|
+
const _iCC = "inferenceContainerConfig";
|
|
577
|
+
const _iCID = "inferenceContainerImageDigest";
|
|
578
|
+
const _iCn = "inputConfig";
|
|
579
|
+
const _iCns = "instanceCount";
|
|
580
|
+
const _iPV = "isPredictiveValue";
|
|
581
|
+
const _iSIO = "includeSeedInOutput";
|
|
582
|
+
const _iT = "instanceType";
|
|
583
|
+
const _iTDC = "incrementalTrainingDataChannels";
|
|
584
|
+
const _iU = "imageUri";
|
|
585
|
+
const _kKA = "kmsKeyArn";
|
|
586
|
+
const _lRC = "logRedactionConfiguration";
|
|
587
|
+
const _lS = "logsStatus";
|
|
588
|
+
const _lSD = "logsStatusDetails";
|
|
589
|
+
const _lT = "logType";
|
|
590
|
+
const _m = "message";
|
|
591
|
+
const _mAS = "maxArtifactSize";
|
|
592
|
+
const _mD = "metricDefinitions";
|
|
593
|
+
const _mI = "membershipIdentifier";
|
|
594
|
+
const _mIAS = "membershipInferenceAttackScores";
|
|
595
|
+
const _mICA = "mlInputChannelArn";
|
|
596
|
+
const _mICL = "mlInputChannelsList";
|
|
597
|
+
const _mMIAS = "maxMembershipInferenceAttackScore";
|
|
598
|
+
const _mMIPAI = "mlModelInferencePayerAccountId";
|
|
599
|
+
const _mMSS = "minMatchingSeedSize";
|
|
600
|
+
const _mMTPAI = "mlModelTrainingPayerAccountId";
|
|
601
|
+
const _mN = "modelName";
|
|
602
|
+
const _mOS = "maxOutputSize";
|
|
603
|
+
const _mPIMB = "maxPayloadInMB";
|
|
604
|
+
const _mR = "maxResults";
|
|
605
|
+
const _mRIS = "maxRuntimeInSeconds";
|
|
606
|
+
const _mS = "metricsStatus";
|
|
607
|
+
const _mSD = "metricsStatusDetails";
|
|
608
|
+
const _mSa = "maxSize";
|
|
609
|
+
const _me = "metrics";
|
|
610
|
+
const _mem = "members";
|
|
611
|
+
const _n = "name";
|
|
612
|
+
const _nL = "noiseLevel";
|
|
613
|
+
const _nOF = "numberOfFiles";
|
|
614
|
+
const _nOR = "numberOfRecords";
|
|
615
|
+
const _nT = "nextToken";
|
|
616
|
+
const _nu = "number";
|
|
617
|
+
const _oC = "outputConfiguration";
|
|
618
|
+
const _oCu = "outputConfig";
|
|
619
|
+
const _oL = "outputLocation";
|
|
620
|
+
const _p = "policies";
|
|
621
|
+
const _pB = "privacyBudgets";
|
|
622
|
+
const _pC = "payerConfiguration";
|
|
623
|
+
const _pCr = "privacyConfiguration";
|
|
624
|
+
const _pEC = "policyExistenceCondition";
|
|
625
|
+
const _pH = "policyHash";
|
|
626
|
+
const _pPH = "previousPolicyHash";
|
|
627
|
+
const _pQI = "protectedQueryIdentifier";
|
|
628
|
+
const _pQIP = "protectedQueryInputParameters";
|
|
629
|
+
const _pa = "parameters";
|
|
630
|
+
const _pr = "properties";
|
|
631
|
+
const _qN = "quotaName";
|
|
632
|
+
const _qS = "queryString";
|
|
633
|
+
const _qV = "quotaValue";
|
|
634
|
+
const _r = "regex";
|
|
635
|
+
const _rA = "resourceArn";
|
|
636
|
+
const _rAo = "roleArn";
|
|
637
|
+
const _rB = "remainingBudget";
|
|
638
|
+
const _rC = "resourceConfig";
|
|
639
|
+
const _rF = "resultFormat";
|
|
640
|
+
const _rID = "retentionInDays";
|
|
641
|
+
const _rM = "relevanceMetrics";
|
|
642
|
+
const _rMe = "recallMetric";
|
|
643
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.cleanroomsml";
|
|
644
|
+
const _sA = "seedAudience";
|
|
645
|
+
const _sAM = "sharedAudienceMetrics";
|
|
646
|
+
const _sB = "startedBy";
|
|
647
|
+
const _sC = "stoppingCondition";
|
|
648
|
+
const _sCC = "sqlComputeConfiguration";
|
|
649
|
+
const _sCt = "statusCode";
|
|
650
|
+
const _sD = "s3Destination";
|
|
651
|
+
const _sDC = "syntheticDataConfiguration";
|
|
652
|
+
const _sDDT = "s3DataDistributionType";
|
|
653
|
+
const _sDES = "syntheticDataEvaluationScores";
|
|
654
|
+
const _sDP = "syntheticDataParameters";
|
|
655
|
+
const _sDPAI = "syntheticDataPayerAccountId";
|
|
656
|
+
const _sDt = "statusDetails";
|
|
657
|
+
const _sIG = "sizeInGb";
|
|
658
|
+
const _sP = "sqlParameters";
|
|
659
|
+
const _sT = "startTime";
|
|
660
|
+
const _sU = "s3Uri";
|
|
661
|
+
const _sc = "schema";
|
|
662
|
+
const _sco = "score";
|
|
663
|
+
const _se = "server";
|
|
664
|
+
const _sp = "spark";
|
|
665
|
+
const _st = "status";
|
|
666
|
+
const _t = "type";
|
|
667
|
+
const _tCC = "trainingContainerConfig";
|
|
668
|
+
const _tCID = "trainingContainerImageDigest";
|
|
669
|
+
const _tD = "trainingData";
|
|
670
|
+
const _tDA = "trainingDatasetArn";
|
|
671
|
+
const _tDET = "trainingDataEndTime";
|
|
672
|
+
const _tDST = "trainingDataStartTime";
|
|
673
|
+
const _tDr = "trainingDatasets";
|
|
674
|
+
const _tIM = "trainingInputMode";
|
|
675
|
+
const _tK = "tagKeys";
|
|
676
|
+
const _tM = "trainedModels";
|
|
677
|
+
const _tMA = "trainedModelArn";
|
|
678
|
+
const _tME = "trainedModelExports";
|
|
679
|
+
const _tMIJ = "trainedModelInferenceJobs";
|
|
680
|
+
const _tMIJA = "trainedModelInferenceJobArn";
|
|
681
|
+
const _tMVI = "trainedModelVersionIdentifier";
|
|
682
|
+
const _tN = "tableName";
|
|
683
|
+
const _ta = "tags";
|
|
684
|
+
const _u = "unit";
|
|
685
|
+
const _uT = "updateTime";
|
|
686
|
+
const _v = "value";
|
|
687
|
+
const _vI = "versionIdentifier";
|
|
688
|
+
const _vSIGB = "volumeSizeInGB";
|
|
689
|
+
const _w = "worker";
|
|
690
|
+
const n0 = "com.amazonaws.cleanroomsml";
|
|
691
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
692
|
+
var CleanRoomsMLServiceException$ = [-3, _s, "CleanRoomsMLServiceException", 0, [], []];
|
|
693
|
+
_s_registry.registerError(CleanRoomsMLServiceException$, CleanRoomsMLServiceException);
|
|
694
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
695
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
696
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
697
|
+
[_m],
|
|
698
|
+
[0], 1
|
|
699
|
+
];
|
|
700
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
701
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
702
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
703
|
+
[_m],
|
|
704
|
+
[0], 1
|
|
705
|
+
];
|
|
706
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
707
|
+
var InternalServiceException$ = [-3, n0, _ISE,
|
|
708
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
709
|
+
[_m],
|
|
710
|
+
[0], 1
|
|
711
|
+
];
|
|
712
|
+
n0_registry.registerError(InternalServiceException$, InternalServiceException);
|
|
713
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
714
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
715
|
+
[_m],
|
|
716
|
+
[0], 1
|
|
717
|
+
];
|
|
718
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
719
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
720
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
721
|
+
[_m, _qN, _qV],
|
|
722
|
+
[0, 0, 1], 1
|
|
723
|
+
];
|
|
724
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
725
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
726
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
727
|
+
[_m],
|
|
728
|
+
[0], 1
|
|
729
|
+
];
|
|
730
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
731
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
732
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
733
|
+
[_m],
|
|
734
|
+
[0], 1
|
|
735
|
+
];
|
|
736
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
737
|
+
const errorTypeRegistries = [
|
|
738
|
+
_s_registry,
|
|
739
|
+
n0_registry,
|
|
740
|
+
];
|
|
741
|
+
var AccessBudget$ = [3, n0, _AB,
|
|
742
|
+
0,
|
|
743
|
+
[_rA, _d, _aRB],
|
|
744
|
+
[0, () => AccessBudgetDetailsList, 1], 3
|
|
745
|
+
];
|
|
746
|
+
var AccessBudgetDetails$ = [3, n0, _ABD,
|
|
747
|
+
0,
|
|
748
|
+
[_sT, _rB, _b, _bT, _eT, _aR],
|
|
749
|
+
[5, 1, 1, 0, 5, 0], 4
|
|
750
|
+
];
|
|
751
|
+
var AudienceDestination$ = [3, n0, _AD,
|
|
752
|
+
0,
|
|
753
|
+
[_sD],
|
|
754
|
+
[() => S3ConfigMap$], 1
|
|
755
|
+
];
|
|
756
|
+
var AudienceExportJobSummary$ = [3, n0, _AEJS,
|
|
757
|
+
0,
|
|
758
|
+
[_cT, _uT, _n, _aGJA, _aS, _st, _de, _sDt, _oL],
|
|
759
|
+
[5, 5, 0, 0, () => AudienceSize$, 0, 0, () => StatusDetails$, 0], 6
|
|
760
|
+
];
|
|
761
|
+
var AudienceGenerationJobDataSource$ = [3, n0, _AGJDS,
|
|
762
|
+
0,
|
|
763
|
+
[_rAo, _dS, _sP, _sCC],
|
|
764
|
+
[0, () => S3ConfigMap$, [() => ProtectedQuerySQLParameters$, 0], () => ComputeConfiguration$], 1
|
|
765
|
+
];
|
|
766
|
+
var AudienceGenerationJobSummary$ = [3, n0, _AGJS,
|
|
767
|
+
0,
|
|
768
|
+
[_cT, _uT, _aGJA, _n, _st, _cAMA, _de, _cI, _sB],
|
|
769
|
+
[5, 5, 0, 0, 0, 0, 0, 0, 0], 6
|
|
770
|
+
];
|
|
771
|
+
var AudienceModelSummary$ = [3, n0, _AMS,
|
|
772
|
+
0,
|
|
773
|
+
[_cT, _uT, _aMA, _n, _tDA, _st, _de],
|
|
774
|
+
[5, 5, 0, 0, 0, 0, 0], 6
|
|
775
|
+
];
|
|
776
|
+
var AudienceQualityMetrics$ = [3, n0, _AQM,
|
|
777
|
+
0,
|
|
778
|
+
[_rM, _rMe],
|
|
779
|
+
[() => RelevanceMetrics, 1], 1
|
|
780
|
+
];
|
|
781
|
+
var AudienceSize$ = [3, n0, _AS,
|
|
782
|
+
0,
|
|
783
|
+
[_t, _v],
|
|
784
|
+
[0, 1], 2
|
|
785
|
+
];
|
|
786
|
+
var AudienceSizeConfig$ = [3, n0, _ASC,
|
|
787
|
+
0,
|
|
788
|
+
[_aST, _aSB],
|
|
789
|
+
[0, 64 | 1], 2
|
|
790
|
+
];
|
|
791
|
+
var CancelTrainedModelInferenceJobRequest$ = [3, n0, _CTMIJR,
|
|
792
|
+
0,
|
|
793
|
+
[_mI, _tMIJA],
|
|
794
|
+
[[0, 1], [0, 1]], 2
|
|
795
|
+
];
|
|
796
|
+
var CancelTrainedModelRequest$ = [3, n0, _CTMR,
|
|
797
|
+
0,
|
|
798
|
+
[_mI, _tMA, _vI],
|
|
799
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _vI }]], 2
|
|
800
|
+
];
|
|
801
|
+
var CollaborationConfiguredModelAlgorithmAssociationSummary$ = [3, n0, _CCMAAS,
|
|
802
|
+
0,
|
|
803
|
+
[_cT, _uT, _cMAAA, _n, _mI, _cIo, _cMAA, _cAI, _de],
|
|
804
|
+
[5, 5, 0, 0, 0, 0, 0, 0, 0], 8
|
|
805
|
+
];
|
|
806
|
+
var CollaborationMLInputChannelSummary$ = [3, n0, _CMLICS,
|
|
807
|
+
0,
|
|
808
|
+
[_cT, _uT, _mI, _cIo, _n, _cMAAo, _mICA, _st, _cAI, _de, _pC],
|
|
809
|
+
[5, 5, 0, 0, 0, 64 | 0, 0, 0, 0, 0, () => PayerConfiguration$], 9
|
|
810
|
+
];
|
|
811
|
+
var CollaborationTrainedModelExportJobSummary$ = [3, n0, _CTMEJS,
|
|
812
|
+
0,
|
|
813
|
+
[_cT, _uT, _n, _oC, _st, _cAI, _tMA, _mI, _cIo, _sDt, _de, _tMVI],
|
|
814
|
+
[5, 5, 0, () => TrainedModelExportOutputConfiguration$, 0, 0, 0, 0, 0, () => StatusDetails$, 0, 0], 9
|
|
815
|
+
];
|
|
816
|
+
var CollaborationTrainedModelInferenceJobSummary$ = [3, n0, _CTMIJS,
|
|
817
|
+
0,
|
|
818
|
+
[_tMIJA, _mI, _tMA, _cIo, _st, _oC, _n, _cT, _uT, _cAI, _cMAAA, _tMVI, _de, _mS, _mSD, _lS, _lSD, _mMIPAI],
|
|
819
|
+
[0, 0, 0, 0, 0, () => InferenceOutputConfiguration$, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0], 10
|
|
820
|
+
];
|
|
821
|
+
var CollaborationTrainedModelSummary$ = [3, n0, _CTMS,
|
|
822
|
+
0,
|
|
823
|
+
[_cT, _uT, _tMA, _n, _mI, _cIo, _st, _cMAAA, _cAI, _vI, _iTDC, _de, _mMTPAI],
|
|
824
|
+
[5, 5, 0, 0, 0, 0, 0, 0, 0, 0, () => IncrementalTrainingDataChannelsOutput, 0, 0], 9
|
|
825
|
+
];
|
|
826
|
+
var ColumnClassificationDetails$ = [3, n0, _CCD,
|
|
827
|
+
0,
|
|
828
|
+
[_cM],
|
|
829
|
+
[() => ColumnMappingList], 1
|
|
830
|
+
];
|
|
831
|
+
var ColumnSchema$ = [3, n0, _CS,
|
|
832
|
+
0,
|
|
833
|
+
[_cN, _cTo],
|
|
834
|
+
[0, 64 | 0], 2
|
|
835
|
+
];
|
|
836
|
+
var ConfiguredAudienceModelOutputConfig$ = [3, n0, _CAMOC,
|
|
837
|
+
0,
|
|
838
|
+
[_des, _rAo],
|
|
839
|
+
[() => AudienceDestination$, 0], 2
|
|
840
|
+
];
|
|
841
|
+
var ConfiguredAudienceModelSummary$ = [3, n0, _CAMS,
|
|
842
|
+
0,
|
|
843
|
+
[_cT, _uT, _n, _aMA, _oCu, _cAMA, _st, _de],
|
|
844
|
+
[5, 5, 0, 0, () => ConfiguredAudienceModelOutputConfig$, 0, 0, 0], 7
|
|
845
|
+
];
|
|
846
|
+
var ConfiguredModelAlgorithmAssociationSummary$ = [3, n0, _CMAAS,
|
|
847
|
+
0,
|
|
848
|
+
[_cT, _uT, _cMAAA, _cMAA, _n, _mI, _cIo, _de],
|
|
849
|
+
[5, 5, 0, 0, 0, 0, 0, 0], 7
|
|
850
|
+
];
|
|
851
|
+
var ConfiguredModelAlgorithmSummary$ = [3, n0, _CMAS,
|
|
852
|
+
0,
|
|
853
|
+
[_cT, _uT, _cMAA, _n, _de],
|
|
854
|
+
[5, 5, 0, 0, 0], 4
|
|
855
|
+
];
|
|
856
|
+
var ContainerConfig$ = [3, n0, _CC,
|
|
857
|
+
0,
|
|
858
|
+
[_iU, _en, _a, _mD],
|
|
859
|
+
[0, 64 | 0, 64 | 0, () => MetricDefinitionList], 1
|
|
860
|
+
];
|
|
861
|
+
var CreateAudienceModelRequest$ = [3, n0, _CAMR,
|
|
862
|
+
0,
|
|
863
|
+
[_n, _tDA, _tDST, _tDET, _kKA, _ta, _de],
|
|
864
|
+
[0, 0, 5, 5, 0, 128 | 0, 0], 2
|
|
865
|
+
];
|
|
866
|
+
var CreateAudienceModelResponse$ = [3, n0, _CAMRr,
|
|
867
|
+
0,
|
|
868
|
+
[_aMA],
|
|
869
|
+
[0], 1
|
|
870
|
+
];
|
|
871
|
+
var CreateConfiguredAudienceModelRequest$ = [3, n0, _CCAMR,
|
|
872
|
+
0,
|
|
873
|
+
[_n, _aMA, _oCu, _sAM, _de, _mMSS, _aSC, _ta, _cRTOCP],
|
|
874
|
+
[0, 0, () => ConfiguredAudienceModelOutputConfig$, 64 | 0, 0, 1, () => AudienceSizeConfig$, 128 | 0, 0], 4
|
|
875
|
+
];
|
|
876
|
+
var CreateConfiguredAudienceModelResponse$ = [3, n0, _CCAMRr,
|
|
877
|
+
0,
|
|
878
|
+
[_cAMA],
|
|
879
|
+
[0], 1
|
|
880
|
+
];
|
|
881
|
+
var CreateConfiguredModelAlgorithmAssociationRequest$ = [3, n0, _CCMAAR,
|
|
882
|
+
0,
|
|
883
|
+
[_mI, _cMAA, _n, _de, _pCr, _ta],
|
|
884
|
+
[[0, 1], 0, 0, 0, () => PrivacyConfiguration$, 128 | 0], 3
|
|
885
|
+
];
|
|
886
|
+
var CreateConfiguredModelAlgorithmAssociationResponse$ = [3, n0, _CCMAARr,
|
|
887
|
+
0,
|
|
888
|
+
[_cMAAA],
|
|
889
|
+
[0], 1
|
|
890
|
+
];
|
|
891
|
+
var CreateConfiguredModelAlgorithmRequest$ = [3, n0, _CCMAR,
|
|
892
|
+
0,
|
|
893
|
+
[_n, _rAo, _de, _tCC, _iCC, _ta, _kKA],
|
|
894
|
+
[0, 0, 0, () => ContainerConfig$, () => InferenceContainerConfig$, 128 | 0, 0], 2
|
|
895
|
+
];
|
|
896
|
+
var CreateConfiguredModelAlgorithmResponse$ = [3, n0, _CCMARr,
|
|
897
|
+
0,
|
|
898
|
+
[_cMAA],
|
|
899
|
+
[0], 1
|
|
900
|
+
];
|
|
901
|
+
var CreateMLInputChannelRequest$ = [3, n0, _CMLICR,
|
|
902
|
+
0,
|
|
903
|
+
[_mI, _cMAAo, _iC, _n, _rID, _de, _kKA, _ta, _pC],
|
|
904
|
+
[[0, 1], 64 | 0, [() => InputChannel$, 0], 0, 1, 0, 0, 128 | 0, () => PayerConfiguration$], 5
|
|
905
|
+
];
|
|
906
|
+
var CreateMLInputChannelResponse$ = [3, n0, _CMLICRr,
|
|
907
|
+
0,
|
|
908
|
+
[_mICA],
|
|
909
|
+
[0], 1
|
|
910
|
+
];
|
|
911
|
+
var CreateTrainedModelRequest$ = [3, n0, _CTMRr,
|
|
912
|
+
0,
|
|
913
|
+
[_mI, _n, _cMAAA, _rC, _dC, _h, _env, _sC, _iTDC, _tIM, _de, _kKA, _ta, _mMTPAI],
|
|
914
|
+
[[0, 1], 0, 0, () => ResourceConfig$, () => ModelTrainingDataChannels, 128 | 0, 128 | 0, () => StoppingCondition$, () => IncrementalTrainingDataChannels, 0, 0, 0, 128 | 0, 0], 5
|
|
915
|
+
];
|
|
916
|
+
var CreateTrainedModelResponse$ = [3, n0, _CTMRre,
|
|
917
|
+
0,
|
|
918
|
+
[_tMA, _vI],
|
|
919
|
+
[0, 0], 1
|
|
920
|
+
];
|
|
921
|
+
var CreateTrainingDatasetRequest$ = [3, n0, _CTDR,
|
|
922
|
+
0,
|
|
923
|
+
[_n, _rAo, _tD, _ta, _de],
|
|
924
|
+
[0, 0, () => DatasetList, 128 | 0, 0], 3
|
|
925
|
+
];
|
|
926
|
+
var CreateTrainingDatasetResponse$ = [3, n0, _CTDRr,
|
|
927
|
+
0,
|
|
928
|
+
[_tDA],
|
|
929
|
+
[0], 1
|
|
930
|
+
];
|
|
931
|
+
var CustomEntityConfig$ = [3, n0, _CEC,
|
|
932
|
+
0,
|
|
933
|
+
[_cDI],
|
|
934
|
+
[64 | 0], 1
|
|
935
|
+
];
|
|
936
|
+
var DataPrivacyScores$ = [3, n0, _DPS,
|
|
937
|
+
0,
|
|
938
|
+
[_mIAS],
|
|
939
|
+
[() => MembershipInferenceAttackScoreList], 1
|
|
940
|
+
];
|
|
941
|
+
var Dataset$ = [3, n0, _D,
|
|
942
|
+
0,
|
|
943
|
+
[_t, _iCn],
|
|
944
|
+
[0, () => DatasetInputConfig$], 2
|
|
945
|
+
];
|
|
946
|
+
var DatasetInputConfig$ = [3, n0, _DIC,
|
|
947
|
+
0,
|
|
948
|
+
[_sc, _dS],
|
|
949
|
+
[() => DatasetSchemaList, () => DataSource$], 2
|
|
950
|
+
];
|
|
951
|
+
var DataSource$ = [3, n0, _DS,
|
|
952
|
+
0,
|
|
953
|
+
[_gDS],
|
|
954
|
+
[() => GlueDataSource$], 1
|
|
955
|
+
];
|
|
956
|
+
var DeleteAudienceGenerationJobRequest$ = [3, n0, _DAGJR,
|
|
957
|
+
0,
|
|
958
|
+
[_aGJA],
|
|
959
|
+
[[0, 1]], 1
|
|
960
|
+
];
|
|
961
|
+
var DeleteAudienceModelRequest$ = [3, n0, _DAMR,
|
|
962
|
+
0,
|
|
963
|
+
[_aMA],
|
|
964
|
+
[[0, 1]], 1
|
|
965
|
+
];
|
|
966
|
+
var DeleteConfiguredAudienceModelPolicyRequest$ = [3, n0, _DCAMPR,
|
|
967
|
+
0,
|
|
968
|
+
[_cAMA],
|
|
969
|
+
[[0, 1]], 1
|
|
970
|
+
];
|
|
971
|
+
var DeleteConfiguredAudienceModelRequest$ = [3, n0, _DCAMR,
|
|
972
|
+
0,
|
|
973
|
+
[_cAMA],
|
|
974
|
+
[[0, 1]], 1
|
|
975
|
+
];
|
|
976
|
+
var DeleteConfiguredModelAlgorithmAssociationRequest$ = [3, n0, _DCMAAR,
|
|
977
|
+
0,
|
|
978
|
+
[_cMAAA, _mI],
|
|
979
|
+
[[0, 1], [0, 1]], 2
|
|
980
|
+
];
|
|
981
|
+
var DeleteConfiguredModelAlgorithmRequest$ = [3, n0, _DCMAR,
|
|
982
|
+
0,
|
|
983
|
+
[_cMAA],
|
|
984
|
+
[[0, 1]], 1
|
|
985
|
+
];
|
|
986
|
+
var DeleteMLConfigurationRequest$ = [3, n0, _DMLCR,
|
|
987
|
+
0,
|
|
988
|
+
[_mI],
|
|
989
|
+
[[0, 1]], 1
|
|
990
|
+
];
|
|
991
|
+
var DeleteMLInputChannelDataRequest$ = [3, n0, _DMLICDR,
|
|
992
|
+
0,
|
|
993
|
+
[_mICA, _mI],
|
|
994
|
+
[[0, 1], [0, 1]], 2
|
|
995
|
+
];
|
|
996
|
+
var DeleteTrainedModelOutputRequest$ = [3, n0, _DTMOR,
|
|
997
|
+
0,
|
|
998
|
+
[_tMA, _mI, _vI],
|
|
999
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _vI }]], 2
|
|
1000
|
+
];
|
|
1001
|
+
var DeleteTrainingDatasetRequest$ = [3, n0, _DTDR,
|
|
1002
|
+
0,
|
|
1003
|
+
[_tDA],
|
|
1004
|
+
[[0, 1]], 1
|
|
1005
|
+
];
|
|
1006
|
+
var Destination$ = [3, n0, _De,
|
|
1007
|
+
0,
|
|
1008
|
+
[_sD],
|
|
1009
|
+
[() => S3ConfigMap$], 1
|
|
1010
|
+
];
|
|
1011
|
+
var GetAudienceGenerationJobRequest$ = [3, n0, _GAGJR,
|
|
1012
|
+
0,
|
|
1013
|
+
[_aGJA],
|
|
1014
|
+
[[0, 1]], 1
|
|
1015
|
+
];
|
|
1016
|
+
var GetAudienceGenerationJobResponse$ = [3, n0, _GAGJRe,
|
|
1017
|
+
0,
|
|
1018
|
+
[_cT, _uT, _aGJA, _n, _st, _cAMA, _de, _sDt, _sA, _iSIO, _cI, _me, _sB, _ta, _pQI],
|
|
1019
|
+
[5, 5, 0, 0, 0, 0, 0, () => StatusDetails$, [() => AudienceGenerationJobDataSource$, 0], 2, 0, () => AudienceQualityMetrics$, 0, 128 | 0, 0], 6
|
|
1020
|
+
];
|
|
1021
|
+
var GetAudienceModelRequest$ = [3, n0, _GAMR,
|
|
1022
|
+
0,
|
|
1023
|
+
[_aMA],
|
|
1024
|
+
[[0, 1]], 1
|
|
1025
|
+
];
|
|
1026
|
+
var GetAudienceModelResponse$ = [3, n0, _GAMRe,
|
|
1027
|
+
0,
|
|
1028
|
+
[_cT, _uT, _aMA, _n, _tDA, _st, _tDST, _tDET, _sDt, _kKA, _ta, _de],
|
|
1029
|
+
[5, 5, 0, 0, 0, 0, 5, 5, () => StatusDetails$, 0, 128 | 0, 0], 6
|
|
1030
|
+
];
|
|
1031
|
+
var GetCollaborationConfiguredModelAlgorithmAssociationRequest$ = [3, n0, _GCCMAAR,
|
|
1032
|
+
0,
|
|
1033
|
+
[_cMAAA, _cIo],
|
|
1034
|
+
[[0, 1], [0, 1]], 2
|
|
1035
|
+
];
|
|
1036
|
+
var GetCollaborationConfiguredModelAlgorithmAssociationResponse$ = [3, n0, _GCCMAARe,
|
|
1037
|
+
0,
|
|
1038
|
+
[_cT, _uT, _cMAAA, _mI, _cIo, _cMAA, _n, _cAI, _de, _pCr],
|
|
1039
|
+
[5, 5, 0, 0, 0, 0, 0, 0, 0, () => PrivacyConfiguration$], 8
|
|
1040
|
+
];
|
|
1041
|
+
var GetCollaborationMLInputChannelRequest$ = [3, n0, _GCMLICR,
|
|
1042
|
+
0,
|
|
1043
|
+
[_mICA, _cIo],
|
|
1044
|
+
[[0, 1], [0, 1]], 2
|
|
1045
|
+
];
|
|
1046
|
+
var GetCollaborationMLInputChannelResponse$ = [3, n0, _GCMLICRe,
|
|
1047
|
+
0,
|
|
1048
|
+
[_mI, _cIo, _mICA, _n, _cMAAo, _st, _rID, _cT, _uT, _cAI, _sDt, _nOR, _pB, _de, _sDC, _pC],
|
|
1049
|
+
[0, 0, 0, 0, 64 | 0, 0, 1, 5, 5, 0, () => StatusDetails$, 1, () => PrivacyBudgets$, 0, () => SyntheticDataConfiguration$, () => PayerConfiguration$], 10
|
|
1050
|
+
];
|
|
1051
|
+
var GetCollaborationTrainedModelRequest$ = [3, n0, _GCTMR,
|
|
1052
|
+
0,
|
|
1053
|
+
[_tMA, _cIo, _vI],
|
|
1054
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _vI }]], 2
|
|
1055
|
+
];
|
|
1056
|
+
var GetCollaborationTrainedModelResponse$ = [3, n0, _GCTMRe,
|
|
1057
|
+
0,
|
|
1058
|
+
[_mI, _cIo, _tMA, _n, _st, _cMAAA, _cT, _uT, _cAI, _vI, _iTDC, _de, _sDt, _rC, _tIM, _sC, _mS, _mSD, _lS, _lSD, _tCID, _mMTPAI],
|
|
1059
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 0, 0, () => IncrementalTrainingDataChannelsOutput, 0, () => StatusDetails$, () => ResourceConfig$, 0, () => StoppingCondition$, 0, 0, 0, 0, 0, 0], 9
|
|
1060
|
+
];
|
|
1061
|
+
var GetConfiguredAudienceModelPolicyRequest$ = [3, n0, _GCAMPR,
|
|
1062
|
+
0,
|
|
1063
|
+
[_cAMA],
|
|
1064
|
+
[[0, 1]], 1
|
|
1065
|
+
];
|
|
1066
|
+
var GetConfiguredAudienceModelPolicyResponse$ = [3, n0, _GCAMPRe,
|
|
1067
|
+
0,
|
|
1068
|
+
[_cAMA, _cAMP, _pH],
|
|
1069
|
+
[0, 0, 0], 3
|
|
1070
|
+
];
|
|
1071
|
+
var GetConfiguredAudienceModelRequest$ = [3, n0, _GCAMR,
|
|
1072
|
+
0,
|
|
1073
|
+
[_cAMA],
|
|
1074
|
+
[[0, 1]], 1
|
|
1075
|
+
];
|
|
1076
|
+
var GetConfiguredAudienceModelResponse$ = [3, n0, _GCAMRe,
|
|
1077
|
+
0,
|
|
1078
|
+
[_cT, _uT, _cAMA, _n, _aMA, _oCu, _st, _sAM, _de, _mMSS, _aSC, _ta, _cRTOCP],
|
|
1079
|
+
[5, 5, 0, 0, 0, () => ConfiguredAudienceModelOutputConfig$, 0, 64 | 0, 0, 1, () => AudienceSizeConfig$, 128 | 0, 0], 8
|
|
1080
|
+
];
|
|
1081
|
+
var GetConfiguredModelAlgorithmAssociationRequest$ = [3, n0, _GCMAAR,
|
|
1082
|
+
0,
|
|
1083
|
+
[_cMAAA, _mI],
|
|
1084
|
+
[[0, 1], [0, 1]], 2
|
|
1085
|
+
];
|
|
1086
|
+
var GetConfiguredModelAlgorithmAssociationResponse$ = [3, n0, _GCMAARe,
|
|
1087
|
+
0,
|
|
1088
|
+
[_cT, _uT, _cMAAA, _mI, _cIo, _cMAA, _n, _pCr, _de, _ta],
|
|
1089
|
+
[5, 5, 0, 0, 0, 0, 0, () => PrivacyConfiguration$, 0, 128 | 0], 7
|
|
1090
|
+
];
|
|
1091
|
+
var GetConfiguredModelAlgorithmRequest$ = [3, n0, _GCMAR,
|
|
1092
|
+
0,
|
|
1093
|
+
[_cMAA],
|
|
1094
|
+
[[0, 1]], 1
|
|
1095
|
+
];
|
|
1096
|
+
var GetConfiguredModelAlgorithmResponse$ = [3, n0, _GCMARe,
|
|
1097
|
+
0,
|
|
1098
|
+
[_cT, _uT, _cMAA, _n, _rAo, _tCC, _iCC, _de, _ta, _kKA],
|
|
1099
|
+
[5, 5, 0, 0, 0, () => ContainerConfig$, () => InferenceContainerConfig$, 0, 128 | 0, 0], 5
|
|
1100
|
+
];
|
|
1101
|
+
var GetMLConfigurationRequest$ = [3, n0, _GMLCR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_mI],
|
|
1104
|
+
[[0, 1]], 1
|
|
1105
|
+
];
|
|
1106
|
+
var GetMLConfigurationResponse$ = [3, n0, _GMLCRe,
|
|
1107
|
+
0,
|
|
1108
|
+
[_mI, _dOL, _cT, _uT],
|
|
1109
|
+
[0, () => MLOutputConfiguration$, 5, 5], 4
|
|
1110
|
+
];
|
|
1111
|
+
var GetMLInputChannelRequest$ = [3, n0, _GMLICR,
|
|
1112
|
+
0,
|
|
1113
|
+
[_mICA, _mI],
|
|
1114
|
+
[[0, 1], [0, 1]], 2
|
|
1115
|
+
];
|
|
1116
|
+
var GetMLInputChannelResponse$ = [3, n0, _GMLICRe,
|
|
1117
|
+
0,
|
|
1118
|
+
[_mI, _cIo, _mICA, _n, _cMAAo, _st, _rID, _cT, _uT, _iC, _sDt, _nOR, _pB, _de, _sDC, _pC, _pQI, _nOF, _sIG, _kKA, _ta],
|
|
1119
|
+
[0, 0, 0, 0, 64 | 0, 0, 1, 5, 5, [() => InputChannel$, 0], () => StatusDetails$, 1, () => PrivacyBudgets$, 0, () => SyntheticDataConfiguration$, () => PayerConfiguration$, 0, 1, 1, 0, 128 | 0], 10
|
|
1120
|
+
];
|
|
1121
|
+
var GetTrainedModelInferenceJobRequest$ = [3, n0, _GTMIJR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_mI, _tMIJA],
|
|
1124
|
+
[[0, 1], [0, 1]], 2
|
|
1125
|
+
];
|
|
1126
|
+
var GetTrainedModelInferenceJobResponse$ = [3, n0, _GTMIJRe,
|
|
1127
|
+
0,
|
|
1128
|
+
[_cT, _uT, _tMIJA, _n, _st, _tMA, _rC, _oC, _mI, _dS, _cMAAA, _tMVI, _cEP, _sDt, _de, _iCID, _env, _kKA, _mS, _mSD, _lS, _lSD, _ta, _mMIPAI],
|
|
1129
|
+
[5, 5, 0, 0, 0, 0, () => InferenceResourceConfig$, () => InferenceOutputConfiguration$, 0, () => ModelInferenceDataSource$, 0, 0, () => InferenceContainerExecutionParameters$, () => StatusDetails$, 0, 0, 128 | 0, 0, 0, 0, 0, 0, 128 | 0, 0], 10
|
|
1130
|
+
];
|
|
1131
|
+
var GetTrainedModelRequest$ = [3, n0, _GTMR,
|
|
1132
|
+
0,
|
|
1133
|
+
[_tMA, _mI, _vI],
|
|
1134
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _vI }]], 2
|
|
1135
|
+
];
|
|
1136
|
+
var GetTrainedModelResponse$ = [3, n0, _GTMRe,
|
|
1137
|
+
0,
|
|
1138
|
+
[_mI, _cIo, _tMA, _n, _st, _cMAAA, _cT, _uT, _dC, _vI, _iTDC, _de, _sDt, _rC, _tIM, _sC, _mS, _mSD, _lS, _lSD, _tCID, _mMTPAI, _h, _env, _kKA, _ta],
|
|
1139
|
+
[0, 0, 0, 0, 0, 0, 5, 5, () => ModelTrainingDataChannels, 0, () => IncrementalTrainingDataChannelsOutput, 0, () => StatusDetails$, () => ResourceConfig$, 0, () => StoppingCondition$, 0, 0, 0, 0, 0, 0, 128 | 0, 128 | 0, 0, 128 | 0], 9
|
|
1140
|
+
];
|
|
1141
|
+
var GetTrainingDatasetRequest$ = [3, n0, _GTDR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_tDA],
|
|
1144
|
+
[[0, 1]], 1
|
|
1145
|
+
];
|
|
1146
|
+
var GetTrainingDatasetResponse$ = [3, n0, _GTDRe,
|
|
1147
|
+
0,
|
|
1148
|
+
[_cT, _uT, _tDA, _n, _tD, _st, _rAo, _ta, _de],
|
|
1149
|
+
[5, 5, 0, 0, () => DatasetList, 0, 0, 128 | 0, 0], 7
|
|
1150
|
+
];
|
|
1151
|
+
var GlueDataSource$ = [3, n0, _GDS,
|
|
1152
|
+
0,
|
|
1153
|
+
[_tN, _dN, _cIa],
|
|
1154
|
+
[0, 0, 0], 2
|
|
1155
|
+
];
|
|
1156
|
+
var IncrementalTrainingDataChannel$ = [3, n0, _ITDC,
|
|
1157
|
+
0,
|
|
1158
|
+
[_tMA, _cNh, _vI],
|
|
1159
|
+
[0, 0, 0], 2
|
|
1160
|
+
];
|
|
1161
|
+
var IncrementalTrainingDataChannelOutput$ = [3, n0, _ITDCO,
|
|
1162
|
+
0,
|
|
1163
|
+
[_cNh, _mN, _vI],
|
|
1164
|
+
[0, 0, 0], 2
|
|
1165
|
+
];
|
|
1166
|
+
var InferenceContainerConfig$ = [3, n0, _ICC,
|
|
1167
|
+
0,
|
|
1168
|
+
[_iU],
|
|
1169
|
+
[0], 1
|
|
1170
|
+
];
|
|
1171
|
+
var InferenceContainerExecutionParameters$ = [3, n0, _ICEP,
|
|
1172
|
+
0,
|
|
1173
|
+
[_mPIMB],
|
|
1174
|
+
[1]
|
|
1175
|
+
];
|
|
1176
|
+
var InferenceOutputConfiguration$ = [3, n0, _IOC,
|
|
1177
|
+
0,
|
|
1178
|
+
[_mem, _ac],
|
|
1179
|
+
[() => InferenceReceiverMembers, 0], 1
|
|
1180
|
+
];
|
|
1181
|
+
var InferenceReceiverMember$ = [3, n0, _IRM,
|
|
1182
|
+
0,
|
|
1183
|
+
[_aI],
|
|
1184
|
+
[0], 1
|
|
1185
|
+
];
|
|
1186
|
+
var InferenceResourceConfig$ = [3, n0, _IRC,
|
|
1187
|
+
0,
|
|
1188
|
+
[_iT, _iCns],
|
|
1189
|
+
[0, 1], 1
|
|
1190
|
+
];
|
|
1191
|
+
var InputChannel$ = [3, n0, _IC,
|
|
1192
|
+
0,
|
|
1193
|
+
[_dS, _rAo],
|
|
1194
|
+
[[() => InputChannelDataSource$, 0], 0], 2
|
|
1195
|
+
];
|
|
1196
|
+
var ListAudienceExportJobsRequest$ = [3, n0, _LAEJR,
|
|
1197
|
+
0,
|
|
1198
|
+
[_nT, _mR, _aGJA],
|
|
1199
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _aGJA }]]
|
|
1200
|
+
];
|
|
1201
|
+
var ListAudienceExportJobsResponse$ = [3, n0, _LAEJRi,
|
|
1202
|
+
0,
|
|
1203
|
+
[_aEJ, _nT],
|
|
1204
|
+
[() => AudienceExportJobList, 0], 1
|
|
1205
|
+
];
|
|
1206
|
+
var ListAudienceGenerationJobsRequest$ = [3, n0, _LAGJR,
|
|
1207
|
+
0,
|
|
1208
|
+
[_nT, _mR, _cAMA, _cI],
|
|
1209
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _cAMA }], [0, { [_hQ]: _cI }]]
|
|
1210
|
+
];
|
|
1211
|
+
var ListAudienceGenerationJobsResponse$ = [3, n0, _LAGJRi,
|
|
1212
|
+
0,
|
|
1213
|
+
[_aGJ, _nT],
|
|
1214
|
+
[() => AudienceGenerationJobList, 0], 1
|
|
1215
|
+
];
|
|
1216
|
+
var ListAudienceModelsRequest$ = [3, n0, _LAMR,
|
|
1217
|
+
0,
|
|
1218
|
+
[_nT, _mR],
|
|
1219
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1220
|
+
];
|
|
1221
|
+
var ListAudienceModelsResponse$ = [3, n0, _LAMRi,
|
|
1222
|
+
0,
|
|
1223
|
+
[_aM, _nT],
|
|
1224
|
+
[() => AudienceModelList, 0], 1
|
|
1225
|
+
];
|
|
1226
|
+
var ListCollaborationConfiguredModelAlgorithmAssociationsRequest$ = [3, n0, _LCCMAAR,
|
|
1227
|
+
0,
|
|
1228
|
+
[_cIo, _nT, _mR],
|
|
1229
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1230
|
+
];
|
|
1231
|
+
var ListCollaborationConfiguredModelAlgorithmAssociationsResponse$ = [3, n0, _LCCMAARi,
|
|
1232
|
+
0,
|
|
1233
|
+
[_cCMAA, _nT],
|
|
1234
|
+
[() => CollaborationConfiguredModelAlgorithmAssociationList, 0], 1
|
|
1235
|
+
];
|
|
1236
|
+
var ListCollaborationMLInputChannelsRequest$ = [3, n0, _LCMLICR,
|
|
1237
|
+
0,
|
|
1238
|
+
[_cIo, _nT, _mR],
|
|
1239
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1240
|
+
];
|
|
1241
|
+
var ListCollaborationMLInputChannelsResponse$ = [3, n0, _LCMLICRi,
|
|
1242
|
+
0,
|
|
1243
|
+
[_cMLICL, _nT],
|
|
1244
|
+
[() => CollaborationMLInputChannelsList, 0], 1
|
|
1245
|
+
];
|
|
1246
|
+
var ListCollaborationTrainedModelExportJobsRequest$ = [3, n0, _LCTMEJR,
|
|
1247
|
+
0,
|
|
1248
|
+
[_cIo, _tMA, _nT, _mR, _tMVI],
|
|
1249
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _tMVI }]], 2
|
|
1250
|
+
];
|
|
1251
|
+
var ListCollaborationTrainedModelExportJobsResponse$ = [3, n0, _LCTMEJRi,
|
|
1252
|
+
0,
|
|
1253
|
+
[_cTMEJ, _nT],
|
|
1254
|
+
[() => CollaborationTrainedModelExportJobList, 0], 1
|
|
1255
|
+
];
|
|
1256
|
+
var ListCollaborationTrainedModelInferenceJobsRequest$ = [3, n0, _LCTMIJR,
|
|
1257
|
+
0,
|
|
1258
|
+
[_cIo, _nT, _mR, _tMA, _tMVI],
|
|
1259
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _tMA }], [0, { [_hQ]: _tMVI }]], 1
|
|
1260
|
+
];
|
|
1261
|
+
var ListCollaborationTrainedModelInferenceJobsResponse$ = [3, n0, _LCTMIJRi,
|
|
1262
|
+
0,
|
|
1263
|
+
[_cTMIJ, _nT],
|
|
1264
|
+
[() => CollaborationTrainedModelInferenceJobList, 0], 1
|
|
1265
|
+
];
|
|
1266
|
+
var ListCollaborationTrainedModelsRequest$ = [3, n0, _LCTMR,
|
|
1267
|
+
0,
|
|
1268
|
+
[_cIo, _nT, _mR],
|
|
1269
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1270
|
+
];
|
|
1271
|
+
var ListCollaborationTrainedModelsResponse$ = [3, n0, _LCTMRi,
|
|
1272
|
+
0,
|
|
1273
|
+
[_cTM, _nT],
|
|
1274
|
+
[() => CollaborationTrainedModelList, 0], 1
|
|
1275
|
+
];
|
|
1276
|
+
var ListConfiguredAudienceModelsRequest$ = [3, n0, _LCAMR,
|
|
1277
|
+
0,
|
|
1278
|
+
[_nT, _mR],
|
|
1279
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1280
|
+
];
|
|
1281
|
+
var ListConfiguredAudienceModelsResponse$ = [3, n0, _LCAMRi,
|
|
1282
|
+
0,
|
|
1283
|
+
[_cAM, _nT],
|
|
1284
|
+
[() => ConfiguredAudienceModelList, 0], 1
|
|
1285
|
+
];
|
|
1286
|
+
var ListConfiguredModelAlgorithmAssociationsRequest$ = [3, n0, _LCMAAR,
|
|
1287
|
+
0,
|
|
1288
|
+
[_mI, _nT, _mR],
|
|
1289
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1290
|
+
];
|
|
1291
|
+
var ListConfiguredModelAlgorithmAssociationsResponse$ = [3, n0, _LCMAARi,
|
|
1292
|
+
0,
|
|
1293
|
+
[_cMAAo, _nT],
|
|
1294
|
+
[() => ConfiguredModelAlgorithmAssociationList, 0], 1
|
|
1295
|
+
];
|
|
1296
|
+
var ListConfiguredModelAlgorithmsRequest$ = [3, n0, _LCMAR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_nT, _mR],
|
|
1299
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1300
|
+
];
|
|
1301
|
+
var ListConfiguredModelAlgorithmsResponse$ = [3, n0, _LCMARi,
|
|
1302
|
+
0,
|
|
1303
|
+
[_cMA, _nT],
|
|
1304
|
+
[() => ConfiguredModelAlgorithmList, 0], 1
|
|
1305
|
+
];
|
|
1306
|
+
var ListMLInputChannelsRequest$ = [3, n0, _LMLICR,
|
|
1307
|
+
0,
|
|
1308
|
+
[_mI, _nT, _mR],
|
|
1309
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1310
|
+
];
|
|
1311
|
+
var ListMLInputChannelsResponse$ = [3, n0, _LMLICRi,
|
|
1312
|
+
0,
|
|
1313
|
+
[_mICL, _nT],
|
|
1314
|
+
[() => MLInputChannelsList, 0], 1
|
|
1315
|
+
];
|
|
1316
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1317
|
+
0,
|
|
1318
|
+
[_rA],
|
|
1319
|
+
[[0, 1]], 1
|
|
1320
|
+
];
|
|
1321
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1322
|
+
0,
|
|
1323
|
+
[_ta],
|
|
1324
|
+
[128 | 0], 1
|
|
1325
|
+
];
|
|
1326
|
+
var ListTrainedModelInferenceJobsRequest$ = [3, n0, _LTMIJR,
|
|
1327
|
+
0,
|
|
1328
|
+
[_mI, _nT, _mR, _tMA, _tMVI],
|
|
1329
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _tMA }], [0, { [_hQ]: _tMVI }]], 1
|
|
1330
|
+
];
|
|
1331
|
+
var ListTrainedModelInferenceJobsResponse$ = [3, n0, _LTMIJRi,
|
|
1332
|
+
0,
|
|
1333
|
+
[_tMIJ, _nT],
|
|
1334
|
+
[() => TrainedModelInferenceJobList, 0], 1
|
|
1335
|
+
];
|
|
1336
|
+
var ListTrainedModelsRequest$ = [3, n0, _LTMR,
|
|
1337
|
+
0,
|
|
1338
|
+
[_mI, _nT, _mR],
|
|
1339
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1340
|
+
];
|
|
1341
|
+
var ListTrainedModelsResponse$ = [3, n0, _LTMRi,
|
|
1342
|
+
0,
|
|
1343
|
+
[_tM, _nT],
|
|
1344
|
+
[() => TrainedModelList, 0], 1
|
|
1345
|
+
];
|
|
1346
|
+
var ListTrainedModelVersionsRequest$ = [3, n0, _LTMVR,
|
|
1347
|
+
0,
|
|
1348
|
+
[_mI, _tMA, _nT, _mR, _st],
|
|
1349
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _st }]], 2
|
|
1350
|
+
];
|
|
1351
|
+
var ListTrainedModelVersionsResponse$ = [3, n0, _LTMVRi,
|
|
1352
|
+
0,
|
|
1353
|
+
[_tM, _nT],
|
|
1354
|
+
[() => TrainedModelList, 0], 1
|
|
1355
|
+
];
|
|
1356
|
+
var ListTrainingDatasetsRequest$ = [3, n0, _LTDR,
|
|
1357
|
+
0,
|
|
1358
|
+
[_nT, _mR],
|
|
1359
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1360
|
+
];
|
|
1361
|
+
var ListTrainingDatasetsResponse$ = [3, n0, _LTDRi,
|
|
1362
|
+
0,
|
|
1363
|
+
[_tDr, _nT],
|
|
1364
|
+
[() => TrainingDatasetList, 0], 1
|
|
1365
|
+
];
|
|
1366
|
+
var LogRedactionConfiguration$ = [3, n0, _LRC,
|
|
1367
|
+
0,
|
|
1368
|
+
[_eTR, _cEC],
|
|
1369
|
+
[64 | 0, () => CustomEntityConfig$], 1
|
|
1370
|
+
];
|
|
1371
|
+
var LogsConfigurationPolicy$ = [3, n0, _LCP,
|
|
1372
|
+
0,
|
|
1373
|
+
[_aAI, _fP, _lT, _lRC],
|
|
1374
|
+
[64 | 0, 0, 0, () => LogRedactionConfiguration$], 1
|
|
1375
|
+
];
|
|
1376
|
+
var MembershipInferenceAttackScore$ = [3, n0, _MIAS,
|
|
1377
|
+
0,
|
|
1378
|
+
[_aV, _sco],
|
|
1379
|
+
[0, 1], 2
|
|
1380
|
+
];
|
|
1381
|
+
var MetricDefinition$ = [3, n0, _MD,
|
|
1382
|
+
0,
|
|
1383
|
+
[_n, _r],
|
|
1384
|
+
[0, 0], 2
|
|
1385
|
+
];
|
|
1386
|
+
var MetricsConfigurationPolicy$ = [3, n0, _MCP,
|
|
1387
|
+
0,
|
|
1388
|
+
[_nL],
|
|
1389
|
+
[0], 1
|
|
1390
|
+
];
|
|
1391
|
+
var MLInputChannelSummary$ = [3, n0, _MLICS,
|
|
1392
|
+
0,
|
|
1393
|
+
[_cT, _uT, _mI, _cIo, _n, _cMAAo, _mICA, _st, _pQI, _de, _pC],
|
|
1394
|
+
[5, 5, 0, 0, 0, 64 | 0, 0, 0, 0, 0, () => PayerConfiguration$], 8
|
|
1395
|
+
];
|
|
1396
|
+
var MLOutputConfiguration$ = [3, n0, _MLOC,
|
|
1397
|
+
0,
|
|
1398
|
+
[_rAo, _des],
|
|
1399
|
+
[0, () => Destination$], 1
|
|
1400
|
+
];
|
|
1401
|
+
var MLSyntheticDataParameters$ = [3, n0, _MLSDP,
|
|
1402
|
+
0,
|
|
1403
|
+
[_ep, _mMIAS, _cC],
|
|
1404
|
+
[1, 1, () => ColumnClassificationDetails$], 2
|
|
1405
|
+
];
|
|
1406
|
+
var ModelInferenceDataSource$ = [3, n0, _MIDS,
|
|
1407
|
+
0,
|
|
1408
|
+
[_mICA],
|
|
1409
|
+
[0], 1
|
|
1410
|
+
];
|
|
1411
|
+
var ModelTrainingDataChannel$ = [3, n0, _MTDC,
|
|
1412
|
+
0,
|
|
1413
|
+
[_mICA, _cNh, _sDDT],
|
|
1414
|
+
[0, 0, 0], 2
|
|
1415
|
+
];
|
|
1416
|
+
var PayerConfiguration$ = [3, n0, _PC,
|
|
1417
|
+
0,
|
|
1418
|
+
[_cPAI, _sDPAI],
|
|
1419
|
+
[0, 0]
|
|
1420
|
+
];
|
|
1421
|
+
var PrivacyConfiguration$ = [3, n0, _PCr,
|
|
1422
|
+
0,
|
|
1423
|
+
[_p],
|
|
1424
|
+
[() => PrivacyConfigurationPolicies$], 1
|
|
1425
|
+
];
|
|
1426
|
+
var PrivacyConfigurationPolicies$ = [3, n0, _PCP,
|
|
1427
|
+
0,
|
|
1428
|
+
[_tM, _tME, _tMIJ],
|
|
1429
|
+
[() => TrainedModelsConfigurationPolicy$, () => TrainedModelExportsConfigurationPolicy$, () => TrainedModelInferenceJobsConfigurationPolicy$]
|
|
1430
|
+
];
|
|
1431
|
+
var ProtectedQueryInputParameters$ = [3, n0, _PQIP,
|
|
1432
|
+
0,
|
|
1433
|
+
[_sP, _cCo, _rF],
|
|
1434
|
+
[[() => ProtectedQuerySQLParameters$, 0], () => ComputeConfiguration$, 0], 1
|
|
1435
|
+
];
|
|
1436
|
+
var ProtectedQuerySQLParameters$ = [3, n0, _PQSQLP,
|
|
1437
|
+
8,
|
|
1438
|
+
[_qS, _aTA, _pa],
|
|
1439
|
+
[0, 0, 128 | 0]
|
|
1440
|
+
];
|
|
1441
|
+
var PutConfiguredAudienceModelPolicyRequest$ = [3, n0, _PCAMPR,
|
|
1442
|
+
0,
|
|
1443
|
+
[_cAMA, _cAMP, _pPH, _pEC],
|
|
1444
|
+
[[0, 1], 0, 0, 0], 2
|
|
1445
|
+
];
|
|
1446
|
+
var PutConfiguredAudienceModelPolicyResponse$ = [3, n0, _PCAMPRu,
|
|
1447
|
+
0,
|
|
1448
|
+
[_cAMP, _pH],
|
|
1449
|
+
[0, 0], 2
|
|
1450
|
+
];
|
|
1451
|
+
var PutMLConfigurationRequest$ = [3, n0, _PMLCR,
|
|
1452
|
+
0,
|
|
1453
|
+
[_mI, _dOL],
|
|
1454
|
+
[[0, 1], () => MLOutputConfiguration$], 2
|
|
1455
|
+
];
|
|
1456
|
+
var RelevanceMetric$ = [3, n0, _RM,
|
|
1457
|
+
0,
|
|
1458
|
+
[_aS, _sco],
|
|
1459
|
+
[() => AudienceSize$, 1], 1
|
|
1460
|
+
];
|
|
1461
|
+
var ResourceConfig$ = [3, n0, _RC,
|
|
1462
|
+
0,
|
|
1463
|
+
[_iT, _vSIGB, _iCns],
|
|
1464
|
+
[0, 1, 1], 2
|
|
1465
|
+
];
|
|
1466
|
+
var S3ConfigMap$ = [3, n0, _SCM,
|
|
1467
|
+
0,
|
|
1468
|
+
[_sU],
|
|
1469
|
+
[0], 1
|
|
1470
|
+
];
|
|
1471
|
+
var StartAudienceExportJobRequest$ = [3, n0, _SAEJR,
|
|
1472
|
+
0,
|
|
1473
|
+
[_n, _aGJA, _aS, _de],
|
|
1474
|
+
[0, 0, () => AudienceSize$, 0], 3
|
|
1475
|
+
];
|
|
1476
|
+
var StartAudienceGenerationJobRequest$ = [3, n0, _SAGJR,
|
|
1477
|
+
0,
|
|
1478
|
+
[_n, _cAMA, _sA, _iSIO, _cI, _de, _ta],
|
|
1479
|
+
[0, 0, [() => AudienceGenerationJobDataSource$, 0], 2, 0, 0, 128 | 0], 3
|
|
1480
|
+
];
|
|
1481
|
+
var StartAudienceGenerationJobResponse$ = [3, n0, _SAGJRt,
|
|
1482
|
+
0,
|
|
1483
|
+
[_aGJA],
|
|
1484
|
+
[0], 1
|
|
1485
|
+
];
|
|
1486
|
+
var StartTrainedModelExportJobRequest$ = [3, n0, _STMEJR,
|
|
1487
|
+
0,
|
|
1488
|
+
[_n, _tMA, _mI, _oC, _tMVI, _de],
|
|
1489
|
+
[0, [0, 1], [0, 1], () => TrainedModelExportOutputConfiguration$, 0, 0], 4
|
|
1490
|
+
];
|
|
1491
|
+
var StartTrainedModelInferenceJobRequest$ = [3, n0, _STMIJR,
|
|
1492
|
+
0,
|
|
1493
|
+
[_mI, _n, _tMA, _rC, _oC, _dS, _tMVI, _cMAAA, _de, _cEP, _env, _kKA, _ta, _mMIPAI],
|
|
1494
|
+
[[0, 1], 0, 0, () => InferenceResourceConfig$, () => InferenceOutputConfiguration$, () => ModelInferenceDataSource$, 0, 0, 0, () => InferenceContainerExecutionParameters$, 128 | 0, 0, 128 | 0, 0], 6
|
|
1495
|
+
];
|
|
1496
|
+
var StartTrainedModelInferenceJobResponse$ = [3, n0, _STMIJRt,
|
|
1497
|
+
0,
|
|
1498
|
+
[_tMIJA],
|
|
1499
|
+
[0], 1
|
|
1500
|
+
];
|
|
1501
|
+
var StatusDetails$ = [3, n0, _SD,
|
|
1502
|
+
0,
|
|
1503
|
+
[_sCt, _m],
|
|
1504
|
+
[0, 0]
|
|
1505
|
+
];
|
|
1506
|
+
var StoppingCondition$ = [3, n0, _SC,
|
|
1507
|
+
0,
|
|
1508
|
+
[_mRIS],
|
|
1509
|
+
[1]
|
|
1510
|
+
];
|
|
1511
|
+
var SyntheticDataColumnProperties$ = [3, n0, _SDCP,
|
|
1512
|
+
0,
|
|
1513
|
+
[_cN, _cTol, _iPV],
|
|
1514
|
+
[0, 0, 2], 3
|
|
1515
|
+
];
|
|
1516
|
+
var SyntheticDataConfiguration$ = [3, n0, _SDC,
|
|
1517
|
+
0,
|
|
1518
|
+
[_sDP, _sDES],
|
|
1519
|
+
[() => MLSyntheticDataParameters$, () => SyntheticDataEvaluationScores$], 1
|
|
1520
|
+
];
|
|
1521
|
+
var SyntheticDataEvaluationScores$ = [3, n0, _SDES,
|
|
1522
|
+
0,
|
|
1523
|
+
[_dPS],
|
|
1524
|
+
[() => DataPrivacyScores$], 1
|
|
1525
|
+
];
|
|
1526
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1527
|
+
0,
|
|
1528
|
+
[_rA, _ta],
|
|
1529
|
+
[[0, 1], 128 | 0], 2
|
|
1530
|
+
];
|
|
1531
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1532
|
+
0,
|
|
1533
|
+
[],
|
|
1534
|
+
[]
|
|
1535
|
+
];
|
|
1536
|
+
var TrainedModelArtifactMaxSize$ = [3, n0, _TMAMS,
|
|
1537
|
+
0,
|
|
1538
|
+
[_u, _v],
|
|
1539
|
+
[0, 1], 2
|
|
1540
|
+
];
|
|
1541
|
+
var TrainedModelExportOutputConfiguration$ = [3, n0, _TMEOC,
|
|
1542
|
+
0,
|
|
1543
|
+
[_mem],
|
|
1544
|
+
[() => TrainedModelExportReceiverMembers], 1
|
|
1545
|
+
];
|
|
1546
|
+
var TrainedModelExportReceiverMember$ = [3, n0, _TMERM,
|
|
1547
|
+
0,
|
|
1548
|
+
[_aI],
|
|
1549
|
+
[0], 1
|
|
1550
|
+
];
|
|
1551
|
+
var TrainedModelExportsConfigurationPolicy$ = [3, n0, _TMECP,
|
|
1552
|
+
0,
|
|
1553
|
+
[_mSa, _fTE],
|
|
1554
|
+
[() => TrainedModelExportsMaxSize$, 64 | 0], 2
|
|
1555
|
+
];
|
|
1556
|
+
var TrainedModelExportsMaxSize$ = [3, n0, _TMEMS,
|
|
1557
|
+
0,
|
|
1558
|
+
[_u, _v],
|
|
1559
|
+
[0, 1], 2
|
|
1560
|
+
];
|
|
1561
|
+
var TrainedModelInferenceJobsConfigurationPolicy$ = [3, n0, _TMIJCP,
|
|
1562
|
+
0,
|
|
1563
|
+
[_cL, _mOS],
|
|
1564
|
+
[() => LogsConfigurationPolicyList, () => TrainedModelInferenceMaxOutputSize$]
|
|
1565
|
+
];
|
|
1566
|
+
var TrainedModelInferenceJobSummary$ = [3, n0, _TMIJS,
|
|
1567
|
+
0,
|
|
1568
|
+
[_tMIJA, _mI, _tMA, _cIo, _st, _oC, _n, _cT, _uT, _cMAAA, _tMVI, _de, _mS, _mSD, _lS, _lSD, _mMIPAI],
|
|
1569
|
+
[0, 0, 0, 0, 0, () => InferenceOutputConfiguration$, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0], 9
|
|
1570
|
+
];
|
|
1571
|
+
var TrainedModelInferenceMaxOutputSize$ = [3, n0, _TMIMOS,
|
|
1572
|
+
0,
|
|
1573
|
+
[_u, _v],
|
|
1574
|
+
[0, 1], 2
|
|
1575
|
+
];
|
|
1576
|
+
var TrainedModelsConfigurationPolicy$ = [3, n0, _TMCP,
|
|
1577
|
+
0,
|
|
1578
|
+
[_cL, _cMo, _mAS],
|
|
1579
|
+
[() => LogsConfigurationPolicyList, () => MetricsConfigurationPolicy$, () => TrainedModelArtifactMaxSize$]
|
|
1580
|
+
];
|
|
1581
|
+
var TrainedModelSummary$ = [3, n0, _TMS,
|
|
1582
|
+
0,
|
|
1583
|
+
[_cT, _uT, _tMA, _n, _mI, _cIo, _st, _cMAAA, _vI, _iTDC, _de, _mMTPAI],
|
|
1584
|
+
[5, 5, 0, 0, 0, 0, 0, 0, 0, () => IncrementalTrainingDataChannelsOutput, 0, 0], 8
|
|
1585
|
+
];
|
|
1586
|
+
var TrainingDatasetSummary$ = [3, n0, _TDS,
|
|
1587
|
+
0,
|
|
1588
|
+
[_cT, _uT, _tDA, _n, _st, _de],
|
|
1589
|
+
[5, 5, 0, 0, 0, 0], 5
|
|
1590
|
+
];
|
|
1591
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1592
|
+
0,
|
|
1593
|
+
[_rA, _tK],
|
|
1594
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1595
|
+
];
|
|
1596
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1597
|
+
0,
|
|
1598
|
+
[],
|
|
1599
|
+
[]
|
|
1600
|
+
];
|
|
1601
|
+
var UpdateConfiguredAudienceModelRequest$ = [3, n0, _UCAMR,
|
|
1602
|
+
0,
|
|
1603
|
+
[_cAMA, _oCu, _aMA, _sAM, _mMSS, _aSC, _de],
|
|
1604
|
+
[[0, 1], () => ConfiguredAudienceModelOutputConfig$, 0, 64 | 0, 1, () => AudienceSizeConfig$, 0], 1
|
|
1605
|
+
];
|
|
1606
|
+
var UpdateConfiguredAudienceModelResponse$ = [3, n0, _UCAMRp,
|
|
1607
|
+
0,
|
|
1608
|
+
[_cAMA],
|
|
1609
|
+
[0], 1
|
|
1610
|
+
];
|
|
1611
|
+
var WorkerComputeConfiguration$ = [3, n0, _WCC,
|
|
1612
|
+
0,
|
|
1613
|
+
[_t, _nu, _pr],
|
|
1614
|
+
[0, 1, () => WorkerComputeConfigurationProperties$]
|
|
1615
|
+
];
|
|
1616
|
+
var __Unit = "unit";
|
|
1617
|
+
var AccessBudgetDetailsList = [1, n0, _ABDL,
|
|
1618
|
+
0, () => AccessBudgetDetails$
|
|
1619
|
+
];
|
|
1620
|
+
var AccessBudgets = [1, n0, _ABc,
|
|
1621
|
+
0, () => AccessBudget$
|
|
1622
|
+
];
|
|
1623
|
+
var AudienceExportJobList = [1, n0, _AEJL,
|
|
1624
|
+
0, () => AudienceExportJobSummary$
|
|
1625
|
+
];
|
|
1626
|
+
var AudienceGenerationJobList = [1, n0, _AGJL,
|
|
1627
|
+
0, () => AudienceGenerationJobSummary$
|
|
1628
|
+
];
|
|
1629
|
+
var AudienceModelList = [1, n0, _AML,
|
|
1630
|
+
0, () => AudienceModelSummary$
|
|
1631
|
+
];
|
|
1632
|
+
var CollaborationConfiguredModelAlgorithmAssociationList = [1, n0, _CCMAAL,
|
|
1633
|
+
0, () => CollaborationConfiguredModelAlgorithmAssociationSummary$
|
|
1634
|
+
];
|
|
1635
|
+
var CollaborationMLInputChannelsList = [1, n0, _CMLICL,
|
|
1636
|
+
0, () => CollaborationMLInputChannelSummary$
|
|
1637
|
+
];
|
|
1638
|
+
var CollaborationTrainedModelExportJobList = [1, n0, _CTMEJL,
|
|
1639
|
+
0, () => CollaborationTrainedModelExportJobSummary$
|
|
1640
|
+
];
|
|
1641
|
+
var CollaborationTrainedModelInferenceJobList = [1, n0, _CTMIJL,
|
|
1642
|
+
0, () => CollaborationTrainedModelInferenceJobSummary$
|
|
1643
|
+
];
|
|
1644
|
+
var CollaborationTrainedModelList = [1, n0, _CTML,
|
|
1645
|
+
0, () => CollaborationTrainedModelSummary$
|
|
1646
|
+
];
|
|
1647
|
+
var ColumnMappingList = [1, n0, _CML,
|
|
1648
|
+
0, () => SyntheticDataColumnProperties$
|
|
1649
|
+
];
|
|
1650
|
+
var ConfiguredAudienceModelList = [1, n0, _CAML,
|
|
1651
|
+
0, () => ConfiguredAudienceModelSummary$
|
|
1652
|
+
];
|
|
1653
|
+
var ConfiguredModelAlgorithmAssociationList = [1, n0, _CMAAL,
|
|
1654
|
+
0, () => ConfiguredModelAlgorithmAssociationSummary$
|
|
1655
|
+
];
|
|
1656
|
+
var ConfiguredModelAlgorithmList = [1, n0, _CMAL,
|
|
1657
|
+
0, () => ConfiguredModelAlgorithmSummary$
|
|
1658
|
+
];
|
|
1659
|
+
var DatasetList = [1, n0, _DL,
|
|
1660
|
+
0, () => Dataset$
|
|
1661
|
+
];
|
|
1662
|
+
var DatasetSchemaList = [1, n0, _DSL,
|
|
1663
|
+
0, () => ColumnSchema$
|
|
1664
|
+
];
|
|
1665
|
+
var IncrementalTrainingDataChannels = [1, n0, _ITDCn,
|
|
1666
|
+
0, () => IncrementalTrainingDataChannel$
|
|
1667
|
+
];
|
|
1668
|
+
var IncrementalTrainingDataChannelsOutput = [1, n0, _ITDCOn,
|
|
1669
|
+
0, () => IncrementalTrainingDataChannelOutput$
|
|
1670
|
+
];
|
|
1671
|
+
var InferenceReceiverMembers = [1, n0, _IRMn,
|
|
1672
|
+
0, () => InferenceReceiverMember$
|
|
1673
|
+
];
|
|
1674
|
+
var LogsConfigurationPolicyList = [1, n0, _LCPL,
|
|
1675
|
+
0, () => LogsConfigurationPolicy$
|
|
1676
|
+
];
|
|
1677
|
+
var MembershipInferenceAttackScoreList = [1, n0, _MIASL,
|
|
1678
|
+
0, () => MembershipInferenceAttackScore$
|
|
1679
|
+
];
|
|
1680
|
+
var MetricDefinitionList = [1, n0, _MDL,
|
|
1681
|
+
0, () => MetricDefinition$
|
|
1682
|
+
];
|
|
1683
|
+
var MLInputChannelsList = [1, n0, _MLICL,
|
|
1684
|
+
0, () => MLInputChannelSummary$
|
|
1685
|
+
];
|
|
1686
|
+
var ModelTrainingDataChannels = [1, n0, _MTDCo,
|
|
1687
|
+
0, () => ModelTrainingDataChannel$
|
|
1688
|
+
];
|
|
1689
|
+
var RelevanceMetrics = [1, n0, _RMe,
|
|
1690
|
+
0, () => RelevanceMetric$
|
|
1691
|
+
];
|
|
1692
|
+
var TrainedModelExportReceiverMembers = [1, n0, _TMERMr,
|
|
1693
|
+
0, () => TrainedModelExportReceiverMember$
|
|
1694
|
+
];
|
|
1695
|
+
var TrainedModelInferenceJobList = [1, n0, _TMIJL,
|
|
1696
|
+
0, () => TrainedModelInferenceJobSummary$
|
|
1697
|
+
];
|
|
1698
|
+
var TrainedModelList = [1, n0, _TML,
|
|
1699
|
+
0, () => TrainedModelSummary$
|
|
1700
|
+
];
|
|
1701
|
+
var TrainingDatasetList = [1, n0, _TDL,
|
|
1702
|
+
0, () => TrainingDatasetSummary$
|
|
1703
|
+
];
|
|
1704
|
+
var ComputeConfiguration$ = [4, n0, _CCo,
|
|
1705
|
+
0,
|
|
1706
|
+
[_w],
|
|
1707
|
+
[() => WorkerComputeConfiguration$]
|
|
1708
|
+
];
|
|
1709
|
+
var InputChannelDataSource$ = [4, n0, _ICDS,
|
|
1710
|
+
0,
|
|
1711
|
+
[_pQIP],
|
|
1712
|
+
[[() => ProtectedQueryInputParameters$, 0]]
|
|
1713
|
+
];
|
|
1714
|
+
var PrivacyBudgets$ = [4, n0, _PB,
|
|
1715
|
+
0,
|
|
1716
|
+
[_aB],
|
|
1717
|
+
[() => AccessBudgets]
|
|
1718
|
+
];
|
|
1719
|
+
var WorkerComputeConfigurationProperties$ = [4, n0, _WCCP,
|
|
1720
|
+
0,
|
|
1721
|
+
[_sp],
|
|
1722
|
+
[128 | 0]
|
|
1723
|
+
];
|
|
1724
|
+
var CancelTrainedModel$ = [9, n0, _CTM,
|
|
1725
|
+
{ [_ht]: ["PATCH", "/memberships/{membershipIdentifier}/trained-models/{trainedModelArn}", 200] }, () => CancelTrainedModelRequest$, () => __Unit
|
|
1726
|
+
];
|
|
1727
|
+
var CancelTrainedModelInferenceJob$ = [9, n0, _CTMIJ,
|
|
1728
|
+
{ [_ht]: ["PATCH", "/memberships/{membershipIdentifier}/trained-model-inference-jobs/{trainedModelInferenceJobArn}", 200] }, () => CancelTrainedModelInferenceJobRequest$, () => __Unit
|
|
1729
|
+
];
|
|
1730
|
+
var CreateAudienceModel$ = [9, n0, _CAM,
|
|
1731
|
+
{ [_ht]: ["POST", "/audience-model", 200] }, () => CreateAudienceModelRequest$, () => CreateAudienceModelResponse$
|
|
1732
|
+
];
|
|
1733
|
+
var CreateConfiguredAudienceModel$ = [9, n0, _CCAM,
|
|
1734
|
+
{ [_ht]: ["POST", "/configured-audience-model", 200] }, () => CreateConfiguredAudienceModelRequest$, () => CreateConfiguredAudienceModelResponse$
|
|
1735
|
+
];
|
|
1736
|
+
var CreateConfiguredModelAlgorithm$ = [9, n0, _CCMA,
|
|
1737
|
+
{ [_ht]: ["POST", "/configured-model-algorithms", 200] }, () => CreateConfiguredModelAlgorithmRequest$, () => CreateConfiguredModelAlgorithmResponse$
|
|
1738
|
+
];
|
|
1739
|
+
var CreateConfiguredModelAlgorithmAssociation$ = [9, n0, _CCMAA,
|
|
1740
|
+
{ [_ht]: ["POST", "/memberships/{membershipIdentifier}/configured-model-algorithm-associations", 200] }, () => CreateConfiguredModelAlgorithmAssociationRequest$, () => CreateConfiguredModelAlgorithmAssociationResponse$
|
|
1741
|
+
];
|
|
1742
|
+
var CreateMLInputChannel$ = [9, n0, _CMLIC,
|
|
1743
|
+
{ [_ht]: ["POST", "/memberships/{membershipIdentifier}/ml-input-channels", 200] }, () => CreateMLInputChannelRequest$, () => CreateMLInputChannelResponse$
|
|
1744
|
+
];
|
|
1745
|
+
var CreateTrainedModel$ = [9, n0, _CTMr,
|
|
1746
|
+
{ [_ht]: ["POST", "/memberships/{membershipIdentifier}/trained-models", 200] }, () => CreateTrainedModelRequest$, () => CreateTrainedModelResponse$
|
|
1747
|
+
];
|
|
1748
|
+
var CreateTrainingDataset$ = [9, n0, _CTD,
|
|
1749
|
+
{ [_ht]: ["POST", "/training-dataset", 200] }, () => CreateTrainingDatasetRequest$, () => CreateTrainingDatasetResponse$
|
|
1750
|
+
];
|
|
1751
|
+
var DeleteAudienceGenerationJob$ = [9, n0, _DAGJ,
|
|
1752
|
+
{ [_ht]: ["DELETE", "/audience-generation-job/{audienceGenerationJobArn}", 200] }, () => DeleteAudienceGenerationJobRequest$, () => __Unit
|
|
1753
|
+
];
|
|
1754
|
+
var DeleteAudienceModel$ = [9, n0, _DAM,
|
|
1755
|
+
{ [_ht]: ["DELETE", "/audience-model/{audienceModelArn}", 200] }, () => DeleteAudienceModelRequest$, () => __Unit
|
|
1756
|
+
];
|
|
1757
|
+
var DeleteConfiguredAudienceModel$ = [9, n0, _DCAM,
|
|
1758
|
+
{ [_ht]: ["DELETE", "/configured-audience-model/{configuredAudienceModelArn}", 200] }, () => DeleteConfiguredAudienceModelRequest$, () => __Unit
|
|
1759
|
+
];
|
|
1760
|
+
var DeleteConfiguredAudienceModelPolicy$ = [9, n0, _DCAMP,
|
|
1761
|
+
{ [_ht]: ["DELETE", "/configured-audience-model/{configuredAudienceModelArn}/policy", 200] }, () => DeleteConfiguredAudienceModelPolicyRequest$, () => __Unit
|
|
1762
|
+
];
|
|
1763
|
+
var DeleteConfiguredModelAlgorithm$ = [9, n0, _DCMA,
|
|
1764
|
+
{ [_ht]: ["DELETE", "/configured-model-algorithms/{configuredModelAlgorithmArn}", 200] }, () => DeleteConfiguredModelAlgorithmRequest$, () => __Unit
|
|
1765
|
+
];
|
|
1766
|
+
var DeleteConfiguredModelAlgorithmAssociation$ = [9, n0, _DCMAA,
|
|
1767
|
+
{ [_ht]: ["DELETE", "/memberships/{membershipIdentifier}/configured-model-algorithm-associations/{configuredModelAlgorithmAssociationArn}", 200] }, () => DeleteConfiguredModelAlgorithmAssociationRequest$, () => __Unit
|
|
1768
|
+
];
|
|
1769
|
+
var DeleteMLConfiguration$ = [9, n0, _DMLC,
|
|
1770
|
+
{ [_ht]: ["DELETE", "/memberships/{membershipIdentifier}/ml-configurations", 200] }, () => DeleteMLConfigurationRequest$, () => __Unit
|
|
1771
|
+
];
|
|
1772
|
+
var DeleteMLInputChannelData$ = [9, n0, _DMLICD,
|
|
1773
|
+
{ [_ht]: ["DELETE", "/memberships/{membershipIdentifier}/ml-input-channels/{mlInputChannelArn}", 200] }, () => DeleteMLInputChannelDataRequest$, () => __Unit
|
|
1774
|
+
];
|
|
1775
|
+
var DeleteTrainedModelOutput$ = [9, n0, _DTMO,
|
|
1776
|
+
{ [_ht]: ["DELETE", "/memberships/{membershipIdentifier}/trained-models/{trainedModelArn}", 200] }, () => DeleteTrainedModelOutputRequest$, () => __Unit
|
|
1777
|
+
];
|
|
1778
|
+
var DeleteTrainingDataset$ = [9, n0, _DTD,
|
|
1779
|
+
{ [_ht]: ["DELETE", "/training-dataset/{trainingDatasetArn}", 200] }, () => DeleteTrainingDatasetRequest$, () => __Unit
|
|
1780
|
+
];
|
|
1781
|
+
var GetAudienceGenerationJob$ = [9, n0, _GAGJ,
|
|
1782
|
+
{ [_ht]: ["GET", "/audience-generation-job/{audienceGenerationJobArn}", 200] }, () => GetAudienceGenerationJobRequest$, () => GetAudienceGenerationJobResponse$
|
|
1783
|
+
];
|
|
1784
|
+
var GetAudienceModel$ = [9, n0, _GAM,
|
|
1785
|
+
{ [_ht]: ["GET", "/audience-model/{audienceModelArn}", 200] }, () => GetAudienceModelRequest$, () => GetAudienceModelResponse$
|
|
1786
|
+
];
|
|
1787
|
+
var GetCollaborationConfiguredModelAlgorithmAssociation$ = [9, n0, _GCCMAA,
|
|
1788
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/configured-model-algorithm-associations/{configuredModelAlgorithmAssociationArn}", 200] }, () => GetCollaborationConfiguredModelAlgorithmAssociationRequest$, () => GetCollaborationConfiguredModelAlgorithmAssociationResponse$
|
|
1789
|
+
];
|
|
1790
|
+
var GetCollaborationMLInputChannel$ = [9, n0, _GCMLIC,
|
|
1791
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/ml-input-channels/{mlInputChannelArn}", 200] }, () => GetCollaborationMLInputChannelRequest$, () => GetCollaborationMLInputChannelResponse$
|
|
1792
|
+
];
|
|
1793
|
+
var GetCollaborationTrainedModel$ = [9, n0, _GCTM,
|
|
1794
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/trained-models/{trainedModelArn}", 200] }, () => GetCollaborationTrainedModelRequest$, () => GetCollaborationTrainedModelResponse$
|
|
1795
|
+
];
|
|
1796
|
+
var GetConfiguredAudienceModel$ = [9, n0, _GCAM,
|
|
1797
|
+
{ [_ht]: ["GET", "/configured-audience-model/{configuredAudienceModelArn}", 200] }, () => GetConfiguredAudienceModelRequest$, () => GetConfiguredAudienceModelResponse$
|
|
1798
|
+
];
|
|
1799
|
+
var GetConfiguredAudienceModelPolicy$ = [9, n0, _GCAMP,
|
|
1800
|
+
{ [_ht]: ["GET", "/configured-audience-model/{configuredAudienceModelArn}/policy", 200] }, () => GetConfiguredAudienceModelPolicyRequest$, () => GetConfiguredAudienceModelPolicyResponse$
|
|
1801
|
+
];
|
|
1802
|
+
var GetConfiguredModelAlgorithm$ = [9, n0, _GCMA,
|
|
1803
|
+
{ [_ht]: ["GET", "/configured-model-algorithms/{configuredModelAlgorithmArn}", 200] }, () => GetConfiguredModelAlgorithmRequest$, () => GetConfiguredModelAlgorithmResponse$
|
|
1804
|
+
];
|
|
1805
|
+
var GetConfiguredModelAlgorithmAssociation$ = [9, n0, _GCMAA,
|
|
1806
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/configured-model-algorithm-associations/{configuredModelAlgorithmAssociationArn}", 200] }, () => GetConfiguredModelAlgorithmAssociationRequest$, () => GetConfiguredModelAlgorithmAssociationResponse$
|
|
1807
|
+
];
|
|
1808
|
+
var GetMLConfiguration$ = [9, n0, _GMLC,
|
|
1809
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/ml-configurations", 200] }, () => GetMLConfigurationRequest$, () => GetMLConfigurationResponse$
|
|
1810
|
+
];
|
|
1811
|
+
var GetMLInputChannel$ = [9, n0, _GMLIC,
|
|
1812
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/ml-input-channels/{mlInputChannelArn}", 200] }, () => GetMLInputChannelRequest$, () => GetMLInputChannelResponse$
|
|
1813
|
+
];
|
|
1814
|
+
var GetTrainedModel$ = [9, n0, _GTM,
|
|
1815
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/trained-models/{trainedModelArn}", 200] }, () => GetTrainedModelRequest$, () => GetTrainedModelResponse$
|
|
1816
|
+
];
|
|
1817
|
+
var GetTrainedModelInferenceJob$ = [9, n0, _GTMIJ,
|
|
1818
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/trained-model-inference-jobs/{trainedModelInferenceJobArn}", 200] }, () => GetTrainedModelInferenceJobRequest$, () => GetTrainedModelInferenceJobResponse$
|
|
1819
|
+
];
|
|
1820
|
+
var GetTrainingDataset$ = [9, n0, _GTD,
|
|
1821
|
+
{ [_ht]: ["GET", "/training-dataset/{trainingDatasetArn}", 200] }, () => GetTrainingDatasetRequest$, () => GetTrainingDatasetResponse$
|
|
1822
|
+
];
|
|
1823
|
+
var ListAudienceExportJobs$ = [9, n0, _LAEJ,
|
|
1824
|
+
{ [_ht]: ["GET", "/audience-export-job", 200] }, () => ListAudienceExportJobsRequest$, () => ListAudienceExportJobsResponse$
|
|
1825
|
+
];
|
|
1826
|
+
var ListAudienceGenerationJobs$ = [9, n0, _LAGJ,
|
|
1827
|
+
{ [_ht]: ["GET", "/audience-generation-job", 200] }, () => ListAudienceGenerationJobsRequest$, () => ListAudienceGenerationJobsResponse$
|
|
1828
|
+
];
|
|
1829
|
+
var ListAudienceModels$ = [9, n0, _LAM,
|
|
1830
|
+
{ [_ht]: ["GET", "/audience-model", 200] }, () => ListAudienceModelsRequest$, () => ListAudienceModelsResponse$
|
|
1831
|
+
];
|
|
1832
|
+
var ListCollaborationConfiguredModelAlgorithmAssociations$ = [9, n0, _LCCMAA,
|
|
1833
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/configured-model-algorithm-associations", 200] }, () => ListCollaborationConfiguredModelAlgorithmAssociationsRequest$, () => ListCollaborationConfiguredModelAlgorithmAssociationsResponse$
|
|
1834
|
+
];
|
|
1835
|
+
var ListCollaborationMLInputChannels$ = [9, n0, _LCMLIC,
|
|
1836
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/ml-input-channels", 200] }, () => ListCollaborationMLInputChannelsRequest$, () => ListCollaborationMLInputChannelsResponse$
|
|
1837
|
+
];
|
|
1838
|
+
var ListCollaborationTrainedModelExportJobs$ = [9, n0, _LCTMEJ,
|
|
1839
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/trained-models/{trainedModelArn}/export-jobs", 200] }, () => ListCollaborationTrainedModelExportJobsRequest$, () => ListCollaborationTrainedModelExportJobsResponse$
|
|
1840
|
+
];
|
|
1841
|
+
var ListCollaborationTrainedModelInferenceJobs$ = [9, n0, _LCTMIJ,
|
|
1842
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/trained-model-inference-jobs", 200] }, () => ListCollaborationTrainedModelInferenceJobsRequest$, () => ListCollaborationTrainedModelInferenceJobsResponse$
|
|
1843
|
+
];
|
|
1844
|
+
var ListCollaborationTrainedModels$ = [9, n0, _LCTM,
|
|
1845
|
+
{ [_ht]: ["GET", "/collaborations/{collaborationIdentifier}/trained-models", 200] }, () => ListCollaborationTrainedModelsRequest$, () => ListCollaborationTrainedModelsResponse$
|
|
1846
|
+
];
|
|
1847
|
+
var ListConfiguredAudienceModels$ = [9, n0, _LCAM,
|
|
1848
|
+
{ [_ht]: ["GET", "/configured-audience-model", 200] }, () => ListConfiguredAudienceModelsRequest$, () => ListConfiguredAudienceModelsResponse$
|
|
1849
|
+
];
|
|
1850
|
+
var ListConfiguredModelAlgorithmAssociations$ = [9, n0, _LCMAA,
|
|
1851
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/configured-model-algorithm-associations", 200] }, () => ListConfiguredModelAlgorithmAssociationsRequest$, () => ListConfiguredModelAlgorithmAssociationsResponse$
|
|
1852
|
+
];
|
|
1853
|
+
var ListConfiguredModelAlgorithms$ = [9, n0, _LCMA,
|
|
1854
|
+
{ [_ht]: ["GET", "/configured-model-algorithms", 200] }, () => ListConfiguredModelAlgorithmsRequest$, () => ListConfiguredModelAlgorithmsResponse$
|
|
1855
|
+
];
|
|
1856
|
+
var ListMLInputChannels$ = [9, n0, _LMLIC,
|
|
1857
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/ml-input-channels", 200] }, () => ListMLInputChannelsRequest$, () => ListMLInputChannelsResponse$
|
|
1858
|
+
];
|
|
1859
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1860
|
+
{ [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1861
|
+
];
|
|
1862
|
+
var ListTrainedModelInferenceJobs$ = [9, n0, _LTMIJ,
|
|
1863
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/trained-model-inference-jobs", 200] }, () => ListTrainedModelInferenceJobsRequest$, () => ListTrainedModelInferenceJobsResponse$
|
|
1864
|
+
];
|
|
1865
|
+
var ListTrainedModels$ = [9, n0, _LTM,
|
|
1866
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/trained-models", 200] }, () => ListTrainedModelsRequest$, () => ListTrainedModelsResponse$
|
|
1867
|
+
];
|
|
1868
|
+
var ListTrainedModelVersions$ = [9, n0, _LTMV,
|
|
1869
|
+
{ [_ht]: ["GET", "/memberships/{membershipIdentifier}/trained-models/{trainedModelArn}/versions", 200] }, () => ListTrainedModelVersionsRequest$, () => ListTrainedModelVersionsResponse$
|
|
1870
|
+
];
|
|
1871
|
+
var ListTrainingDatasets$ = [9, n0, _LTD,
|
|
1872
|
+
{ [_ht]: ["GET", "/training-dataset", 200] }, () => ListTrainingDatasetsRequest$, () => ListTrainingDatasetsResponse$
|
|
1873
|
+
];
|
|
1874
|
+
var PutConfiguredAudienceModelPolicy$ = [9, n0, _PCAMP,
|
|
1875
|
+
{ [_ht]: ["PUT", "/configured-audience-model/{configuredAudienceModelArn}/policy", 200] }, () => PutConfiguredAudienceModelPolicyRequest$, () => PutConfiguredAudienceModelPolicyResponse$
|
|
1876
|
+
];
|
|
1877
|
+
var PutMLConfiguration$ = [9, n0, _PMLC,
|
|
1878
|
+
{ [_ht]: ["PUT", "/memberships/{membershipIdentifier}/ml-configurations", 200] }, () => PutMLConfigurationRequest$, () => __Unit
|
|
1879
|
+
];
|
|
1880
|
+
var StartAudienceExportJob$ = [9, n0, _SAEJ,
|
|
1881
|
+
{ [_ht]: ["POST", "/audience-export-job", 200] }, () => StartAudienceExportJobRequest$, () => __Unit
|
|
1882
|
+
];
|
|
1883
|
+
var StartAudienceGenerationJob$ = [9, n0, _SAGJ,
|
|
1884
|
+
{ [_ht]: ["POST", "/audience-generation-job", 200] }, () => StartAudienceGenerationJobRequest$, () => StartAudienceGenerationJobResponse$
|
|
1885
|
+
];
|
|
1886
|
+
var StartTrainedModelExportJob$ = [9, n0, _STMEJ,
|
|
1887
|
+
{ [_ht]: ["POST", "/memberships/{membershipIdentifier}/trained-models/{trainedModelArn}/export-jobs", 200] }, () => StartTrainedModelExportJobRequest$, () => __Unit
|
|
1888
|
+
];
|
|
1889
|
+
var StartTrainedModelInferenceJob$ = [9, n0, _STMIJ,
|
|
1890
|
+
{ [_ht]: ["POST", "/memberships/{membershipIdentifier}/trained-model-inference-jobs", 200] }, () => StartTrainedModelInferenceJobRequest$, () => StartTrainedModelInferenceJobResponse$
|
|
1891
|
+
];
|
|
1892
|
+
var TagResource$ = [9, n0, _TR,
|
|
1893
|
+
{ [_ht]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1894
|
+
];
|
|
1895
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1896
|
+
{ [_ht]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1897
|
+
];
|
|
1898
|
+
var UpdateConfiguredAudienceModel$ = [9, n0, _UCAM,
|
|
1899
|
+
{ [_ht]: ["PATCH", "/configured-audience-model/{configuredAudienceModelArn}", 200] }, () => UpdateConfiguredAudienceModelRequest$, () => UpdateConfiguredAudienceModelResponse$
|
|
1900
|
+
];
|
|
1901
|
+
|
|
1902
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1903
|
+
return {
|
|
1904
|
+
apiVersion: "2023-09-06",
|
|
1905
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1906
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1907
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1908
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1909
|
+
extensions: config?.extensions ?? [],
|
|
1910
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultCleanRoomsMLHttpAuthSchemeProvider,
|
|
1911
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1912
|
+
{
|
|
1913
|
+
schemeId: "aws.auth#sigv4",
|
|
1914
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1915
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1916
|
+
},
|
|
1917
|
+
],
|
|
1918
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1919
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1920
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1921
|
+
defaultNamespace: "com.amazonaws.cleanroomsml",
|
|
1922
|
+
errorTypeRegistries,
|
|
1923
|
+
version: "2023-09-06",
|
|
1924
|
+
serviceTarget: "AWSStarkControlService",
|
|
1925
|
+
},
|
|
1926
|
+
serviceId: config?.serviceId ?? "CleanRoomsML",
|
|
1927
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1928
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1929
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1932
|
+
|
|
1933
|
+
const getRuntimeConfig = (config) => {
|
|
1934
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1935
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1936
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1937
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1938
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1939
|
+
const loaderConfig = {
|
|
1940
|
+
profile: config?.profile,
|
|
1941
|
+
logger: clientSharedValues.logger,
|
|
1942
|
+
};
|
|
1943
|
+
return {
|
|
1944
|
+
...clientSharedValues,
|
|
1945
|
+
...config,
|
|
1946
|
+
runtime: "node",
|
|
1947
|
+
defaultsMode,
|
|
1948
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1949
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1950
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1951
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1952
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1953
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1954
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1955
|
+
retryMode: config?.retryMode ??
|
|
1956
|
+
loadConfig({
|
|
1957
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1958
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1959
|
+
}, config),
|
|
1960
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
1961
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1962
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1963
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1964
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1965
|
+
};
|
|
1966
|
+
};
|
|
1967
|
+
|
|
34
1968
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1969
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1970
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1331,101 +3265,356 @@ const TrainingDatasetStatus = {
|
|
|
1331
3265
|
ACTIVE: "ACTIVE",
|
|
1332
3266
|
};
|
|
1333
3267
|
|
|
3268
|
+
exports.AccessBudget$ = AccessBudget$;
|
|
3269
|
+
exports.AccessBudgetDetails$ = AccessBudgetDetails$;
|
|
1334
3270
|
exports.AccessBudgetType = AccessBudgetType;
|
|
3271
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3272
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3273
|
+
exports.AudienceDestination$ = AudienceDestination$;
|
|
1335
3274
|
exports.AudienceExportJobStatus = AudienceExportJobStatus;
|
|
3275
|
+
exports.AudienceExportJobSummary$ = AudienceExportJobSummary$;
|
|
3276
|
+
exports.AudienceGenerationJobDataSource$ = AudienceGenerationJobDataSource$;
|
|
1336
3277
|
exports.AudienceGenerationJobStatus = AudienceGenerationJobStatus;
|
|
3278
|
+
exports.AudienceGenerationJobSummary$ = AudienceGenerationJobSummary$;
|
|
1337
3279
|
exports.AudienceModelStatus = AudienceModelStatus;
|
|
3280
|
+
exports.AudienceModelSummary$ = AudienceModelSummary$;
|
|
3281
|
+
exports.AudienceQualityMetrics$ = AudienceQualityMetrics$;
|
|
3282
|
+
exports.AudienceSize$ = AudienceSize$;
|
|
3283
|
+
exports.AudienceSizeConfig$ = AudienceSizeConfig$;
|
|
1338
3284
|
exports.AudienceSizeType = AudienceSizeType;
|
|
1339
3285
|
exports.AutoRefreshMode = AutoRefreshMode;
|
|
3286
|
+
exports.CancelTrainedModel$ = CancelTrainedModel$;
|
|
1340
3287
|
exports.CancelTrainedModelCommand = CancelTrainedModelCommand;
|
|
3288
|
+
exports.CancelTrainedModelInferenceJob$ = CancelTrainedModelInferenceJob$;
|
|
1341
3289
|
exports.CancelTrainedModelInferenceJobCommand = CancelTrainedModelInferenceJobCommand;
|
|
3290
|
+
exports.CancelTrainedModelInferenceJobRequest$ = CancelTrainedModelInferenceJobRequest$;
|
|
3291
|
+
exports.CancelTrainedModelRequest$ = CancelTrainedModelRequest$;
|
|
1342
3292
|
exports.CleanRoomsML = CleanRoomsML;
|
|
1343
3293
|
exports.CleanRoomsMLClient = CleanRoomsMLClient;
|
|
3294
|
+
exports.CleanRoomsMLServiceException = CleanRoomsMLServiceException;
|
|
3295
|
+
exports.CleanRoomsMLServiceException$ = CleanRoomsMLServiceException$;
|
|
3296
|
+
exports.CollaborationConfiguredModelAlgorithmAssociationSummary$ = CollaborationConfiguredModelAlgorithmAssociationSummary$;
|
|
3297
|
+
exports.CollaborationMLInputChannelSummary$ = CollaborationMLInputChannelSummary$;
|
|
3298
|
+
exports.CollaborationTrainedModelExportJobSummary$ = CollaborationTrainedModelExportJobSummary$;
|
|
3299
|
+
exports.CollaborationTrainedModelInferenceJobSummary$ = CollaborationTrainedModelInferenceJobSummary$;
|
|
3300
|
+
exports.CollaborationTrainedModelSummary$ = CollaborationTrainedModelSummary$;
|
|
3301
|
+
exports.ColumnClassificationDetails$ = ColumnClassificationDetails$;
|
|
3302
|
+
exports.ColumnSchema$ = ColumnSchema$;
|
|
1344
3303
|
exports.ColumnType = ColumnType;
|
|
3304
|
+
exports.ComputeConfiguration$ = ComputeConfiguration$;
|
|
3305
|
+
exports.ConfiguredAudienceModelOutputConfig$ = ConfiguredAudienceModelOutputConfig$;
|
|
1345
3306
|
exports.ConfiguredAudienceModelStatus = ConfiguredAudienceModelStatus;
|
|
3307
|
+
exports.ConfiguredAudienceModelSummary$ = ConfiguredAudienceModelSummary$;
|
|
3308
|
+
exports.ConfiguredModelAlgorithmAssociationSummary$ = ConfiguredModelAlgorithmAssociationSummary$;
|
|
3309
|
+
exports.ConfiguredModelAlgorithmSummary$ = ConfiguredModelAlgorithmSummary$;
|
|
3310
|
+
exports.ConflictException = ConflictException;
|
|
3311
|
+
exports.ConflictException$ = ConflictException$;
|
|
3312
|
+
exports.ContainerConfig$ = ContainerConfig$;
|
|
3313
|
+
exports.CreateAudienceModel$ = CreateAudienceModel$;
|
|
1346
3314
|
exports.CreateAudienceModelCommand = CreateAudienceModelCommand;
|
|
3315
|
+
exports.CreateAudienceModelRequest$ = CreateAudienceModelRequest$;
|
|
3316
|
+
exports.CreateAudienceModelResponse$ = CreateAudienceModelResponse$;
|
|
3317
|
+
exports.CreateConfiguredAudienceModel$ = CreateConfiguredAudienceModel$;
|
|
1347
3318
|
exports.CreateConfiguredAudienceModelCommand = CreateConfiguredAudienceModelCommand;
|
|
3319
|
+
exports.CreateConfiguredAudienceModelRequest$ = CreateConfiguredAudienceModelRequest$;
|
|
3320
|
+
exports.CreateConfiguredAudienceModelResponse$ = CreateConfiguredAudienceModelResponse$;
|
|
3321
|
+
exports.CreateConfiguredModelAlgorithm$ = CreateConfiguredModelAlgorithm$;
|
|
3322
|
+
exports.CreateConfiguredModelAlgorithmAssociation$ = CreateConfiguredModelAlgorithmAssociation$;
|
|
1348
3323
|
exports.CreateConfiguredModelAlgorithmAssociationCommand = CreateConfiguredModelAlgorithmAssociationCommand;
|
|
3324
|
+
exports.CreateConfiguredModelAlgorithmAssociationRequest$ = CreateConfiguredModelAlgorithmAssociationRequest$;
|
|
3325
|
+
exports.CreateConfiguredModelAlgorithmAssociationResponse$ = CreateConfiguredModelAlgorithmAssociationResponse$;
|
|
1349
3326
|
exports.CreateConfiguredModelAlgorithmCommand = CreateConfiguredModelAlgorithmCommand;
|
|
3327
|
+
exports.CreateConfiguredModelAlgorithmRequest$ = CreateConfiguredModelAlgorithmRequest$;
|
|
3328
|
+
exports.CreateConfiguredModelAlgorithmResponse$ = CreateConfiguredModelAlgorithmResponse$;
|
|
3329
|
+
exports.CreateMLInputChannel$ = CreateMLInputChannel$;
|
|
1350
3330
|
exports.CreateMLInputChannelCommand = CreateMLInputChannelCommand;
|
|
3331
|
+
exports.CreateMLInputChannelRequest$ = CreateMLInputChannelRequest$;
|
|
3332
|
+
exports.CreateMLInputChannelResponse$ = CreateMLInputChannelResponse$;
|
|
3333
|
+
exports.CreateTrainedModel$ = CreateTrainedModel$;
|
|
1351
3334
|
exports.CreateTrainedModelCommand = CreateTrainedModelCommand;
|
|
3335
|
+
exports.CreateTrainedModelRequest$ = CreateTrainedModelRequest$;
|
|
3336
|
+
exports.CreateTrainedModelResponse$ = CreateTrainedModelResponse$;
|
|
3337
|
+
exports.CreateTrainingDataset$ = CreateTrainingDataset$;
|
|
1352
3338
|
exports.CreateTrainingDatasetCommand = CreateTrainingDatasetCommand;
|
|
3339
|
+
exports.CreateTrainingDatasetRequest$ = CreateTrainingDatasetRequest$;
|
|
3340
|
+
exports.CreateTrainingDatasetResponse$ = CreateTrainingDatasetResponse$;
|
|
3341
|
+
exports.CustomEntityConfig$ = CustomEntityConfig$;
|
|
3342
|
+
exports.DataPrivacyScores$ = DataPrivacyScores$;
|
|
3343
|
+
exports.DataSource$ = DataSource$;
|
|
3344
|
+
exports.Dataset$ = Dataset$;
|
|
3345
|
+
exports.DatasetInputConfig$ = DatasetInputConfig$;
|
|
1353
3346
|
exports.DatasetType = DatasetType;
|
|
3347
|
+
exports.DeleteAudienceGenerationJob$ = DeleteAudienceGenerationJob$;
|
|
1354
3348
|
exports.DeleteAudienceGenerationJobCommand = DeleteAudienceGenerationJobCommand;
|
|
3349
|
+
exports.DeleteAudienceGenerationJobRequest$ = DeleteAudienceGenerationJobRequest$;
|
|
3350
|
+
exports.DeleteAudienceModel$ = DeleteAudienceModel$;
|
|
1355
3351
|
exports.DeleteAudienceModelCommand = DeleteAudienceModelCommand;
|
|
3352
|
+
exports.DeleteAudienceModelRequest$ = DeleteAudienceModelRequest$;
|
|
3353
|
+
exports.DeleteConfiguredAudienceModel$ = DeleteConfiguredAudienceModel$;
|
|
1356
3354
|
exports.DeleteConfiguredAudienceModelCommand = DeleteConfiguredAudienceModelCommand;
|
|
3355
|
+
exports.DeleteConfiguredAudienceModelPolicy$ = DeleteConfiguredAudienceModelPolicy$;
|
|
1357
3356
|
exports.DeleteConfiguredAudienceModelPolicyCommand = DeleteConfiguredAudienceModelPolicyCommand;
|
|
3357
|
+
exports.DeleteConfiguredAudienceModelPolicyRequest$ = DeleteConfiguredAudienceModelPolicyRequest$;
|
|
3358
|
+
exports.DeleteConfiguredAudienceModelRequest$ = DeleteConfiguredAudienceModelRequest$;
|
|
3359
|
+
exports.DeleteConfiguredModelAlgorithm$ = DeleteConfiguredModelAlgorithm$;
|
|
3360
|
+
exports.DeleteConfiguredModelAlgorithmAssociation$ = DeleteConfiguredModelAlgorithmAssociation$;
|
|
1358
3361
|
exports.DeleteConfiguredModelAlgorithmAssociationCommand = DeleteConfiguredModelAlgorithmAssociationCommand;
|
|
3362
|
+
exports.DeleteConfiguredModelAlgorithmAssociationRequest$ = DeleteConfiguredModelAlgorithmAssociationRequest$;
|
|
1359
3363
|
exports.DeleteConfiguredModelAlgorithmCommand = DeleteConfiguredModelAlgorithmCommand;
|
|
3364
|
+
exports.DeleteConfiguredModelAlgorithmRequest$ = DeleteConfiguredModelAlgorithmRequest$;
|
|
3365
|
+
exports.DeleteMLConfiguration$ = DeleteMLConfiguration$;
|
|
1360
3366
|
exports.DeleteMLConfigurationCommand = DeleteMLConfigurationCommand;
|
|
3367
|
+
exports.DeleteMLConfigurationRequest$ = DeleteMLConfigurationRequest$;
|
|
3368
|
+
exports.DeleteMLInputChannelData$ = DeleteMLInputChannelData$;
|
|
1361
3369
|
exports.DeleteMLInputChannelDataCommand = DeleteMLInputChannelDataCommand;
|
|
3370
|
+
exports.DeleteMLInputChannelDataRequest$ = DeleteMLInputChannelDataRequest$;
|
|
3371
|
+
exports.DeleteTrainedModelOutput$ = DeleteTrainedModelOutput$;
|
|
1362
3372
|
exports.DeleteTrainedModelOutputCommand = DeleteTrainedModelOutputCommand;
|
|
3373
|
+
exports.DeleteTrainedModelOutputRequest$ = DeleteTrainedModelOutputRequest$;
|
|
3374
|
+
exports.DeleteTrainingDataset$ = DeleteTrainingDataset$;
|
|
1363
3375
|
exports.DeleteTrainingDatasetCommand = DeleteTrainingDatasetCommand;
|
|
3376
|
+
exports.DeleteTrainingDatasetRequest$ = DeleteTrainingDatasetRequest$;
|
|
3377
|
+
exports.Destination$ = Destination$;
|
|
1364
3378
|
exports.EntityType = EntityType;
|
|
3379
|
+
exports.GetAudienceGenerationJob$ = GetAudienceGenerationJob$;
|
|
1365
3380
|
exports.GetAudienceGenerationJobCommand = GetAudienceGenerationJobCommand;
|
|
3381
|
+
exports.GetAudienceGenerationJobRequest$ = GetAudienceGenerationJobRequest$;
|
|
3382
|
+
exports.GetAudienceGenerationJobResponse$ = GetAudienceGenerationJobResponse$;
|
|
3383
|
+
exports.GetAudienceModel$ = GetAudienceModel$;
|
|
1366
3384
|
exports.GetAudienceModelCommand = GetAudienceModelCommand;
|
|
3385
|
+
exports.GetAudienceModelRequest$ = GetAudienceModelRequest$;
|
|
3386
|
+
exports.GetAudienceModelResponse$ = GetAudienceModelResponse$;
|
|
3387
|
+
exports.GetCollaborationConfiguredModelAlgorithmAssociation$ = GetCollaborationConfiguredModelAlgorithmAssociation$;
|
|
1367
3388
|
exports.GetCollaborationConfiguredModelAlgorithmAssociationCommand = GetCollaborationConfiguredModelAlgorithmAssociationCommand;
|
|
3389
|
+
exports.GetCollaborationConfiguredModelAlgorithmAssociationRequest$ = GetCollaborationConfiguredModelAlgorithmAssociationRequest$;
|
|
3390
|
+
exports.GetCollaborationConfiguredModelAlgorithmAssociationResponse$ = GetCollaborationConfiguredModelAlgorithmAssociationResponse$;
|
|
3391
|
+
exports.GetCollaborationMLInputChannel$ = GetCollaborationMLInputChannel$;
|
|
1368
3392
|
exports.GetCollaborationMLInputChannelCommand = GetCollaborationMLInputChannelCommand;
|
|
3393
|
+
exports.GetCollaborationMLInputChannelRequest$ = GetCollaborationMLInputChannelRequest$;
|
|
3394
|
+
exports.GetCollaborationMLInputChannelResponse$ = GetCollaborationMLInputChannelResponse$;
|
|
3395
|
+
exports.GetCollaborationTrainedModel$ = GetCollaborationTrainedModel$;
|
|
1369
3396
|
exports.GetCollaborationTrainedModelCommand = GetCollaborationTrainedModelCommand;
|
|
3397
|
+
exports.GetCollaborationTrainedModelRequest$ = GetCollaborationTrainedModelRequest$;
|
|
3398
|
+
exports.GetCollaborationTrainedModelResponse$ = GetCollaborationTrainedModelResponse$;
|
|
3399
|
+
exports.GetConfiguredAudienceModel$ = GetConfiguredAudienceModel$;
|
|
1370
3400
|
exports.GetConfiguredAudienceModelCommand = GetConfiguredAudienceModelCommand;
|
|
3401
|
+
exports.GetConfiguredAudienceModelPolicy$ = GetConfiguredAudienceModelPolicy$;
|
|
1371
3402
|
exports.GetConfiguredAudienceModelPolicyCommand = GetConfiguredAudienceModelPolicyCommand;
|
|
3403
|
+
exports.GetConfiguredAudienceModelPolicyRequest$ = GetConfiguredAudienceModelPolicyRequest$;
|
|
3404
|
+
exports.GetConfiguredAudienceModelPolicyResponse$ = GetConfiguredAudienceModelPolicyResponse$;
|
|
3405
|
+
exports.GetConfiguredAudienceModelRequest$ = GetConfiguredAudienceModelRequest$;
|
|
3406
|
+
exports.GetConfiguredAudienceModelResponse$ = GetConfiguredAudienceModelResponse$;
|
|
3407
|
+
exports.GetConfiguredModelAlgorithm$ = GetConfiguredModelAlgorithm$;
|
|
3408
|
+
exports.GetConfiguredModelAlgorithmAssociation$ = GetConfiguredModelAlgorithmAssociation$;
|
|
1372
3409
|
exports.GetConfiguredModelAlgorithmAssociationCommand = GetConfiguredModelAlgorithmAssociationCommand;
|
|
3410
|
+
exports.GetConfiguredModelAlgorithmAssociationRequest$ = GetConfiguredModelAlgorithmAssociationRequest$;
|
|
3411
|
+
exports.GetConfiguredModelAlgorithmAssociationResponse$ = GetConfiguredModelAlgorithmAssociationResponse$;
|
|
1373
3412
|
exports.GetConfiguredModelAlgorithmCommand = GetConfiguredModelAlgorithmCommand;
|
|
3413
|
+
exports.GetConfiguredModelAlgorithmRequest$ = GetConfiguredModelAlgorithmRequest$;
|
|
3414
|
+
exports.GetConfiguredModelAlgorithmResponse$ = GetConfiguredModelAlgorithmResponse$;
|
|
3415
|
+
exports.GetMLConfiguration$ = GetMLConfiguration$;
|
|
1374
3416
|
exports.GetMLConfigurationCommand = GetMLConfigurationCommand;
|
|
3417
|
+
exports.GetMLConfigurationRequest$ = GetMLConfigurationRequest$;
|
|
3418
|
+
exports.GetMLConfigurationResponse$ = GetMLConfigurationResponse$;
|
|
3419
|
+
exports.GetMLInputChannel$ = GetMLInputChannel$;
|
|
1375
3420
|
exports.GetMLInputChannelCommand = GetMLInputChannelCommand;
|
|
3421
|
+
exports.GetMLInputChannelRequest$ = GetMLInputChannelRequest$;
|
|
3422
|
+
exports.GetMLInputChannelResponse$ = GetMLInputChannelResponse$;
|
|
3423
|
+
exports.GetTrainedModel$ = GetTrainedModel$;
|
|
1376
3424
|
exports.GetTrainedModelCommand = GetTrainedModelCommand;
|
|
3425
|
+
exports.GetTrainedModelInferenceJob$ = GetTrainedModelInferenceJob$;
|
|
1377
3426
|
exports.GetTrainedModelInferenceJobCommand = GetTrainedModelInferenceJobCommand;
|
|
3427
|
+
exports.GetTrainedModelInferenceJobRequest$ = GetTrainedModelInferenceJobRequest$;
|
|
3428
|
+
exports.GetTrainedModelInferenceJobResponse$ = GetTrainedModelInferenceJobResponse$;
|
|
3429
|
+
exports.GetTrainedModelRequest$ = GetTrainedModelRequest$;
|
|
3430
|
+
exports.GetTrainedModelResponse$ = GetTrainedModelResponse$;
|
|
3431
|
+
exports.GetTrainingDataset$ = GetTrainingDataset$;
|
|
1378
3432
|
exports.GetTrainingDatasetCommand = GetTrainingDatasetCommand;
|
|
3433
|
+
exports.GetTrainingDatasetRequest$ = GetTrainingDatasetRequest$;
|
|
3434
|
+
exports.GetTrainingDatasetResponse$ = GetTrainingDatasetResponse$;
|
|
3435
|
+
exports.GlueDataSource$ = GlueDataSource$;
|
|
3436
|
+
exports.IncrementalTrainingDataChannel$ = IncrementalTrainingDataChannel$;
|
|
3437
|
+
exports.IncrementalTrainingDataChannelOutput$ = IncrementalTrainingDataChannelOutput$;
|
|
3438
|
+
exports.InferenceContainerConfig$ = InferenceContainerConfig$;
|
|
3439
|
+
exports.InferenceContainerExecutionParameters$ = InferenceContainerExecutionParameters$;
|
|
1379
3440
|
exports.InferenceInstanceType = InferenceInstanceType;
|
|
3441
|
+
exports.InferenceOutputConfiguration$ = InferenceOutputConfiguration$;
|
|
3442
|
+
exports.InferenceReceiverMember$ = InferenceReceiverMember$;
|
|
3443
|
+
exports.InferenceResourceConfig$ = InferenceResourceConfig$;
|
|
3444
|
+
exports.InputChannel$ = InputChannel$;
|
|
3445
|
+
exports.InputChannelDataSource$ = InputChannelDataSource$;
|
|
3446
|
+
exports.InternalServiceException = InternalServiceException;
|
|
3447
|
+
exports.InternalServiceException$ = InternalServiceException$;
|
|
3448
|
+
exports.ListAudienceExportJobs$ = ListAudienceExportJobs$;
|
|
1380
3449
|
exports.ListAudienceExportJobsCommand = ListAudienceExportJobsCommand;
|
|
3450
|
+
exports.ListAudienceExportJobsRequest$ = ListAudienceExportJobsRequest$;
|
|
3451
|
+
exports.ListAudienceExportJobsResponse$ = ListAudienceExportJobsResponse$;
|
|
3452
|
+
exports.ListAudienceGenerationJobs$ = ListAudienceGenerationJobs$;
|
|
1381
3453
|
exports.ListAudienceGenerationJobsCommand = ListAudienceGenerationJobsCommand;
|
|
3454
|
+
exports.ListAudienceGenerationJobsRequest$ = ListAudienceGenerationJobsRequest$;
|
|
3455
|
+
exports.ListAudienceGenerationJobsResponse$ = ListAudienceGenerationJobsResponse$;
|
|
3456
|
+
exports.ListAudienceModels$ = ListAudienceModels$;
|
|
1382
3457
|
exports.ListAudienceModelsCommand = ListAudienceModelsCommand;
|
|
3458
|
+
exports.ListAudienceModelsRequest$ = ListAudienceModelsRequest$;
|
|
3459
|
+
exports.ListAudienceModelsResponse$ = ListAudienceModelsResponse$;
|
|
3460
|
+
exports.ListCollaborationConfiguredModelAlgorithmAssociations$ = ListCollaborationConfiguredModelAlgorithmAssociations$;
|
|
1383
3461
|
exports.ListCollaborationConfiguredModelAlgorithmAssociationsCommand = ListCollaborationConfiguredModelAlgorithmAssociationsCommand;
|
|
3462
|
+
exports.ListCollaborationConfiguredModelAlgorithmAssociationsRequest$ = ListCollaborationConfiguredModelAlgorithmAssociationsRequest$;
|
|
3463
|
+
exports.ListCollaborationConfiguredModelAlgorithmAssociationsResponse$ = ListCollaborationConfiguredModelAlgorithmAssociationsResponse$;
|
|
3464
|
+
exports.ListCollaborationMLInputChannels$ = ListCollaborationMLInputChannels$;
|
|
1384
3465
|
exports.ListCollaborationMLInputChannelsCommand = ListCollaborationMLInputChannelsCommand;
|
|
3466
|
+
exports.ListCollaborationMLInputChannelsRequest$ = ListCollaborationMLInputChannelsRequest$;
|
|
3467
|
+
exports.ListCollaborationMLInputChannelsResponse$ = ListCollaborationMLInputChannelsResponse$;
|
|
3468
|
+
exports.ListCollaborationTrainedModelExportJobs$ = ListCollaborationTrainedModelExportJobs$;
|
|
1385
3469
|
exports.ListCollaborationTrainedModelExportJobsCommand = ListCollaborationTrainedModelExportJobsCommand;
|
|
3470
|
+
exports.ListCollaborationTrainedModelExportJobsRequest$ = ListCollaborationTrainedModelExportJobsRequest$;
|
|
3471
|
+
exports.ListCollaborationTrainedModelExportJobsResponse$ = ListCollaborationTrainedModelExportJobsResponse$;
|
|
3472
|
+
exports.ListCollaborationTrainedModelInferenceJobs$ = ListCollaborationTrainedModelInferenceJobs$;
|
|
1386
3473
|
exports.ListCollaborationTrainedModelInferenceJobsCommand = ListCollaborationTrainedModelInferenceJobsCommand;
|
|
3474
|
+
exports.ListCollaborationTrainedModelInferenceJobsRequest$ = ListCollaborationTrainedModelInferenceJobsRequest$;
|
|
3475
|
+
exports.ListCollaborationTrainedModelInferenceJobsResponse$ = ListCollaborationTrainedModelInferenceJobsResponse$;
|
|
3476
|
+
exports.ListCollaborationTrainedModels$ = ListCollaborationTrainedModels$;
|
|
1387
3477
|
exports.ListCollaborationTrainedModelsCommand = ListCollaborationTrainedModelsCommand;
|
|
3478
|
+
exports.ListCollaborationTrainedModelsRequest$ = ListCollaborationTrainedModelsRequest$;
|
|
3479
|
+
exports.ListCollaborationTrainedModelsResponse$ = ListCollaborationTrainedModelsResponse$;
|
|
3480
|
+
exports.ListConfiguredAudienceModels$ = ListConfiguredAudienceModels$;
|
|
1388
3481
|
exports.ListConfiguredAudienceModelsCommand = ListConfiguredAudienceModelsCommand;
|
|
3482
|
+
exports.ListConfiguredAudienceModelsRequest$ = ListConfiguredAudienceModelsRequest$;
|
|
3483
|
+
exports.ListConfiguredAudienceModelsResponse$ = ListConfiguredAudienceModelsResponse$;
|
|
3484
|
+
exports.ListConfiguredModelAlgorithmAssociations$ = ListConfiguredModelAlgorithmAssociations$;
|
|
1389
3485
|
exports.ListConfiguredModelAlgorithmAssociationsCommand = ListConfiguredModelAlgorithmAssociationsCommand;
|
|
3486
|
+
exports.ListConfiguredModelAlgorithmAssociationsRequest$ = ListConfiguredModelAlgorithmAssociationsRequest$;
|
|
3487
|
+
exports.ListConfiguredModelAlgorithmAssociationsResponse$ = ListConfiguredModelAlgorithmAssociationsResponse$;
|
|
3488
|
+
exports.ListConfiguredModelAlgorithms$ = ListConfiguredModelAlgorithms$;
|
|
1390
3489
|
exports.ListConfiguredModelAlgorithmsCommand = ListConfiguredModelAlgorithmsCommand;
|
|
3490
|
+
exports.ListConfiguredModelAlgorithmsRequest$ = ListConfiguredModelAlgorithmsRequest$;
|
|
3491
|
+
exports.ListConfiguredModelAlgorithmsResponse$ = ListConfiguredModelAlgorithmsResponse$;
|
|
3492
|
+
exports.ListMLInputChannels$ = ListMLInputChannels$;
|
|
1391
3493
|
exports.ListMLInputChannelsCommand = ListMLInputChannelsCommand;
|
|
3494
|
+
exports.ListMLInputChannelsRequest$ = ListMLInputChannelsRequest$;
|
|
3495
|
+
exports.ListMLInputChannelsResponse$ = ListMLInputChannelsResponse$;
|
|
3496
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1392
3497
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3498
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3499
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3500
|
+
exports.ListTrainedModelInferenceJobs$ = ListTrainedModelInferenceJobs$;
|
|
1393
3501
|
exports.ListTrainedModelInferenceJobsCommand = ListTrainedModelInferenceJobsCommand;
|
|
3502
|
+
exports.ListTrainedModelInferenceJobsRequest$ = ListTrainedModelInferenceJobsRequest$;
|
|
3503
|
+
exports.ListTrainedModelInferenceJobsResponse$ = ListTrainedModelInferenceJobsResponse$;
|
|
3504
|
+
exports.ListTrainedModelVersions$ = ListTrainedModelVersions$;
|
|
1394
3505
|
exports.ListTrainedModelVersionsCommand = ListTrainedModelVersionsCommand;
|
|
3506
|
+
exports.ListTrainedModelVersionsRequest$ = ListTrainedModelVersionsRequest$;
|
|
3507
|
+
exports.ListTrainedModelVersionsResponse$ = ListTrainedModelVersionsResponse$;
|
|
3508
|
+
exports.ListTrainedModels$ = ListTrainedModels$;
|
|
1395
3509
|
exports.ListTrainedModelsCommand = ListTrainedModelsCommand;
|
|
3510
|
+
exports.ListTrainedModelsRequest$ = ListTrainedModelsRequest$;
|
|
3511
|
+
exports.ListTrainedModelsResponse$ = ListTrainedModelsResponse$;
|
|
3512
|
+
exports.ListTrainingDatasets$ = ListTrainingDatasets$;
|
|
1396
3513
|
exports.ListTrainingDatasetsCommand = ListTrainingDatasetsCommand;
|
|
3514
|
+
exports.ListTrainingDatasetsRequest$ = ListTrainingDatasetsRequest$;
|
|
3515
|
+
exports.ListTrainingDatasetsResponse$ = ListTrainingDatasetsResponse$;
|
|
3516
|
+
exports.LogRedactionConfiguration$ = LogRedactionConfiguration$;
|
|
1397
3517
|
exports.LogType = LogType;
|
|
3518
|
+
exports.LogsConfigurationPolicy$ = LogsConfigurationPolicy$;
|
|
1398
3519
|
exports.LogsStatus = LogsStatus;
|
|
1399
3520
|
exports.MLInputChannelStatus = MLInputChannelStatus;
|
|
3521
|
+
exports.MLInputChannelSummary$ = MLInputChannelSummary$;
|
|
3522
|
+
exports.MLOutputConfiguration$ = MLOutputConfiguration$;
|
|
3523
|
+
exports.MLSyntheticDataParameters$ = MLSyntheticDataParameters$;
|
|
3524
|
+
exports.MembershipInferenceAttackScore$ = MembershipInferenceAttackScore$;
|
|
1400
3525
|
exports.MembershipInferenceAttackVersion = MembershipInferenceAttackVersion;
|
|
3526
|
+
exports.MetricDefinition$ = MetricDefinition$;
|
|
3527
|
+
exports.MetricsConfigurationPolicy$ = MetricsConfigurationPolicy$;
|
|
1401
3528
|
exports.MetricsStatus = MetricsStatus;
|
|
3529
|
+
exports.ModelInferenceDataSource$ = ModelInferenceDataSource$;
|
|
3530
|
+
exports.ModelTrainingDataChannel$ = ModelTrainingDataChannel$;
|
|
1402
3531
|
exports.NoiseLevelType = NoiseLevelType;
|
|
3532
|
+
exports.PayerConfiguration$ = PayerConfiguration$;
|
|
1403
3533
|
exports.PolicyExistenceCondition = PolicyExistenceCondition;
|
|
3534
|
+
exports.PrivacyBudgets$ = PrivacyBudgets$;
|
|
3535
|
+
exports.PrivacyConfiguration$ = PrivacyConfiguration$;
|
|
3536
|
+
exports.PrivacyConfigurationPolicies$ = PrivacyConfigurationPolicies$;
|
|
3537
|
+
exports.ProtectedQueryInputParameters$ = ProtectedQueryInputParameters$;
|
|
3538
|
+
exports.ProtectedQuerySQLParameters$ = ProtectedQuerySQLParameters$;
|
|
3539
|
+
exports.PutConfiguredAudienceModelPolicy$ = PutConfiguredAudienceModelPolicy$;
|
|
1404
3540
|
exports.PutConfiguredAudienceModelPolicyCommand = PutConfiguredAudienceModelPolicyCommand;
|
|
3541
|
+
exports.PutConfiguredAudienceModelPolicyRequest$ = PutConfiguredAudienceModelPolicyRequest$;
|
|
3542
|
+
exports.PutConfiguredAudienceModelPolicyResponse$ = PutConfiguredAudienceModelPolicyResponse$;
|
|
3543
|
+
exports.PutMLConfiguration$ = PutMLConfiguration$;
|
|
1405
3544
|
exports.PutMLConfigurationCommand = PutMLConfigurationCommand;
|
|
3545
|
+
exports.PutMLConfigurationRequest$ = PutMLConfigurationRequest$;
|
|
3546
|
+
exports.RelevanceMetric$ = RelevanceMetric$;
|
|
3547
|
+
exports.ResourceConfig$ = ResourceConfig$;
|
|
3548
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3549
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1406
3550
|
exports.ResultFormat = ResultFormat;
|
|
3551
|
+
exports.S3ConfigMap$ = S3ConfigMap$;
|
|
1407
3552
|
exports.S3DataDistributionType = S3DataDistributionType;
|
|
3553
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3554
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1408
3555
|
exports.SharedAudienceMetrics = SharedAudienceMetrics;
|
|
3556
|
+
exports.StartAudienceExportJob$ = StartAudienceExportJob$;
|
|
1409
3557
|
exports.StartAudienceExportJobCommand = StartAudienceExportJobCommand;
|
|
3558
|
+
exports.StartAudienceExportJobRequest$ = StartAudienceExportJobRequest$;
|
|
3559
|
+
exports.StartAudienceGenerationJob$ = StartAudienceGenerationJob$;
|
|
1410
3560
|
exports.StartAudienceGenerationJobCommand = StartAudienceGenerationJobCommand;
|
|
3561
|
+
exports.StartAudienceGenerationJobRequest$ = StartAudienceGenerationJobRequest$;
|
|
3562
|
+
exports.StartAudienceGenerationJobResponse$ = StartAudienceGenerationJobResponse$;
|
|
3563
|
+
exports.StartTrainedModelExportJob$ = StartTrainedModelExportJob$;
|
|
1411
3564
|
exports.StartTrainedModelExportJobCommand = StartTrainedModelExportJobCommand;
|
|
3565
|
+
exports.StartTrainedModelExportJobRequest$ = StartTrainedModelExportJobRequest$;
|
|
3566
|
+
exports.StartTrainedModelInferenceJob$ = StartTrainedModelInferenceJob$;
|
|
1412
3567
|
exports.StartTrainedModelInferenceJobCommand = StartTrainedModelInferenceJobCommand;
|
|
3568
|
+
exports.StartTrainedModelInferenceJobRequest$ = StartTrainedModelInferenceJobRequest$;
|
|
3569
|
+
exports.StartTrainedModelInferenceJobResponse$ = StartTrainedModelInferenceJobResponse$;
|
|
3570
|
+
exports.StatusDetails$ = StatusDetails$;
|
|
3571
|
+
exports.StoppingCondition$ = StoppingCondition$;
|
|
3572
|
+
exports.SyntheticDataColumnProperties$ = SyntheticDataColumnProperties$;
|
|
1413
3573
|
exports.SyntheticDataColumnType = SyntheticDataColumnType;
|
|
3574
|
+
exports.SyntheticDataConfiguration$ = SyntheticDataConfiguration$;
|
|
3575
|
+
exports.SyntheticDataEvaluationScores$ = SyntheticDataEvaluationScores$;
|
|
1414
3576
|
exports.TagOnCreatePolicy = TagOnCreatePolicy;
|
|
3577
|
+
exports.TagResource$ = TagResource$;
|
|
1415
3578
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3579
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3580
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3581
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3582
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3583
|
+
exports.TrainedModelArtifactMaxSize$ = TrainedModelArtifactMaxSize$;
|
|
1416
3584
|
exports.TrainedModelArtifactMaxSizeUnitType = TrainedModelArtifactMaxSizeUnitType;
|
|
1417
3585
|
exports.TrainedModelExportFileType = TrainedModelExportFileType;
|
|
1418
3586
|
exports.TrainedModelExportJobStatus = TrainedModelExportJobStatus;
|
|
3587
|
+
exports.TrainedModelExportOutputConfiguration$ = TrainedModelExportOutputConfiguration$;
|
|
3588
|
+
exports.TrainedModelExportReceiverMember$ = TrainedModelExportReceiverMember$;
|
|
3589
|
+
exports.TrainedModelExportsConfigurationPolicy$ = TrainedModelExportsConfigurationPolicy$;
|
|
3590
|
+
exports.TrainedModelExportsMaxSize$ = TrainedModelExportsMaxSize$;
|
|
1419
3591
|
exports.TrainedModelExportsMaxSizeUnitType = TrainedModelExportsMaxSizeUnitType;
|
|
1420
3592
|
exports.TrainedModelInferenceJobStatus = TrainedModelInferenceJobStatus;
|
|
3593
|
+
exports.TrainedModelInferenceJobSummary$ = TrainedModelInferenceJobSummary$;
|
|
3594
|
+
exports.TrainedModelInferenceJobsConfigurationPolicy$ = TrainedModelInferenceJobsConfigurationPolicy$;
|
|
3595
|
+
exports.TrainedModelInferenceMaxOutputSize$ = TrainedModelInferenceMaxOutputSize$;
|
|
1421
3596
|
exports.TrainedModelInferenceMaxOutputSizeUnitType = TrainedModelInferenceMaxOutputSizeUnitType;
|
|
1422
3597
|
exports.TrainedModelStatus = TrainedModelStatus;
|
|
3598
|
+
exports.TrainedModelSummary$ = TrainedModelSummary$;
|
|
3599
|
+
exports.TrainedModelsConfigurationPolicy$ = TrainedModelsConfigurationPolicy$;
|
|
1423
3600
|
exports.TrainingDatasetStatus = TrainingDatasetStatus;
|
|
3601
|
+
exports.TrainingDatasetSummary$ = TrainingDatasetSummary$;
|
|
1424
3602
|
exports.TrainingInputMode = TrainingInputMode;
|
|
3603
|
+
exports.UntagResource$ = UntagResource$;
|
|
1425
3604
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3605
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3606
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3607
|
+
exports.UpdateConfiguredAudienceModel$ = UpdateConfiguredAudienceModel$;
|
|
1426
3608
|
exports.UpdateConfiguredAudienceModelCommand = UpdateConfiguredAudienceModelCommand;
|
|
3609
|
+
exports.UpdateConfiguredAudienceModelRequest$ = UpdateConfiguredAudienceModelRequest$;
|
|
3610
|
+
exports.UpdateConfiguredAudienceModelResponse$ = UpdateConfiguredAudienceModelResponse$;
|
|
3611
|
+
exports.ValidationException = ValidationException;
|
|
3612
|
+
exports.ValidationException$ = ValidationException$;
|
|
3613
|
+
exports.WorkerComputeConfiguration$ = WorkerComputeConfiguration$;
|
|
3614
|
+
exports.WorkerComputeConfigurationProperties$ = WorkerComputeConfigurationProperties$;
|
|
1427
3615
|
exports.WorkerComputeType = WorkerComputeType;
|
|
1428
3616
|
exports._InstanceType = _InstanceType;
|
|
3617
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1429
3618
|
exports.paginateListAudienceExportJobs = paginateListAudienceExportJobs;
|
|
1430
3619
|
exports.paginateListAudienceGenerationJobs = paginateListAudienceGenerationJobs;
|
|
1431
3620
|
exports.paginateListAudienceModels = paginateListAudienceModels;
|