@aws-sdk/client-chime-sdk-media-pipelines 3.1075.0 → 3.1077.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 +1760 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- 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/ChimeSDKMediaPipelinesServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -163
- 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 -1374
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
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
|
-
const {
|
|
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, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultChimeSDKMediaPipelinesHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "chime",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultChimeSDKMediaPipelinesHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,1529 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
86
|
+
],
|
|
87
|
+
results: [
|
|
88
|
+
[a],
|
|
89
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
90
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
91
|
+
[g, i],
|
|
92
|
+
["https://media-pipelines-chime-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
93
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
94
|
+
["https://media-pipelines-chime-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
95
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
96
|
+
["https://media-pipelines-chime.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
97
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
98
|
+
["https://media-pipelines-chime.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
99
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
100
|
+
]
|
|
101
|
+
};
|
|
102
|
+
const root = 2;
|
|
103
|
+
const r = 100_000_000;
|
|
104
|
+
const nodes = new Int32Array([
|
|
105
|
+
-1, 1, -1,
|
|
106
|
+
0, 12, 3,
|
|
107
|
+
1, 4, r + 11,
|
|
108
|
+
2, 5, r + 11,
|
|
109
|
+
3, 8, 6,
|
|
110
|
+
4, 7, r + 10,
|
|
111
|
+
5, r + 8, r + 9,
|
|
112
|
+
4, 10, 9,
|
|
113
|
+
6, r + 6, r + 7,
|
|
114
|
+
5, 11, r + 5,
|
|
115
|
+
6, r + 4, r + 5,
|
|
116
|
+
3, r + 1, 13,
|
|
117
|
+
4, r + 2, r + 3,
|
|
118
|
+
]);
|
|
119
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
120
|
+
|
|
121
|
+
const cache = new EndpointCache({
|
|
122
|
+
size: 50,
|
|
123
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
124
|
+
});
|
|
125
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
126
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
127
|
+
endpointParams: endpointParams,
|
|
128
|
+
logger: context.logger,
|
|
129
|
+
}));
|
|
130
|
+
};
|
|
131
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
132
|
+
|
|
133
|
+
class ChimeSDKMediaPipelinesServiceException extends ServiceException {
|
|
134
|
+
constructor(options) {
|
|
135
|
+
super(options);
|
|
136
|
+
Object.setPrototypeOf(this, ChimeSDKMediaPipelinesServiceException.prototype);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
class BadRequestException extends ChimeSDKMediaPipelinesServiceException {
|
|
141
|
+
name = "BadRequestException";
|
|
142
|
+
$fault = "client";
|
|
143
|
+
Code;
|
|
144
|
+
Message;
|
|
145
|
+
RequestId;
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "BadRequestException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
153
|
+
this.Code = opts.Code;
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
this.RequestId = opts.RequestId;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
class ForbiddenException extends ChimeSDKMediaPipelinesServiceException {
|
|
159
|
+
name = "ForbiddenException";
|
|
160
|
+
$fault = "client";
|
|
161
|
+
Code;
|
|
162
|
+
Message;
|
|
163
|
+
RequestId;
|
|
164
|
+
constructor(opts) {
|
|
165
|
+
super({
|
|
166
|
+
name: "ForbiddenException",
|
|
167
|
+
$fault: "client",
|
|
168
|
+
...opts,
|
|
169
|
+
});
|
|
170
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
171
|
+
this.Code = opts.Code;
|
|
172
|
+
this.Message = opts.Message;
|
|
173
|
+
this.RequestId = opts.RequestId;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
class ResourceLimitExceededException extends ChimeSDKMediaPipelinesServiceException {
|
|
177
|
+
name = "ResourceLimitExceededException";
|
|
178
|
+
$fault = "client";
|
|
179
|
+
Code;
|
|
180
|
+
Message;
|
|
181
|
+
RequestId;
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "ResourceLimitExceededException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, ResourceLimitExceededException.prototype);
|
|
189
|
+
this.Code = opts.Code;
|
|
190
|
+
this.Message = opts.Message;
|
|
191
|
+
this.RequestId = opts.RequestId;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class ServiceFailureException extends ChimeSDKMediaPipelinesServiceException {
|
|
195
|
+
name = "ServiceFailureException";
|
|
196
|
+
$fault = "server";
|
|
197
|
+
Code;
|
|
198
|
+
Message;
|
|
199
|
+
RequestId;
|
|
200
|
+
constructor(opts) {
|
|
201
|
+
super({
|
|
202
|
+
name: "ServiceFailureException",
|
|
203
|
+
$fault: "server",
|
|
204
|
+
...opts,
|
|
205
|
+
});
|
|
206
|
+
Object.setPrototypeOf(this, ServiceFailureException.prototype);
|
|
207
|
+
this.Code = opts.Code;
|
|
208
|
+
this.Message = opts.Message;
|
|
209
|
+
this.RequestId = opts.RequestId;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
class ServiceUnavailableException extends ChimeSDKMediaPipelinesServiceException {
|
|
213
|
+
name = "ServiceUnavailableException";
|
|
214
|
+
$fault = "server";
|
|
215
|
+
Code;
|
|
216
|
+
Message;
|
|
217
|
+
RequestId;
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "ServiceUnavailableException",
|
|
221
|
+
$fault: "server",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
225
|
+
this.Code = opts.Code;
|
|
226
|
+
this.Message = opts.Message;
|
|
227
|
+
this.RequestId = opts.RequestId;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
class ThrottledClientException extends ChimeSDKMediaPipelinesServiceException {
|
|
231
|
+
name = "ThrottledClientException";
|
|
232
|
+
$fault = "client";
|
|
233
|
+
Code;
|
|
234
|
+
Message;
|
|
235
|
+
RequestId;
|
|
236
|
+
constructor(opts) {
|
|
237
|
+
super({
|
|
238
|
+
name: "ThrottledClientException",
|
|
239
|
+
$fault: "client",
|
|
240
|
+
...opts,
|
|
241
|
+
});
|
|
242
|
+
Object.setPrototypeOf(this, ThrottledClientException.prototype);
|
|
243
|
+
this.Code = opts.Code;
|
|
244
|
+
this.Message = opts.Message;
|
|
245
|
+
this.RequestId = opts.RequestId;
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
class UnauthorizedClientException extends ChimeSDKMediaPipelinesServiceException {
|
|
249
|
+
name = "UnauthorizedClientException";
|
|
250
|
+
$fault = "client";
|
|
251
|
+
Code;
|
|
252
|
+
Message;
|
|
253
|
+
RequestId;
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "UnauthorizedClientException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, UnauthorizedClientException.prototype);
|
|
261
|
+
this.Code = opts.Code;
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
this.RequestId = opts.RequestId;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
class NotFoundException extends ChimeSDKMediaPipelinesServiceException {
|
|
267
|
+
name = "NotFoundException";
|
|
268
|
+
$fault = "client";
|
|
269
|
+
Code;
|
|
270
|
+
Message;
|
|
271
|
+
RequestId;
|
|
272
|
+
constructor(opts) {
|
|
273
|
+
super({
|
|
274
|
+
name: "NotFoundException",
|
|
275
|
+
$fault: "client",
|
|
276
|
+
...opts,
|
|
277
|
+
});
|
|
278
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
279
|
+
this.Code = opts.Code;
|
|
280
|
+
this.Message = opts.Message;
|
|
281
|
+
this.RequestId = opts.RequestId;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
class ConflictException extends ChimeSDKMediaPipelinesServiceException {
|
|
285
|
+
name = "ConflictException";
|
|
286
|
+
$fault = "client";
|
|
287
|
+
Code;
|
|
288
|
+
Message;
|
|
289
|
+
RequestId;
|
|
290
|
+
constructor(opts) {
|
|
291
|
+
super({
|
|
292
|
+
name: "ConflictException",
|
|
293
|
+
$fault: "client",
|
|
294
|
+
...opts,
|
|
295
|
+
});
|
|
296
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
297
|
+
this.Code = opts.Code;
|
|
298
|
+
this.Message = opts.Message;
|
|
299
|
+
this.RequestId = opts.RequestId;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
const _A = "Arn";
|
|
304
|
+
const _AAC = "AudioArtifactsConfiguration";
|
|
305
|
+
const _AC = "ArtifactsConfiguration";
|
|
306
|
+
const _ACC = "ArtifactsConcatenationConfiguration";
|
|
307
|
+
const _ACCu = "AudioConcatenationConfiguration";
|
|
308
|
+
const _ACu = "AudioChannels";
|
|
309
|
+
const _AI = "AttendeeIds";
|
|
310
|
+
const _AKEC = "AwsKmsEncryptionContext";
|
|
311
|
+
const _AKKI = "AwsKmsKeyId";
|
|
312
|
+
const _ASOC = "ActiveSpeakerOnlyConfiguration";
|
|
313
|
+
const _ASP = "ActiveSpeakerPosition";
|
|
314
|
+
const _ASR = "AudioSampleRate";
|
|
315
|
+
const _ATCAPC = "AmazonTranscribeCallAnalyticsProcessorConfiguration";
|
|
316
|
+
const _ATPC = "AmazonTranscribeProcessorConfiguration";
|
|
317
|
+
const _Au = "Audio";
|
|
318
|
+
const _BC = "BorderColor";
|
|
319
|
+
const _BRE = "BadRequestException";
|
|
320
|
+
const _BT = "BorderThickness";
|
|
321
|
+
const _C = "Code";
|
|
322
|
+
const _CAC = "ContentArtifactsConfiguration";
|
|
323
|
+
const _CASC = "CallAnalyticsStreamCategories";
|
|
324
|
+
const _CCC = "ContentConcatenationConfiguration";
|
|
325
|
+
const _CD = "ChannelDefinition";
|
|
326
|
+
const _CDh = "ChannelDefinitions";
|
|
327
|
+
const _CE = "ConflictException";
|
|
328
|
+
const _CI = "ChannelId";
|
|
329
|
+
const _CIT = "ContentIdentificationType";
|
|
330
|
+
const _CMCP = "CreateMediaCapturePipeline";
|
|
331
|
+
const _CMCPR = "CreateMediaCapturePipelineRequest";
|
|
332
|
+
const _CMCPRr = "CreateMediaCapturePipelineResponse";
|
|
333
|
+
const _CMCPRre = "CreateMediaConcatenationPipelineRequest";
|
|
334
|
+
const _CMCPRrea = "CreateMediaConcatenationPipelineResponse";
|
|
335
|
+
const _CMCPr = "CreateMediaConcatenationPipeline";
|
|
336
|
+
const _CMIP = "CreateMediaInsightsPipeline";
|
|
337
|
+
const _CMIPC = "CreateMediaInsightsPipelineConfiguration";
|
|
338
|
+
const _CMIPCR = "CreateMediaInsightsPipelineConfigurationRequest";
|
|
339
|
+
const _CMIPCRr = "CreateMediaInsightsPipelineConfigurationResponse";
|
|
340
|
+
const _CMIPR = "CreateMediaInsightsPipelineRequest";
|
|
341
|
+
const _CMIPRr = "CreateMediaInsightsPipelineResponse";
|
|
342
|
+
const _CMLCP = "CreateMediaLiveConnectorPipeline";
|
|
343
|
+
const _CMLCPR = "CreateMediaLiveConnectorPipelineRequest";
|
|
344
|
+
const _CMLCPRr = "CreateMediaLiveConnectorPipelineResponse";
|
|
345
|
+
const _CMPKVSP = "CreateMediaPipelineKinesisVideoStreamPool";
|
|
346
|
+
const _CMPKVSPR = "CreateMediaPipelineKinesisVideoStreamPoolRequest";
|
|
347
|
+
const _CMPKVSPRr = "CreateMediaPipelineKinesisVideoStreamPoolResponse";
|
|
348
|
+
const _CMSP = "CreateMediaStreamPipeline";
|
|
349
|
+
const _CMSPR = "CreateMediaStreamPipelineRequest";
|
|
350
|
+
const _CMSPRr = "CreateMediaStreamPipelineResponse";
|
|
351
|
+
const _CO = "CanvasOrientation";
|
|
352
|
+
const _CR = "CornerRadius";
|
|
353
|
+
const _CRO = "ContentRedactionOutput";
|
|
354
|
+
const _CRT = "ClientRequestToken";
|
|
355
|
+
const _CRTo = "ContentRedactionType";
|
|
356
|
+
const _CS = "ConcatenationSink";
|
|
357
|
+
const _CSL = "ContentShareLayout";
|
|
358
|
+
const _CSLo = "ConcatenationSinkList";
|
|
359
|
+
const _CSLon = "ConcatenationSourceList";
|
|
360
|
+
const _CSMC = "ChimeSdkMeetingConfiguration";
|
|
361
|
+
const _CSMCC = "ChimeSdkMeetingConcatenationConfiguration";
|
|
362
|
+
const _CSMLCC = "ChimeSdkMeetingLiveConnectorConfiguration";
|
|
363
|
+
const _CSo = "ConcatenationSource";
|
|
364
|
+
const _CT = "CreatedTimestamp";
|
|
365
|
+
const _CV = "CompositedVideo";
|
|
366
|
+
const _CVAC = "CompositedVideoArtifactsConfiguration";
|
|
367
|
+
const _CVCC = "CompositedVideoConcatenationConfiguration";
|
|
368
|
+
const _Co = "Content";
|
|
369
|
+
const _D = "Disabled";
|
|
370
|
+
const _DARA = "DataAccessRoleArn";
|
|
371
|
+
const _DC = "DataChannel";
|
|
372
|
+
const _DCCC = "DataChannelConcatenationConfiguration";
|
|
373
|
+
const _DMCP = "DeleteMediaCapturePipeline";
|
|
374
|
+
const _DMCPR = "DeleteMediaCapturePipelineRequest";
|
|
375
|
+
const _DMIPC = "DeleteMediaInsightsPipelineConfiguration";
|
|
376
|
+
const _DMIPCR = "DeleteMediaInsightsPipelineConfigurationRequest";
|
|
377
|
+
const _DMP = "DeleteMediaPipeline";
|
|
378
|
+
const _DMPKVSP = "DeleteMediaPipelineKinesisVideoStreamPool";
|
|
379
|
+
const _DMPKVSPR = "DeleteMediaPipelineKinesisVideoStreamPoolRequest";
|
|
380
|
+
const _DMPR = "DeleteMediaPipelineRequest";
|
|
381
|
+
const _DRIH = "DataRetentionInHours";
|
|
382
|
+
const _De = "Destination";
|
|
383
|
+
const _E = "Elements";
|
|
384
|
+
const _EPRS = "EnablePartialResultsStabilization";
|
|
385
|
+
const _ES = "ElementStatuses";
|
|
386
|
+
const _ET = "EndTimestamp";
|
|
387
|
+
const _EUI = "ExternalUserIds";
|
|
388
|
+
const _EUIL = "ExternalUserIdList";
|
|
389
|
+
const _EUIT = "ExternalUserIdType";
|
|
390
|
+
const _FE = "ForbiddenException";
|
|
391
|
+
const _FN = "FragmentNumber";
|
|
392
|
+
const _FPR = "FilterPartialResults";
|
|
393
|
+
const _FS = "FragmentSelector";
|
|
394
|
+
const _FST = "FragmentSelectorType";
|
|
395
|
+
const _GMCP = "GetMediaCapturePipeline";
|
|
396
|
+
const _GMCPR = "GetMediaCapturePipelineRequest";
|
|
397
|
+
const _GMCPRe = "GetMediaCapturePipelineResponse";
|
|
398
|
+
const _GMIPC = "GetMediaInsightsPipelineConfiguration";
|
|
399
|
+
const _GMIPCR = "GetMediaInsightsPipelineConfigurationRequest";
|
|
400
|
+
const _GMIPCRe = "GetMediaInsightsPipelineConfigurationResponse";
|
|
401
|
+
const _GMP = "GetMediaPipeline";
|
|
402
|
+
const _GMPKVSP = "GetMediaPipelineKinesisVideoStreamPool";
|
|
403
|
+
const _GMPKVSPR = "GetMediaPipelineKinesisVideoStreamPoolRequest";
|
|
404
|
+
const _GMPKVSPRe = "GetMediaPipelineKinesisVideoStreamPoolResponse";
|
|
405
|
+
const _GMPR = "GetMediaPipelineRequest";
|
|
406
|
+
const _GMPRe = "GetMediaPipelineResponse";
|
|
407
|
+
const _GSST = "GetSpeakerSearchTask";
|
|
408
|
+
const _GSSTR = "GetSpeakerSearchTaskRequest";
|
|
409
|
+
const _GSSTRe = "GetSpeakerSearchTaskResponse";
|
|
410
|
+
const _GVC = "GridViewConfiguration";
|
|
411
|
+
const _GVTAT = "GetVoiceToneAnalysisTask";
|
|
412
|
+
const _GVTATR = "GetVoiceToneAnalysisTaskRequest";
|
|
413
|
+
const _GVTATRe = "GetVoiceToneAnalysisTaskResponse";
|
|
414
|
+
const _HC = "HighlightColor";
|
|
415
|
+
const _HLC = "HorizontalLayoutConfiguration";
|
|
416
|
+
const _I = "Identifier";
|
|
417
|
+
const _IDC = "IssueDetectionConfiguration";
|
|
418
|
+
const _IL = "IdentifyLanguage";
|
|
419
|
+
const _IML = "IdentifyMultipleLanguages";
|
|
420
|
+
const _IT = "InsightsTarget";
|
|
421
|
+
const _K = "Keywords";
|
|
422
|
+
const _KDSSC = "KinesisDataStreamSinkConfiguration";
|
|
423
|
+
const _KMC = "KeywordMatchConfiguration";
|
|
424
|
+
const _KVSC = "KinesisVideoStreamConfiguration";
|
|
425
|
+
const _KVSCU = "KinesisVideoStreamConfigurationUpdate";
|
|
426
|
+
const _KVSP = "KinesisVideoStreamPools";
|
|
427
|
+
const _KVSPC = "KinesisVideoStreamPoolConfiguration";
|
|
428
|
+
const _KVSPS = "KinesisVideoStreamPoolSummary";
|
|
429
|
+
const _KVSPSL = "KinesisVideoStreamPoolSummaryList";
|
|
430
|
+
const _KVSRSRC = "KinesisVideoStreamRecordingSourceRuntimeConfiguration";
|
|
431
|
+
const _KVSSRC = "KinesisVideoStreamSourceRuntimeConfiguration";
|
|
432
|
+
const _KVSSTC = "KinesisVideoStreamSourceTaskConfiguration";
|
|
433
|
+
const _Ke = "Key";
|
|
434
|
+
const _L = "Layout";
|
|
435
|
+
const _LC = "LanguageCode";
|
|
436
|
+
const _LCRTMPC = "LiveConnectorRTMPConfiguration";
|
|
437
|
+
const _LCSC = "LiveConnectorSinkConfiguration";
|
|
438
|
+
const _LCSCi = "LiveConnectorSourceConfiguration";
|
|
439
|
+
const _LCSL = "LiveConnectorSinkList";
|
|
440
|
+
const _LCSLi = "LiveConnectorSourceList";
|
|
441
|
+
const _LFSC = "LambdaFunctionSinkConfiguration";
|
|
442
|
+
const _LMCP = "ListMediaCapturePipelines";
|
|
443
|
+
const _LMCPR = "ListMediaCapturePipelinesRequest";
|
|
444
|
+
const _LMCPRi = "ListMediaCapturePipelinesResponse";
|
|
445
|
+
const _LMIPC = "ListMediaInsightsPipelineConfigurations";
|
|
446
|
+
const _LMIPCR = "ListMediaInsightsPipelineConfigurationsRequest";
|
|
447
|
+
const _LMIPCRi = "ListMediaInsightsPipelineConfigurationsResponse";
|
|
448
|
+
const _LMN = "LanguageModelName";
|
|
449
|
+
const _LMP = "ListMediaPipelines";
|
|
450
|
+
const _LMPKVSP = "ListMediaPipelineKinesisVideoStreamPools";
|
|
451
|
+
const _LMPKVSPR = "ListMediaPipelineKinesisVideoStreamPoolsRequest";
|
|
452
|
+
const _LMPKVSPRi = "ListMediaPipelineKinesisVideoStreamPoolsResponse";
|
|
453
|
+
const _LMPR = "ListMediaPipelinesRequest";
|
|
454
|
+
const _LMPRi = "ListMediaPipelinesResponse";
|
|
455
|
+
const _LO = "LanguageOptions";
|
|
456
|
+
const _LTFR = "ListTagsForResource";
|
|
457
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
458
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
459
|
+
const _M = "Message";
|
|
460
|
+
const _MCP = "MediaCapturePipeline";
|
|
461
|
+
const _MCPS = "MediaCapturePipelineSummary";
|
|
462
|
+
const _MCPSC = "MediaCapturePipelineSourceConfiguration";
|
|
463
|
+
const _MCPSL = "MediaCapturePipelineSummaryList";
|
|
464
|
+
const _MCPe = "MediaConcatenationPipeline";
|
|
465
|
+
const _MCPed = "MediaCapturePipelines";
|
|
466
|
+
const _ME = "MeetingEvents";
|
|
467
|
+
const _MECC = "MeetingEventsConcatenationConfiguration";
|
|
468
|
+
const _MEe = "MediaEncoding";
|
|
469
|
+
const _MIP = "MediaInsightsPipeline";
|
|
470
|
+
const _MIPC = "MediaInsightsPipelineConfiguration";
|
|
471
|
+
const _MIPCA = "MediaInsightsPipelineConfigurationArn";
|
|
472
|
+
const _MIPCE = "MediaInsightsPipelineConfigurationElement";
|
|
473
|
+
const _MIPCEe = "MediaInsightsPipelineConfigurationElements";
|
|
474
|
+
const _MIPCI = "MediaInsightsPipelineConfigurationId";
|
|
475
|
+
const _MIPCN = "MediaInsightsPipelineConfigurationName";
|
|
476
|
+
const _MIPCS = "MediaInsightsPipelineConfigurationSummary";
|
|
477
|
+
const _MIPCSL = "MediaInsightsPipelineConfigurationSummaryList";
|
|
478
|
+
const _MIPCe = "MediaInsightsPipelineConfigurations";
|
|
479
|
+
const _MIPES = "MediaInsightsPipelineElementStatus";
|
|
480
|
+
const _MIPESe = "MediaInsightsPipelineElementStatuses";
|
|
481
|
+
const _MIRM = "MediaInsightsRuntimeMetadata";
|
|
482
|
+
const _MLCP = "MediaLiveConnectorPipeline";
|
|
483
|
+
const _MP = "MediaPipeline";
|
|
484
|
+
const _MPA = "MediaPipelineArn";
|
|
485
|
+
const _MPI = "MediaPipelineId";
|
|
486
|
+
const _MPL = "MediaPipelineList";
|
|
487
|
+
const _MPS = "MediaPipelineSummary";
|
|
488
|
+
const _MPe = "MediaPipelines";
|
|
489
|
+
const _MR = "MaxResults";
|
|
490
|
+
const _MSP = "MediaStreamPipeline";
|
|
491
|
+
const _MSR = "MediaSampleRate";
|
|
492
|
+
const _MSS = "MediaStreamSink";
|
|
493
|
+
const _MSSL = "MediaStreamSinkList";
|
|
494
|
+
const _MSSLe = "MediaStreamSourceList";
|
|
495
|
+
const _MSSe = "MediaStreamSource";
|
|
496
|
+
const _MST = "MediaStreamType";
|
|
497
|
+
const _MT = "MuxType";
|
|
498
|
+
const _N = "Negate";
|
|
499
|
+
const _NFE = "NotFoundException";
|
|
500
|
+
const _NOC = "NumberOfChannels";
|
|
501
|
+
const _NT = "NextToken";
|
|
502
|
+
const _OEKMSKI = "OutputEncryptionKMSKeyId";
|
|
503
|
+
const _OL = "OutputLocation";
|
|
504
|
+
const _PA = "PoolArn";
|
|
505
|
+
const _PCAS = "PostCallAnalyticsSettings";
|
|
506
|
+
const _PET = "PiiEntityTypes";
|
|
507
|
+
const _PI = "PoolId";
|
|
508
|
+
const _PL = "PreferredLanguage";
|
|
509
|
+
const _PN = "PoolName";
|
|
510
|
+
const _POC = "PresenterOnlyConfiguration";
|
|
511
|
+
const _PP = "PresenterPosition";
|
|
512
|
+
const _PR = "ParticipantRole";
|
|
513
|
+
const _PRS = "PartialResultsStability";
|
|
514
|
+
const _PS = "PoolStatus";
|
|
515
|
+
const _PSo = "PoolSize";
|
|
516
|
+
const _R = "Resolution";
|
|
517
|
+
const _RARA = "ResourceAccessRoleArn";
|
|
518
|
+
const _RARN = "ResourceARN";
|
|
519
|
+
const _RFF = "RecordingFileFormat";
|
|
520
|
+
const _RI = "RequestId";
|
|
521
|
+
const _RLEE = "ResourceLimitExceededException";
|
|
522
|
+
const _RN = "RuleName";
|
|
523
|
+
const _RSC = "ReservedStreamCapacity";
|
|
524
|
+
const _RSCe = "RecordingStreamConfiguration";
|
|
525
|
+
const _RSL = "RecordingStreamList";
|
|
526
|
+
const _RTAC = "RealTimeAlertConfiguration";
|
|
527
|
+
const _RTAR = "RealTimeAlertRule";
|
|
528
|
+
const _RTARL = "RealTimeAlertRuleList";
|
|
529
|
+
const _RTMPC = "RTMPConfiguration";
|
|
530
|
+
const _Re = "Region";
|
|
531
|
+
const _Ru = "Rules";
|
|
532
|
+
const _S = "State";
|
|
533
|
+
const _SA = "SourceArn";
|
|
534
|
+
const _SAKMP = "SseAwsKeyManagementParams";
|
|
535
|
+
const _SAi = "SinkArn";
|
|
536
|
+
const _SAt = "StreamArn";
|
|
537
|
+
const _SBSC = "S3BucketSinkConfiguration";
|
|
538
|
+
const _SC = "SourceConfiguration";
|
|
539
|
+
const _SCD = "StreamChannelDefinition";
|
|
540
|
+
const _SCe = "SentimentConfiguration";
|
|
541
|
+
const _SCt = "StreamConfiguration";
|
|
542
|
+
const _SFE = "ServiceFailureException";
|
|
543
|
+
const _SIRA = "SinkIamRoleArn";
|
|
544
|
+
const _SQSC = "SqsQueueSinkConfiguration";
|
|
545
|
+
const _SRSC = "S3RecordingSinkConfiguration";
|
|
546
|
+
const _SRSRC = "S3RecordingSinkRuntimeConfiguration";
|
|
547
|
+
const _SS = "SensitiveString";
|
|
548
|
+
const _SSL = "ShowSpeakerLabel";
|
|
549
|
+
const _SSS = "SpeakerSearchStatus";
|
|
550
|
+
const _SSST = "StartSpeakerSearchTask";
|
|
551
|
+
const _SSSTR = "StartSpeakerSearchTaskRequest";
|
|
552
|
+
const _SSSTRt = "StartSpeakerSearchTaskResponse";
|
|
553
|
+
const _SSSTRto = "StopSpeakerSearchTaskRequest";
|
|
554
|
+
const _SSSTt = "StopSpeakerSearchTask";
|
|
555
|
+
const _SST = "SpeakerSearchTask";
|
|
556
|
+
const _SSTI = "SpeakerSearchTaskId";
|
|
557
|
+
const _SSTS = "SpeakerSearchTaskStatus";
|
|
558
|
+
const _ST = "SourceType";
|
|
559
|
+
const _STSC = "SnsTopicSinkConfiguration";
|
|
560
|
+
const _STe = "SentimentType";
|
|
561
|
+
const _STi = "SinkType";
|
|
562
|
+
const _STt = "StartTimestamp";
|
|
563
|
+
const _SUE = "ServiceUnavailableException";
|
|
564
|
+
const _SVS = "SelectedVideoStreams";
|
|
565
|
+
const _SVTAT = "StartVoiceToneAnalysisTask";
|
|
566
|
+
const _SVTATR = "StartVoiceToneAnalysisTaskRequest";
|
|
567
|
+
const _SVTATRt = "StartVoiceToneAnalysisTaskResponse";
|
|
568
|
+
const _SVTATRto = "StopVoiceToneAnalysisTaskRequest";
|
|
569
|
+
const _SVTATt = "StopVoiceToneAnalysisTask";
|
|
570
|
+
const _Si = "Sinks";
|
|
571
|
+
const _So = "Sources";
|
|
572
|
+
const _St = "Streams";
|
|
573
|
+
const _Sta = "Status";
|
|
574
|
+
const _T = "Type";
|
|
575
|
+
const _TAR = "TileAspectRatio";
|
|
576
|
+
const _TC = "TileCount";
|
|
577
|
+
const _TCE = "ThrottledClientException";
|
|
578
|
+
const _TK = "TagKeys";
|
|
579
|
+
const _TL = "TagList";
|
|
580
|
+
const _TM = "TranscriptionMessages";
|
|
581
|
+
const _TMCC = "TranscriptionMessagesConcatenationConfiguration";
|
|
582
|
+
const _TO = "TileOrder";
|
|
583
|
+
const _TP = "TilePosition";
|
|
584
|
+
const _TPi = "TimePeriod";
|
|
585
|
+
const _TR = "TimestampRange";
|
|
586
|
+
const _TRR = "TagResourceRequest";
|
|
587
|
+
const _TRRa = "TagResourceResponse";
|
|
588
|
+
const _TRa = "TagResource";
|
|
589
|
+
const _Ta = "Tags";
|
|
590
|
+
const _Tag = "Tag";
|
|
591
|
+
const _U = "Url";
|
|
592
|
+
const _UCE = "UnauthorizedClientException";
|
|
593
|
+
const _UMIPC = "UpdateMediaInsightsPipelineConfiguration";
|
|
594
|
+
const _UMIPCR = "UpdateMediaInsightsPipelineConfigurationRequest";
|
|
595
|
+
const _UMIPCRp = "UpdateMediaInsightsPipelineConfigurationResponse";
|
|
596
|
+
const _UMIPS = "UpdateMediaInsightsPipelineStatus";
|
|
597
|
+
const _UMIPSR = "UpdateMediaInsightsPipelineStatusRequest";
|
|
598
|
+
const _UMPKVSP = "UpdateMediaPipelineKinesisVideoStreamPool";
|
|
599
|
+
const _UMPKVSPR = "UpdateMediaPipelineKinesisVideoStreamPoolRequest";
|
|
600
|
+
const _UMPKVSPRp = "UpdateMediaPipelineKinesisVideoStreamPoolResponse";
|
|
601
|
+
const _UR = "UntagResource";
|
|
602
|
+
const _URR = "UntagResourceRequest";
|
|
603
|
+
const _URRn = "UntagResourceResponse";
|
|
604
|
+
const _US = "UpdateStatus";
|
|
605
|
+
const _UT = "UpdatedTimestamp";
|
|
606
|
+
const _V = "Video";
|
|
607
|
+
const _VA = "VideoAttribute";
|
|
608
|
+
const _VAC = "VideoArtifactsConfiguration";
|
|
609
|
+
const _VAPC = "VoiceAnalyticsProcessorConfiguration";
|
|
610
|
+
const _VCC = "VideoConcatenationConfiguration";
|
|
611
|
+
const _VESC = "VoiceEnhancementSinkConfiguration";
|
|
612
|
+
const _VFM = "VocabularyFilterMethod";
|
|
613
|
+
const _VFN = "VocabularyFilterName";
|
|
614
|
+
const _VFNo = "VocabularyFilterNames";
|
|
615
|
+
const _VLC = "VerticalLayoutConfiguration";
|
|
616
|
+
const _VN = "VocabularyName";
|
|
617
|
+
const _VNo = "VocabularyNames";
|
|
618
|
+
const _VPDA = "VoiceProfileDomainArn";
|
|
619
|
+
const _VTAS = "VoiceToneAnalysisStatus";
|
|
620
|
+
const _VTAT = "VoiceToneAnalysisTask";
|
|
621
|
+
const _VTATI = "VoiceToneAnalysisTaskId";
|
|
622
|
+
const _VTATS = "VoiceToneAnalysisTaskStatus";
|
|
623
|
+
const _Va = "Value";
|
|
624
|
+
const _a = "arn";
|
|
625
|
+
const _c = "client";
|
|
626
|
+
const _e = "error";
|
|
627
|
+
const _h = "http";
|
|
628
|
+
const _hE = "httpError";
|
|
629
|
+
const _hQ = "httpQuery";
|
|
630
|
+
const _mr = "max-results";
|
|
631
|
+
const _nt = "next-token";
|
|
632
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.chimesdkmediapipelines";
|
|
633
|
+
const _se = "server";
|
|
634
|
+
const n0 = "com.amazonaws.chimesdkmediapipelines";
|
|
635
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
636
|
+
var ChimeSDKMediaPipelinesServiceException$ = [-3, _s, "ChimeSDKMediaPipelinesServiceException", 0, [], []];
|
|
637
|
+
_s_registry.registerError(ChimeSDKMediaPipelinesServiceException$, ChimeSDKMediaPipelinesServiceException);
|
|
638
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
639
|
+
var BadRequestException$ = [-3, n0, _BRE,
|
|
640
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
641
|
+
[_C, _M, _RI],
|
|
642
|
+
[0, 0, 0]
|
|
643
|
+
];
|
|
644
|
+
n0_registry.registerError(BadRequestException$, BadRequestException);
|
|
645
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
646
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
647
|
+
[_C, _M, _RI],
|
|
648
|
+
[0, 0, 0]
|
|
649
|
+
];
|
|
650
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
651
|
+
var ForbiddenException$ = [-3, n0, _FE,
|
|
652
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
653
|
+
[_C, _M, _RI],
|
|
654
|
+
[0, 0, 0]
|
|
655
|
+
];
|
|
656
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
657
|
+
var NotFoundException$ = [-3, n0, _NFE,
|
|
658
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
659
|
+
[_C, _M, _RI],
|
|
660
|
+
[0, 0, 0]
|
|
661
|
+
];
|
|
662
|
+
n0_registry.registerError(NotFoundException$, NotFoundException);
|
|
663
|
+
var ResourceLimitExceededException$ = [-3, n0, _RLEE,
|
|
664
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
665
|
+
[_C, _M, _RI],
|
|
666
|
+
[0, 0, 0]
|
|
667
|
+
];
|
|
668
|
+
n0_registry.registerError(ResourceLimitExceededException$, ResourceLimitExceededException);
|
|
669
|
+
var ServiceFailureException$ = [-3, n0, _SFE,
|
|
670
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
671
|
+
[_C, _M, _RI],
|
|
672
|
+
[0, 0, 0]
|
|
673
|
+
];
|
|
674
|
+
n0_registry.registerError(ServiceFailureException$, ServiceFailureException);
|
|
675
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
676
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
677
|
+
[_C, _M, _RI],
|
|
678
|
+
[0, 0, 0]
|
|
679
|
+
];
|
|
680
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
681
|
+
var ThrottledClientException$ = [-3, n0, _TCE,
|
|
682
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
683
|
+
[_C, _M, _RI],
|
|
684
|
+
[0, 0, 0]
|
|
685
|
+
];
|
|
686
|
+
n0_registry.registerError(ThrottledClientException$, ThrottledClientException);
|
|
687
|
+
var UnauthorizedClientException$ = [-3, n0, _UCE,
|
|
688
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
689
|
+
[_C, _M, _RI],
|
|
690
|
+
[0, 0, 0]
|
|
691
|
+
];
|
|
692
|
+
n0_registry.registerError(UnauthorizedClientException$, UnauthorizedClientException);
|
|
693
|
+
const errorTypeRegistries = [
|
|
694
|
+
_s_registry,
|
|
695
|
+
n0_registry,
|
|
696
|
+
];
|
|
697
|
+
var Arn = [0, n0, _A, 8, 0];
|
|
698
|
+
var ClientRequestToken = [0, n0, _CRT, 8, 0];
|
|
699
|
+
var ExternalUserIdType = [0, n0, _EUIT, 8, 0];
|
|
700
|
+
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
701
|
+
var ActiveSpeakerOnlyConfiguration$ = [3, n0, _ASOC,
|
|
702
|
+
0,
|
|
703
|
+
[_ASP],
|
|
704
|
+
[0]
|
|
705
|
+
];
|
|
706
|
+
var AmazonTranscribeCallAnalyticsProcessorConfiguration$ = [3, n0, _ATCAPC,
|
|
707
|
+
0,
|
|
708
|
+
[_LC, _VN, _VFN, _VFM, _LMN, _EPRS, _PRS, _CIT, _CRTo, _PET, _FPR, _PCAS, _CASC],
|
|
709
|
+
[0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, () => PostCallAnalyticsSettings$, 64 | 0], 1
|
|
710
|
+
];
|
|
711
|
+
var AmazonTranscribeProcessorConfiguration$ = [3, n0, _ATPC,
|
|
712
|
+
0,
|
|
713
|
+
[_LC, _VN, _VFN, _VFM, _SSL, _EPRS, _PRS, _CIT, _CRTo, _PET, _LMN, _FPR, _IL, _IML, _LO, _PL, _VNo, _VFNo],
|
|
714
|
+
[0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0, 0]
|
|
715
|
+
];
|
|
716
|
+
var ArtifactsConcatenationConfiguration$ = [3, n0, _ACC,
|
|
717
|
+
0,
|
|
718
|
+
[_Au, _V, _Co, _DC, _TM, _ME, _CV],
|
|
719
|
+
[() => AudioConcatenationConfiguration$, () => VideoConcatenationConfiguration$, () => ContentConcatenationConfiguration$, () => DataChannelConcatenationConfiguration$, () => TranscriptionMessagesConcatenationConfiguration$, () => MeetingEventsConcatenationConfiguration$, () => CompositedVideoConcatenationConfiguration$], 7
|
|
720
|
+
];
|
|
721
|
+
var ArtifactsConfiguration$ = [3, n0, _AC,
|
|
722
|
+
0,
|
|
723
|
+
[_Au, _V, _Co, _CV],
|
|
724
|
+
[() => AudioArtifactsConfiguration$, () => VideoArtifactsConfiguration$, () => ContentArtifactsConfiguration$, () => CompositedVideoArtifactsConfiguration$], 3
|
|
725
|
+
];
|
|
726
|
+
var AudioArtifactsConfiguration$ = [3, n0, _AAC,
|
|
727
|
+
0,
|
|
728
|
+
[_MT],
|
|
729
|
+
[0], 1
|
|
730
|
+
];
|
|
731
|
+
var AudioConcatenationConfiguration$ = [3, n0, _ACCu,
|
|
732
|
+
0,
|
|
733
|
+
[_S],
|
|
734
|
+
[0], 1
|
|
735
|
+
];
|
|
736
|
+
var ChannelDefinition$ = [3, n0, _CD,
|
|
737
|
+
0,
|
|
738
|
+
[_CI, _PR],
|
|
739
|
+
[1, 0], 1
|
|
740
|
+
];
|
|
741
|
+
var ChimeSdkMeetingConcatenationConfiguration$ = [3, n0, _CSMCC,
|
|
742
|
+
0,
|
|
743
|
+
[_AC],
|
|
744
|
+
[() => ArtifactsConcatenationConfiguration$], 1
|
|
745
|
+
];
|
|
746
|
+
var ChimeSdkMeetingConfiguration$ = [3, n0, _CSMC,
|
|
747
|
+
0,
|
|
748
|
+
[_SC, _AC],
|
|
749
|
+
[[() => SourceConfiguration$, 0], () => ArtifactsConfiguration$]
|
|
750
|
+
];
|
|
751
|
+
var ChimeSdkMeetingLiveConnectorConfiguration$ = [3, n0, _CSMLCC,
|
|
752
|
+
0,
|
|
753
|
+
[_A, _MT, _CV, _SC],
|
|
754
|
+
[[() => Arn, 0], 0, () => CompositedVideoArtifactsConfiguration$, [() => SourceConfiguration$, 0]], 2
|
|
755
|
+
];
|
|
756
|
+
var CompositedVideoArtifactsConfiguration$ = [3, n0, _CVAC,
|
|
757
|
+
0,
|
|
758
|
+
[_GVC, _L, _R],
|
|
759
|
+
[() => GridViewConfiguration$, 0, 0], 1
|
|
760
|
+
];
|
|
761
|
+
var CompositedVideoConcatenationConfiguration$ = [3, n0, _CVCC,
|
|
762
|
+
0,
|
|
763
|
+
[_S],
|
|
764
|
+
[0], 1
|
|
765
|
+
];
|
|
766
|
+
var ConcatenationSink$ = [3, n0, _CS,
|
|
767
|
+
0,
|
|
768
|
+
[_T, _SBSC],
|
|
769
|
+
[0, [() => S3BucketSinkConfiguration$, 0]], 2
|
|
770
|
+
];
|
|
771
|
+
var ConcatenationSource$ = [3, n0, _CSo,
|
|
772
|
+
0,
|
|
773
|
+
[_T, _MCPSC],
|
|
774
|
+
[0, [() => MediaCapturePipelineSourceConfiguration$, 0]], 2
|
|
775
|
+
];
|
|
776
|
+
var ContentArtifactsConfiguration$ = [3, n0, _CAC,
|
|
777
|
+
0,
|
|
778
|
+
[_S, _MT],
|
|
779
|
+
[0, 0], 1
|
|
780
|
+
];
|
|
781
|
+
var ContentConcatenationConfiguration$ = [3, n0, _CCC,
|
|
782
|
+
0,
|
|
783
|
+
[_S],
|
|
784
|
+
[0], 1
|
|
785
|
+
];
|
|
786
|
+
var CreateMediaCapturePipelineRequest$ = [3, n0, _CMCPR,
|
|
787
|
+
0,
|
|
788
|
+
[_ST, _SA, _STi, _SAi, _CRT, _CSMC, _SAKMP, _SIRA, _Ta],
|
|
789
|
+
[0, [() => Arn, 0], 0, [() => Arn, 0], [() => ClientRequestToken, 4], [() => ChimeSdkMeetingConfiguration$, 0], () => SseAwsKeyManagementParams$, [() => Arn, 0], () => TagList], 4
|
|
790
|
+
];
|
|
791
|
+
var CreateMediaCapturePipelineResponse$ = [3, n0, _CMCPRr,
|
|
792
|
+
0,
|
|
793
|
+
[_MCP],
|
|
794
|
+
[[() => MediaCapturePipeline$, 0]]
|
|
795
|
+
];
|
|
796
|
+
var CreateMediaConcatenationPipelineRequest$ = [3, n0, _CMCPRre,
|
|
797
|
+
0,
|
|
798
|
+
[_So, _Si, _CRT, _Ta],
|
|
799
|
+
[[() => ConcatenationSourceList, 0], [() => ConcatenationSinkList, 0], [() => ClientRequestToken, 4], () => TagList], 2
|
|
800
|
+
];
|
|
801
|
+
var CreateMediaConcatenationPipelineResponse$ = [3, n0, _CMCPRrea,
|
|
802
|
+
0,
|
|
803
|
+
[_MCPe],
|
|
804
|
+
[[() => MediaConcatenationPipeline$, 0]]
|
|
805
|
+
];
|
|
806
|
+
var CreateMediaInsightsPipelineConfigurationRequest$ = [3, n0, _CMIPCR,
|
|
807
|
+
0,
|
|
808
|
+
[_MIPCN, _RARA, _E, _RTAC, _Ta, _CRT],
|
|
809
|
+
[0, [() => Arn, 0], [() => MediaInsightsPipelineConfigurationElements, 0], () => RealTimeAlertConfiguration$, () => TagList, [() => ClientRequestToken, 4]], 3
|
|
810
|
+
];
|
|
811
|
+
var CreateMediaInsightsPipelineConfigurationResponse$ = [3, n0, _CMIPCRr,
|
|
812
|
+
0,
|
|
813
|
+
[_MIPC],
|
|
814
|
+
[[() => MediaInsightsPipelineConfiguration$, 0]]
|
|
815
|
+
];
|
|
816
|
+
var CreateMediaInsightsPipelineRequest$ = [3, n0, _CMIPR,
|
|
817
|
+
0,
|
|
818
|
+
[_MIPCA, _KVSSRC, _MIRM, _KVSRSRC, _SRSRC, _Ta, _CRT],
|
|
819
|
+
[[() => Arn, 0], () => KinesisVideoStreamSourceRuntimeConfiguration$, [() => MediaInsightsRuntimeMetadata, 0], () => KinesisVideoStreamRecordingSourceRuntimeConfiguration$, [() => S3RecordingSinkRuntimeConfiguration$, 0], () => TagList, [() => ClientRequestToken, 4]], 1
|
|
820
|
+
];
|
|
821
|
+
var CreateMediaInsightsPipelineResponse$ = [3, n0, _CMIPRr,
|
|
822
|
+
0,
|
|
823
|
+
[_MIP],
|
|
824
|
+
[[() => MediaInsightsPipeline$, 0]], 1
|
|
825
|
+
];
|
|
826
|
+
var CreateMediaLiveConnectorPipelineRequest$ = [3, n0, _CMLCPR,
|
|
827
|
+
0,
|
|
828
|
+
[_So, _Si, _CRT, _Ta],
|
|
829
|
+
[[() => LiveConnectorSourceList, 0], [() => LiveConnectorSinkList, 0], [() => ClientRequestToken, 4], () => TagList], 2
|
|
830
|
+
];
|
|
831
|
+
var CreateMediaLiveConnectorPipelineResponse$ = [3, n0, _CMLCPRr,
|
|
832
|
+
0,
|
|
833
|
+
[_MLCP],
|
|
834
|
+
[[() => MediaLiveConnectorPipeline$, 0]]
|
|
835
|
+
];
|
|
836
|
+
var CreateMediaPipelineKinesisVideoStreamPoolRequest$ = [3, n0, _CMPKVSPR,
|
|
837
|
+
0,
|
|
838
|
+
[_SCt, _PN, _CRT, _Ta],
|
|
839
|
+
[() => KinesisVideoStreamConfiguration$, 0, [() => ClientRequestToken, 4], () => TagList], 2
|
|
840
|
+
];
|
|
841
|
+
var CreateMediaPipelineKinesisVideoStreamPoolResponse$ = [3, n0, _CMPKVSPRr,
|
|
842
|
+
0,
|
|
843
|
+
[_KVSPC],
|
|
844
|
+
[[() => KinesisVideoStreamPoolConfiguration$, 0]]
|
|
845
|
+
];
|
|
846
|
+
var CreateMediaStreamPipelineRequest$ = [3, n0, _CMSPR,
|
|
847
|
+
0,
|
|
848
|
+
[_So, _Si, _CRT, _Ta],
|
|
849
|
+
[[() => MediaStreamSourceList, 0], [() => MediaStreamSinkList, 0], [() => ClientRequestToken, 4], () => TagList], 2
|
|
850
|
+
];
|
|
851
|
+
var CreateMediaStreamPipelineResponse$ = [3, n0, _CMSPRr,
|
|
852
|
+
0,
|
|
853
|
+
[_MSP],
|
|
854
|
+
[[() => MediaStreamPipeline$, 0]]
|
|
855
|
+
];
|
|
856
|
+
var DataChannelConcatenationConfiguration$ = [3, n0, _DCCC,
|
|
857
|
+
0,
|
|
858
|
+
[_S],
|
|
859
|
+
[0], 1
|
|
860
|
+
];
|
|
861
|
+
var DeleteMediaCapturePipelineRequest$ = [3, n0, _DMCPR,
|
|
862
|
+
0,
|
|
863
|
+
[_MPI],
|
|
864
|
+
[[0, 1]], 1
|
|
865
|
+
];
|
|
866
|
+
var DeleteMediaInsightsPipelineConfigurationRequest$ = [3, n0, _DMIPCR,
|
|
867
|
+
0,
|
|
868
|
+
[_I],
|
|
869
|
+
[[0, 1]], 1
|
|
870
|
+
];
|
|
871
|
+
var DeleteMediaPipelineKinesisVideoStreamPoolRequest$ = [3, n0, _DMPKVSPR,
|
|
872
|
+
0,
|
|
873
|
+
[_I],
|
|
874
|
+
[[0, 1]], 1
|
|
875
|
+
];
|
|
876
|
+
var DeleteMediaPipelineRequest$ = [3, n0, _DMPR,
|
|
877
|
+
0,
|
|
878
|
+
[_MPI],
|
|
879
|
+
[[0, 1]], 1
|
|
880
|
+
];
|
|
881
|
+
var FragmentSelector$ = [3, n0, _FS,
|
|
882
|
+
0,
|
|
883
|
+
[_FST, _TR],
|
|
884
|
+
[0, () => TimestampRange$], 2
|
|
885
|
+
];
|
|
886
|
+
var GetMediaCapturePipelineRequest$ = [3, n0, _GMCPR,
|
|
887
|
+
0,
|
|
888
|
+
[_MPI],
|
|
889
|
+
[[0, 1]], 1
|
|
890
|
+
];
|
|
891
|
+
var GetMediaCapturePipelineResponse$ = [3, n0, _GMCPRe,
|
|
892
|
+
0,
|
|
893
|
+
[_MCP],
|
|
894
|
+
[[() => MediaCapturePipeline$, 0]]
|
|
895
|
+
];
|
|
896
|
+
var GetMediaInsightsPipelineConfigurationRequest$ = [3, n0, _GMIPCR,
|
|
897
|
+
0,
|
|
898
|
+
[_I],
|
|
899
|
+
[[0, 1]], 1
|
|
900
|
+
];
|
|
901
|
+
var GetMediaInsightsPipelineConfigurationResponse$ = [3, n0, _GMIPCRe,
|
|
902
|
+
0,
|
|
903
|
+
[_MIPC],
|
|
904
|
+
[[() => MediaInsightsPipelineConfiguration$, 0]]
|
|
905
|
+
];
|
|
906
|
+
var GetMediaPipelineKinesisVideoStreamPoolRequest$ = [3, n0, _GMPKVSPR,
|
|
907
|
+
0,
|
|
908
|
+
[_I],
|
|
909
|
+
[[0, 1]], 1
|
|
910
|
+
];
|
|
911
|
+
var GetMediaPipelineKinesisVideoStreamPoolResponse$ = [3, n0, _GMPKVSPRe,
|
|
912
|
+
0,
|
|
913
|
+
[_KVSPC],
|
|
914
|
+
[[() => KinesisVideoStreamPoolConfiguration$, 0]]
|
|
915
|
+
];
|
|
916
|
+
var GetMediaPipelineRequest$ = [3, n0, _GMPR,
|
|
917
|
+
0,
|
|
918
|
+
[_MPI],
|
|
919
|
+
[[0, 1]], 1
|
|
920
|
+
];
|
|
921
|
+
var GetMediaPipelineResponse$ = [3, n0, _GMPRe,
|
|
922
|
+
0,
|
|
923
|
+
[_MP],
|
|
924
|
+
[[() => MediaPipeline$, 0]]
|
|
925
|
+
];
|
|
926
|
+
var GetSpeakerSearchTaskRequest$ = [3, n0, _GSSTR,
|
|
927
|
+
0,
|
|
928
|
+
[_I, _SSTI],
|
|
929
|
+
[[0, 1], [0, 1]], 2
|
|
930
|
+
];
|
|
931
|
+
var GetSpeakerSearchTaskResponse$ = [3, n0, _GSSTRe,
|
|
932
|
+
0,
|
|
933
|
+
[_SST],
|
|
934
|
+
[() => SpeakerSearchTask$]
|
|
935
|
+
];
|
|
936
|
+
var GetVoiceToneAnalysisTaskRequest$ = [3, n0, _GVTATR,
|
|
937
|
+
0,
|
|
938
|
+
[_I, _VTATI],
|
|
939
|
+
[[0, 1], [0, 1]], 2
|
|
940
|
+
];
|
|
941
|
+
var GetVoiceToneAnalysisTaskResponse$ = [3, n0, _GVTATRe,
|
|
942
|
+
0,
|
|
943
|
+
[_VTAT],
|
|
944
|
+
[() => VoiceToneAnalysisTask$]
|
|
945
|
+
];
|
|
946
|
+
var GridViewConfiguration$ = [3, n0, _GVC,
|
|
947
|
+
0,
|
|
948
|
+
[_CSL, _POC, _ASOC, _HLC, _VLC, _VA, _CO],
|
|
949
|
+
[0, () => PresenterOnlyConfiguration$, () => ActiveSpeakerOnlyConfiguration$, () => HorizontalLayoutConfiguration$, () => VerticalLayoutConfiguration$, () => VideoAttribute$, 0], 1
|
|
950
|
+
];
|
|
951
|
+
var HorizontalLayoutConfiguration$ = [3, n0, _HLC,
|
|
952
|
+
0,
|
|
953
|
+
[_TO, _TP, _TC, _TAR],
|
|
954
|
+
[0, 0, 1, 0]
|
|
955
|
+
];
|
|
956
|
+
var IssueDetectionConfiguration$ = [3, n0, _IDC,
|
|
957
|
+
0,
|
|
958
|
+
[_RN],
|
|
959
|
+
[0], 1
|
|
960
|
+
];
|
|
961
|
+
var KeywordMatchConfiguration$ = [3, n0, _KMC,
|
|
962
|
+
0,
|
|
963
|
+
[_RN, _K, _N],
|
|
964
|
+
[0, 64 | 0, 2], 2
|
|
965
|
+
];
|
|
966
|
+
var KinesisDataStreamSinkConfiguration$ = [3, n0, _KDSSC,
|
|
967
|
+
0,
|
|
968
|
+
[_IT],
|
|
969
|
+
[[() => Arn, 0]]
|
|
970
|
+
];
|
|
971
|
+
var KinesisVideoStreamConfiguration$ = [3, n0, _KVSC,
|
|
972
|
+
0,
|
|
973
|
+
[_Re, _DRIH],
|
|
974
|
+
[0, 1], 1
|
|
975
|
+
];
|
|
976
|
+
var KinesisVideoStreamConfigurationUpdate$ = [3, n0, _KVSCU,
|
|
977
|
+
0,
|
|
978
|
+
[_DRIH],
|
|
979
|
+
[1]
|
|
980
|
+
];
|
|
981
|
+
var KinesisVideoStreamPoolConfiguration$ = [3, n0, _KVSPC,
|
|
982
|
+
0,
|
|
983
|
+
[_PA, _PN, _PI, _PS, _PSo, _SCt, _CT, _UT],
|
|
984
|
+
[[() => Arn, 0], 0, 0, 0, 1, () => KinesisVideoStreamConfiguration$, 5, 5]
|
|
985
|
+
];
|
|
986
|
+
var KinesisVideoStreamPoolSummary$ = [3, n0, _KVSPS,
|
|
987
|
+
0,
|
|
988
|
+
[_PN, _PI, _PA],
|
|
989
|
+
[0, 0, [() => Arn, 0]]
|
|
990
|
+
];
|
|
991
|
+
var KinesisVideoStreamRecordingSourceRuntimeConfiguration$ = [3, n0, _KVSRSRC,
|
|
992
|
+
0,
|
|
993
|
+
[_St, _FS],
|
|
994
|
+
[() => RecordingStreamList, () => FragmentSelector$], 2
|
|
995
|
+
];
|
|
996
|
+
var KinesisVideoStreamSourceRuntimeConfiguration$ = [3, n0, _KVSSRC,
|
|
997
|
+
0,
|
|
998
|
+
[_St, _MEe, _MSR],
|
|
999
|
+
[() => Streams, 0, 1], 3
|
|
1000
|
+
];
|
|
1001
|
+
var KinesisVideoStreamSourceTaskConfiguration$ = [3, n0, _KVSSTC,
|
|
1002
|
+
0,
|
|
1003
|
+
[_SAt, _CI, _FN],
|
|
1004
|
+
[0, 1, 0], 2
|
|
1005
|
+
];
|
|
1006
|
+
var LambdaFunctionSinkConfiguration$ = [3, n0, _LFSC,
|
|
1007
|
+
0,
|
|
1008
|
+
[_IT],
|
|
1009
|
+
[[() => Arn, 0]]
|
|
1010
|
+
];
|
|
1011
|
+
var ListMediaCapturePipelinesRequest$ = [3, n0, _LMCPR,
|
|
1012
|
+
0,
|
|
1013
|
+
[_NT, _MR],
|
|
1014
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1015
|
+
];
|
|
1016
|
+
var ListMediaCapturePipelinesResponse$ = [3, n0, _LMCPRi,
|
|
1017
|
+
0,
|
|
1018
|
+
[_MCPed, _NT],
|
|
1019
|
+
[() => MediaCapturePipelineSummaryList, 0]
|
|
1020
|
+
];
|
|
1021
|
+
var ListMediaInsightsPipelineConfigurationsRequest$ = [3, n0, _LMIPCR,
|
|
1022
|
+
0,
|
|
1023
|
+
[_NT, _MR],
|
|
1024
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1025
|
+
];
|
|
1026
|
+
var ListMediaInsightsPipelineConfigurationsResponse$ = [3, n0, _LMIPCRi,
|
|
1027
|
+
0,
|
|
1028
|
+
[_MIPCe, _NT],
|
|
1029
|
+
[[() => MediaInsightsPipelineConfigurationSummaryList, 0], 0]
|
|
1030
|
+
];
|
|
1031
|
+
var ListMediaPipelineKinesisVideoStreamPoolsRequest$ = [3, n0, _LMPKVSPR,
|
|
1032
|
+
0,
|
|
1033
|
+
[_NT, _MR],
|
|
1034
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1035
|
+
];
|
|
1036
|
+
var ListMediaPipelineKinesisVideoStreamPoolsResponse$ = [3, n0, _LMPKVSPRi,
|
|
1037
|
+
0,
|
|
1038
|
+
[_KVSP, _NT],
|
|
1039
|
+
[[() => KinesisVideoStreamPoolSummaryList, 0], 0]
|
|
1040
|
+
];
|
|
1041
|
+
var ListMediaPipelinesRequest$ = [3, n0, _LMPR,
|
|
1042
|
+
0,
|
|
1043
|
+
[_NT, _MR],
|
|
1044
|
+
[[0, { [_hQ]: _nt }], [1, { [_hQ]: _mr }]]
|
|
1045
|
+
];
|
|
1046
|
+
var ListMediaPipelinesResponse$ = [3, n0, _LMPRi,
|
|
1047
|
+
0,
|
|
1048
|
+
[_MPe, _NT],
|
|
1049
|
+
[() => MediaPipelineList, 0]
|
|
1050
|
+
];
|
|
1051
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1052
|
+
0,
|
|
1053
|
+
[_RARN],
|
|
1054
|
+
[[0, { [_hQ]: _a }]], 1
|
|
1055
|
+
];
|
|
1056
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1057
|
+
0,
|
|
1058
|
+
[_Ta],
|
|
1059
|
+
[() => TagList]
|
|
1060
|
+
];
|
|
1061
|
+
var LiveConnectorRTMPConfiguration$ = [3, n0, _LCRTMPC,
|
|
1062
|
+
0,
|
|
1063
|
+
[_U, _ACu, _ASR],
|
|
1064
|
+
[[() => SensitiveString, 0], 0, 0], 1
|
|
1065
|
+
];
|
|
1066
|
+
var LiveConnectorSinkConfiguration$ = [3, n0, _LCSC,
|
|
1067
|
+
0,
|
|
1068
|
+
[_STi, _RTMPC],
|
|
1069
|
+
[0, [() => LiveConnectorRTMPConfiguration$, 0]], 2
|
|
1070
|
+
];
|
|
1071
|
+
var LiveConnectorSourceConfiguration$ = [3, n0, _LCSCi,
|
|
1072
|
+
0,
|
|
1073
|
+
[_ST, _CSMLCC],
|
|
1074
|
+
[0, [() => ChimeSdkMeetingLiveConnectorConfiguration$, 0]], 2
|
|
1075
|
+
];
|
|
1076
|
+
var MediaCapturePipeline$ = [3, n0, _MCP,
|
|
1077
|
+
0,
|
|
1078
|
+
[_MPI, _MPA, _ST, _SA, _Sta, _STi, _SAi, _CT, _UT, _CSMC, _SAKMP, _SIRA],
|
|
1079
|
+
[0, 0, 0, [() => Arn, 0], 0, 0, [() => Arn, 0], 5, 5, [() => ChimeSdkMeetingConfiguration$, 0], () => SseAwsKeyManagementParams$, [() => Arn, 0]]
|
|
1080
|
+
];
|
|
1081
|
+
var MediaCapturePipelineSourceConfiguration$ = [3, n0, _MCPSC,
|
|
1082
|
+
0,
|
|
1083
|
+
[_MPA, _CSMC],
|
|
1084
|
+
[[() => Arn, 0], () => ChimeSdkMeetingConcatenationConfiguration$], 2
|
|
1085
|
+
];
|
|
1086
|
+
var MediaCapturePipelineSummary$ = [3, n0, _MCPS,
|
|
1087
|
+
0,
|
|
1088
|
+
[_MPI, _MPA],
|
|
1089
|
+
[0, 0]
|
|
1090
|
+
];
|
|
1091
|
+
var MediaConcatenationPipeline$ = [3, n0, _MCPe,
|
|
1092
|
+
0,
|
|
1093
|
+
[_MPI, _MPA, _So, _Si, _Sta, _CT, _UT],
|
|
1094
|
+
[0, 0, [() => ConcatenationSourceList, 0], [() => ConcatenationSinkList, 0], 0, 5, 5]
|
|
1095
|
+
];
|
|
1096
|
+
var MediaInsightsPipeline$ = [3, n0, _MIP,
|
|
1097
|
+
0,
|
|
1098
|
+
[_MPI, _MPA, _MIPCA, _Sta, _KVSSRC, _MIRM, _KVSRSRC, _SRSRC, _CT, _ES],
|
|
1099
|
+
[0, [() => Arn, 0], [() => Arn, 0], 0, () => KinesisVideoStreamSourceRuntimeConfiguration$, [() => MediaInsightsRuntimeMetadata, 0], () => KinesisVideoStreamRecordingSourceRuntimeConfiguration$, [() => S3RecordingSinkRuntimeConfiguration$, 0], 5, () => MediaInsightsPipelineElementStatuses]
|
|
1100
|
+
];
|
|
1101
|
+
var MediaInsightsPipelineConfiguration$ = [3, n0, _MIPC,
|
|
1102
|
+
0,
|
|
1103
|
+
[_MIPCN, _MIPCA, _RARA, _RTAC, _E, _MIPCI, _CT, _UT],
|
|
1104
|
+
[0, [() => Arn, 0], [() => Arn, 0], () => RealTimeAlertConfiguration$, [() => MediaInsightsPipelineConfigurationElements, 0], 0, 5, 5]
|
|
1105
|
+
];
|
|
1106
|
+
var MediaInsightsPipelineConfigurationElement$ = [3, n0, _MIPCE,
|
|
1107
|
+
0,
|
|
1108
|
+
[_T, _ATCAPC, _ATPC, _KDSSC, _SRSC, _VAPC, _LFSC, _SQSC, _STSC, _VESC],
|
|
1109
|
+
[0, () => AmazonTranscribeCallAnalyticsProcessorConfiguration$, () => AmazonTranscribeProcessorConfiguration$, [() => KinesisDataStreamSinkConfiguration$, 0], [() => S3RecordingSinkConfiguration$, 0], () => VoiceAnalyticsProcessorConfiguration$, [() => LambdaFunctionSinkConfiguration$, 0], [() => SqsQueueSinkConfiguration$, 0], [() => SnsTopicSinkConfiguration$, 0], () => VoiceEnhancementSinkConfiguration$], 1
|
|
1110
|
+
];
|
|
1111
|
+
var MediaInsightsPipelineConfigurationSummary$ = [3, n0, _MIPCS,
|
|
1112
|
+
0,
|
|
1113
|
+
[_MIPCN, _MIPCI, _MIPCA],
|
|
1114
|
+
[0, 0, [() => Arn, 0]]
|
|
1115
|
+
];
|
|
1116
|
+
var MediaInsightsPipelineElementStatus$ = [3, n0, _MIPES,
|
|
1117
|
+
0,
|
|
1118
|
+
[_T, _Sta],
|
|
1119
|
+
[0, 0]
|
|
1120
|
+
];
|
|
1121
|
+
var MediaLiveConnectorPipeline$ = [3, n0, _MLCP,
|
|
1122
|
+
0,
|
|
1123
|
+
[_So, _Si, _MPI, _MPA, _Sta, _CT, _UT],
|
|
1124
|
+
[[() => LiveConnectorSourceList, 0], [() => LiveConnectorSinkList, 0], 0, 0, 0, 5, 5]
|
|
1125
|
+
];
|
|
1126
|
+
var MediaPipeline$ = [3, n0, _MP,
|
|
1127
|
+
0,
|
|
1128
|
+
[_MCP, _MLCP, _MCPe, _MIP, _MSP],
|
|
1129
|
+
[[() => MediaCapturePipeline$, 0], [() => MediaLiveConnectorPipeline$, 0], [() => MediaConcatenationPipeline$, 0], [() => MediaInsightsPipeline$, 0], [() => MediaStreamPipeline$, 0]]
|
|
1130
|
+
];
|
|
1131
|
+
var MediaPipelineSummary$ = [3, n0, _MPS,
|
|
1132
|
+
0,
|
|
1133
|
+
[_MPI, _MPA],
|
|
1134
|
+
[0, 0]
|
|
1135
|
+
];
|
|
1136
|
+
var MediaStreamPipeline$ = [3, n0, _MSP,
|
|
1137
|
+
0,
|
|
1138
|
+
[_MPI, _MPA, _CT, _UT, _Sta, _So, _Si],
|
|
1139
|
+
[0, 0, 5, 5, 0, [() => MediaStreamSourceList, 0], [() => MediaStreamSinkList, 0]]
|
|
1140
|
+
];
|
|
1141
|
+
var MediaStreamSink$ = [3, n0, _MSS,
|
|
1142
|
+
0,
|
|
1143
|
+
[_SAi, _STi, _RSC, _MST],
|
|
1144
|
+
[[() => Arn, 0], 0, 1, 0], 4
|
|
1145
|
+
];
|
|
1146
|
+
var MediaStreamSource$ = [3, n0, _MSSe,
|
|
1147
|
+
0,
|
|
1148
|
+
[_ST, _SA],
|
|
1149
|
+
[0, [() => Arn, 0]], 2
|
|
1150
|
+
];
|
|
1151
|
+
var MeetingEventsConcatenationConfiguration$ = [3, n0, _MECC,
|
|
1152
|
+
0,
|
|
1153
|
+
[_S],
|
|
1154
|
+
[0], 1
|
|
1155
|
+
];
|
|
1156
|
+
var PostCallAnalyticsSettings$ = [3, n0, _PCAS,
|
|
1157
|
+
0,
|
|
1158
|
+
[_OL, _DARA, _CRO, _OEKMSKI],
|
|
1159
|
+
[0, 0, 0, 0], 2
|
|
1160
|
+
];
|
|
1161
|
+
var PresenterOnlyConfiguration$ = [3, n0, _POC,
|
|
1162
|
+
0,
|
|
1163
|
+
[_PP],
|
|
1164
|
+
[0]
|
|
1165
|
+
];
|
|
1166
|
+
var RealTimeAlertConfiguration$ = [3, n0, _RTAC,
|
|
1167
|
+
0,
|
|
1168
|
+
[_D, _Ru],
|
|
1169
|
+
[2, () => RealTimeAlertRuleList]
|
|
1170
|
+
];
|
|
1171
|
+
var RealTimeAlertRule$ = [3, n0, _RTAR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_T, _KMC, _SCe, _IDC],
|
|
1174
|
+
[0, () => KeywordMatchConfiguration$, () => SentimentConfiguration$, () => IssueDetectionConfiguration$], 1
|
|
1175
|
+
];
|
|
1176
|
+
var RecordingStreamConfiguration$ = [3, n0, _RSCe,
|
|
1177
|
+
0,
|
|
1178
|
+
[_SAt],
|
|
1179
|
+
[0]
|
|
1180
|
+
];
|
|
1181
|
+
var S3BucketSinkConfiguration$ = [3, n0, _SBSC,
|
|
1182
|
+
0,
|
|
1183
|
+
[_De],
|
|
1184
|
+
[[() => Arn, 0]], 1
|
|
1185
|
+
];
|
|
1186
|
+
var S3RecordingSinkConfiguration$ = [3, n0, _SRSC,
|
|
1187
|
+
0,
|
|
1188
|
+
[_De, _RFF],
|
|
1189
|
+
[[() => Arn, 0], 0]
|
|
1190
|
+
];
|
|
1191
|
+
var S3RecordingSinkRuntimeConfiguration$ = [3, n0, _SRSRC,
|
|
1192
|
+
0,
|
|
1193
|
+
[_De, _RFF],
|
|
1194
|
+
[[() => Arn, 0], 0], 2
|
|
1195
|
+
];
|
|
1196
|
+
var SelectedVideoStreams$ = [3, n0, _SVS,
|
|
1197
|
+
0,
|
|
1198
|
+
[_AI, _EUI],
|
|
1199
|
+
[64 | 0, [() => ExternalUserIdList, 0]]
|
|
1200
|
+
];
|
|
1201
|
+
var SentimentConfiguration$ = [3, n0, _SCe,
|
|
1202
|
+
0,
|
|
1203
|
+
[_RN, _STe, _TPi],
|
|
1204
|
+
[0, 0, 1], 3
|
|
1205
|
+
];
|
|
1206
|
+
var SnsTopicSinkConfiguration$ = [3, n0, _STSC,
|
|
1207
|
+
0,
|
|
1208
|
+
[_IT],
|
|
1209
|
+
[[() => Arn, 0]]
|
|
1210
|
+
];
|
|
1211
|
+
var SourceConfiguration$ = [3, n0, _SC,
|
|
1212
|
+
0,
|
|
1213
|
+
[_SVS],
|
|
1214
|
+
[[() => SelectedVideoStreams$, 0]]
|
|
1215
|
+
];
|
|
1216
|
+
var SpeakerSearchTask$ = [3, n0, _SST,
|
|
1217
|
+
0,
|
|
1218
|
+
[_SSTI, _SSTS, _CT, _UT],
|
|
1219
|
+
[0, 0, 5, 5]
|
|
1220
|
+
];
|
|
1221
|
+
var SqsQueueSinkConfiguration$ = [3, n0, _SQSC,
|
|
1222
|
+
0,
|
|
1223
|
+
[_IT],
|
|
1224
|
+
[[() => Arn, 0]]
|
|
1225
|
+
];
|
|
1226
|
+
var SseAwsKeyManagementParams$ = [3, n0, _SAKMP,
|
|
1227
|
+
0,
|
|
1228
|
+
[_AKKI, _AKEC],
|
|
1229
|
+
[0, 0], 1
|
|
1230
|
+
];
|
|
1231
|
+
var StartSpeakerSearchTaskRequest$ = [3, n0, _SSSTR,
|
|
1232
|
+
0,
|
|
1233
|
+
[_I, _VPDA, _KVSSTC, _CRT],
|
|
1234
|
+
[[0, 1], [() => Arn, 0], () => KinesisVideoStreamSourceTaskConfiguration$, [() => ClientRequestToken, 4]], 2
|
|
1235
|
+
];
|
|
1236
|
+
var StartSpeakerSearchTaskResponse$ = [3, n0, _SSSTRt,
|
|
1237
|
+
0,
|
|
1238
|
+
[_SST],
|
|
1239
|
+
[() => SpeakerSearchTask$]
|
|
1240
|
+
];
|
|
1241
|
+
var StartVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATR,
|
|
1242
|
+
0,
|
|
1243
|
+
[_I, _LC, _KVSSTC, _CRT],
|
|
1244
|
+
[[0, 1], 0, () => KinesisVideoStreamSourceTaskConfiguration$, [() => ClientRequestToken, 4]], 2
|
|
1245
|
+
];
|
|
1246
|
+
var StartVoiceToneAnalysisTaskResponse$ = [3, n0, _SVTATRt,
|
|
1247
|
+
0,
|
|
1248
|
+
[_VTAT],
|
|
1249
|
+
[() => VoiceToneAnalysisTask$]
|
|
1250
|
+
];
|
|
1251
|
+
var StopSpeakerSearchTaskRequest$ = [3, n0, _SSSTRto,
|
|
1252
|
+
0,
|
|
1253
|
+
[_I, _SSTI],
|
|
1254
|
+
[[0, 1], [0, 1]], 2
|
|
1255
|
+
];
|
|
1256
|
+
var StopVoiceToneAnalysisTaskRequest$ = [3, n0, _SVTATRto,
|
|
1257
|
+
0,
|
|
1258
|
+
[_I, _VTATI],
|
|
1259
|
+
[[0, 1], [0, 1]], 2
|
|
1260
|
+
];
|
|
1261
|
+
var StreamChannelDefinition$ = [3, n0, _SCD,
|
|
1262
|
+
0,
|
|
1263
|
+
[_NOC, _CDh],
|
|
1264
|
+
[1, () => ChannelDefinitions], 1
|
|
1265
|
+
];
|
|
1266
|
+
var StreamConfiguration$ = [3, n0, _SCt,
|
|
1267
|
+
0,
|
|
1268
|
+
[_SAt, _SCD, _FN],
|
|
1269
|
+
[0, () => StreamChannelDefinition$, 0], 2
|
|
1270
|
+
];
|
|
1271
|
+
var Tag$ = [3, n0, _Tag,
|
|
1272
|
+
0,
|
|
1273
|
+
[_Ke, _Va],
|
|
1274
|
+
[0, 0], 2
|
|
1275
|
+
];
|
|
1276
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1277
|
+
0,
|
|
1278
|
+
[_RARN, _Ta],
|
|
1279
|
+
[0, () => TagList], 2
|
|
1280
|
+
];
|
|
1281
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1282
|
+
0,
|
|
1283
|
+
[],
|
|
1284
|
+
[]
|
|
1285
|
+
];
|
|
1286
|
+
var TimestampRange$ = [3, n0, _TR,
|
|
1287
|
+
0,
|
|
1288
|
+
[_STt, _ET],
|
|
1289
|
+
[4, 4], 2
|
|
1290
|
+
];
|
|
1291
|
+
var TranscriptionMessagesConcatenationConfiguration$ = [3, n0, _TMCC,
|
|
1292
|
+
0,
|
|
1293
|
+
[_S],
|
|
1294
|
+
[0], 1
|
|
1295
|
+
];
|
|
1296
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1297
|
+
0,
|
|
1298
|
+
[_RARN, _TK],
|
|
1299
|
+
[0, 64 | 0], 2
|
|
1300
|
+
];
|
|
1301
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1302
|
+
0,
|
|
1303
|
+
[],
|
|
1304
|
+
[]
|
|
1305
|
+
];
|
|
1306
|
+
var UpdateMediaInsightsPipelineConfigurationRequest$ = [3, n0, _UMIPCR,
|
|
1307
|
+
0,
|
|
1308
|
+
[_I, _RARA, _E, _RTAC],
|
|
1309
|
+
[[0, 1], [() => Arn, 0], [() => MediaInsightsPipelineConfigurationElements, 0], () => RealTimeAlertConfiguration$], 3
|
|
1310
|
+
];
|
|
1311
|
+
var UpdateMediaInsightsPipelineConfigurationResponse$ = [3, n0, _UMIPCRp,
|
|
1312
|
+
0,
|
|
1313
|
+
[_MIPC],
|
|
1314
|
+
[[() => MediaInsightsPipelineConfiguration$, 0]]
|
|
1315
|
+
];
|
|
1316
|
+
var UpdateMediaInsightsPipelineStatusRequest$ = [3, n0, _UMIPSR,
|
|
1317
|
+
0,
|
|
1318
|
+
[_I, _US],
|
|
1319
|
+
[[0, 1], 0], 2
|
|
1320
|
+
];
|
|
1321
|
+
var UpdateMediaPipelineKinesisVideoStreamPoolRequest$ = [3, n0, _UMPKVSPR,
|
|
1322
|
+
0,
|
|
1323
|
+
[_I, _SCt],
|
|
1324
|
+
[[0, 1], () => KinesisVideoStreamConfigurationUpdate$], 1
|
|
1325
|
+
];
|
|
1326
|
+
var UpdateMediaPipelineKinesisVideoStreamPoolResponse$ = [3, n0, _UMPKVSPRp,
|
|
1327
|
+
0,
|
|
1328
|
+
[_KVSPC],
|
|
1329
|
+
[[() => KinesisVideoStreamPoolConfiguration$, 0]]
|
|
1330
|
+
];
|
|
1331
|
+
var VerticalLayoutConfiguration$ = [3, n0, _VLC,
|
|
1332
|
+
0,
|
|
1333
|
+
[_TO, _TP, _TC, _TAR],
|
|
1334
|
+
[0, 0, 1, 0]
|
|
1335
|
+
];
|
|
1336
|
+
var VideoArtifactsConfiguration$ = [3, n0, _VAC,
|
|
1337
|
+
0,
|
|
1338
|
+
[_S, _MT],
|
|
1339
|
+
[0, 0], 1
|
|
1340
|
+
];
|
|
1341
|
+
var VideoAttribute$ = [3, n0, _VA,
|
|
1342
|
+
0,
|
|
1343
|
+
[_CR, _BC, _HC, _BT],
|
|
1344
|
+
[1, 0, 0, 1]
|
|
1345
|
+
];
|
|
1346
|
+
var VideoConcatenationConfiguration$ = [3, n0, _VCC,
|
|
1347
|
+
0,
|
|
1348
|
+
[_S],
|
|
1349
|
+
[0], 1
|
|
1350
|
+
];
|
|
1351
|
+
var VoiceAnalyticsProcessorConfiguration$ = [3, n0, _VAPC,
|
|
1352
|
+
0,
|
|
1353
|
+
[_SSS, _VTAS],
|
|
1354
|
+
[0, 0]
|
|
1355
|
+
];
|
|
1356
|
+
var VoiceEnhancementSinkConfiguration$ = [3, n0, _VESC,
|
|
1357
|
+
0,
|
|
1358
|
+
[_D],
|
|
1359
|
+
[2]
|
|
1360
|
+
];
|
|
1361
|
+
var VoiceToneAnalysisTask$ = [3, n0, _VTAT,
|
|
1362
|
+
0,
|
|
1363
|
+
[_VTATI, _VTATS, _CT, _UT],
|
|
1364
|
+
[0, 0, 5, 5]
|
|
1365
|
+
];
|
|
1366
|
+
var __Unit = "unit";
|
|
1367
|
+
var ChannelDefinitions = [1, n0, _CDh,
|
|
1368
|
+
0, () => ChannelDefinition$
|
|
1369
|
+
];
|
|
1370
|
+
var ConcatenationSinkList = [1, n0, _CSLo,
|
|
1371
|
+
0, [() => ConcatenationSink$,
|
|
1372
|
+
0]
|
|
1373
|
+
];
|
|
1374
|
+
var ConcatenationSourceList = [1, n0, _CSLon,
|
|
1375
|
+
0, [() => ConcatenationSource$,
|
|
1376
|
+
0]
|
|
1377
|
+
];
|
|
1378
|
+
var ExternalUserIdList = [1, n0, _EUIL,
|
|
1379
|
+
0, [() => ExternalUserIdType,
|
|
1380
|
+
0]
|
|
1381
|
+
];
|
|
1382
|
+
var KinesisVideoStreamPoolSummaryList = [1, n0, _KVSPSL,
|
|
1383
|
+
0, [() => KinesisVideoStreamPoolSummary$,
|
|
1384
|
+
0]
|
|
1385
|
+
];
|
|
1386
|
+
var LiveConnectorSinkList = [1, n0, _LCSL,
|
|
1387
|
+
0, [() => LiveConnectorSinkConfiguration$,
|
|
1388
|
+
0]
|
|
1389
|
+
];
|
|
1390
|
+
var LiveConnectorSourceList = [1, n0, _LCSLi,
|
|
1391
|
+
0, [() => LiveConnectorSourceConfiguration$,
|
|
1392
|
+
0]
|
|
1393
|
+
];
|
|
1394
|
+
var MediaCapturePipelineSummaryList = [1, n0, _MCPSL,
|
|
1395
|
+
0, () => MediaCapturePipelineSummary$
|
|
1396
|
+
];
|
|
1397
|
+
var MediaInsightsPipelineConfigurationElements = [1, n0, _MIPCEe,
|
|
1398
|
+
0, [() => MediaInsightsPipelineConfigurationElement$,
|
|
1399
|
+
0]
|
|
1400
|
+
];
|
|
1401
|
+
var MediaInsightsPipelineConfigurationSummaryList = [1, n0, _MIPCSL,
|
|
1402
|
+
0, [() => MediaInsightsPipelineConfigurationSummary$,
|
|
1403
|
+
0]
|
|
1404
|
+
];
|
|
1405
|
+
var MediaInsightsPipelineElementStatuses = [1, n0, _MIPESe,
|
|
1406
|
+
0, () => MediaInsightsPipelineElementStatus$
|
|
1407
|
+
];
|
|
1408
|
+
var MediaPipelineList = [1, n0, _MPL,
|
|
1409
|
+
0, () => MediaPipelineSummary$
|
|
1410
|
+
];
|
|
1411
|
+
var MediaStreamSinkList = [1, n0, _MSSL,
|
|
1412
|
+
0, [() => MediaStreamSink$,
|
|
1413
|
+
0]
|
|
1414
|
+
];
|
|
1415
|
+
var MediaStreamSourceList = [1, n0, _MSSLe,
|
|
1416
|
+
0, [() => MediaStreamSource$,
|
|
1417
|
+
0]
|
|
1418
|
+
];
|
|
1419
|
+
var RealTimeAlertRuleList = [1, n0, _RTARL,
|
|
1420
|
+
0, () => RealTimeAlertRule$
|
|
1421
|
+
];
|
|
1422
|
+
var RecordingStreamList = [1, n0, _RSL,
|
|
1423
|
+
0, () => RecordingStreamConfiguration$
|
|
1424
|
+
];
|
|
1425
|
+
var Streams = [1, n0, _St,
|
|
1426
|
+
0, () => StreamConfiguration$
|
|
1427
|
+
];
|
|
1428
|
+
var TagList = [1, n0, _TL,
|
|
1429
|
+
0, () => Tag$
|
|
1430
|
+
];
|
|
1431
|
+
var MediaInsightsRuntimeMetadata = [2, n0, _MIRM,
|
|
1432
|
+
8, 0, 0
|
|
1433
|
+
];
|
|
1434
|
+
var CreateMediaCapturePipeline$ = [9, n0, _CMCP,
|
|
1435
|
+
{ [_h]: ["POST", "/sdk-media-capture-pipelines", 201] }, () => CreateMediaCapturePipelineRequest$, () => CreateMediaCapturePipelineResponse$
|
|
1436
|
+
];
|
|
1437
|
+
var CreateMediaConcatenationPipeline$ = [9, n0, _CMCPr,
|
|
1438
|
+
{ [_h]: ["POST", "/sdk-media-concatenation-pipelines", 201] }, () => CreateMediaConcatenationPipelineRequest$, () => CreateMediaConcatenationPipelineResponse$
|
|
1439
|
+
];
|
|
1440
|
+
var CreateMediaInsightsPipeline$ = [9, n0, _CMIP,
|
|
1441
|
+
{ [_h]: ["POST", "/media-insights-pipelines", 201] }, () => CreateMediaInsightsPipelineRequest$, () => CreateMediaInsightsPipelineResponse$
|
|
1442
|
+
];
|
|
1443
|
+
var CreateMediaInsightsPipelineConfiguration$ = [9, n0, _CMIPC,
|
|
1444
|
+
{ [_h]: ["POST", "/media-insights-pipeline-configurations", 201] }, () => CreateMediaInsightsPipelineConfigurationRequest$, () => CreateMediaInsightsPipelineConfigurationResponse$
|
|
1445
|
+
];
|
|
1446
|
+
var CreateMediaLiveConnectorPipeline$ = [9, n0, _CMLCP,
|
|
1447
|
+
{ [_h]: ["POST", "/sdk-media-live-connector-pipelines", 201] }, () => CreateMediaLiveConnectorPipelineRequest$, () => CreateMediaLiveConnectorPipelineResponse$
|
|
1448
|
+
];
|
|
1449
|
+
var CreateMediaPipelineKinesisVideoStreamPool$ = [9, n0, _CMPKVSP,
|
|
1450
|
+
{ [_h]: ["POST", "/media-pipeline-kinesis-video-stream-pools", 201] }, () => CreateMediaPipelineKinesisVideoStreamPoolRequest$, () => CreateMediaPipelineKinesisVideoStreamPoolResponse$
|
|
1451
|
+
];
|
|
1452
|
+
var CreateMediaStreamPipeline$ = [9, n0, _CMSP,
|
|
1453
|
+
{ [_h]: ["POST", "/sdk-media-stream-pipelines", 201] }, () => CreateMediaStreamPipelineRequest$, () => CreateMediaStreamPipelineResponse$
|
|
1454
|
+
];
|
|
1455
|
+
var DeleteMediaCapturePipeline$ = [9, n0, _DMCP,
|
|
1456
|
+
{ [_h]: ["DELETE", "/sdk-media-capture-pipelines/{MediaPipelineId}", 204] }, () => DeleteMediaCapturePipelineRequest$, () => __Unit
|
|
1457
|
+
];
|
|
1458
|
+
var DeleteMediaInsightsPipelineConfiguration$ = [9, n0, _DMIPC,
|
|
1459
|
+
{ [_h]: ["DELETE", "/media-insights-pipeline-configurations/{Identifier}", 204] }, () => DeleteMediaInsightsPipelineConfigurationRequest$, () => __Unit
|
|
1460
|
+
];
|
|
1461
|
+
var DeleteMediaPipeline$ = [9, n0, _DMP,
|
|
1462
|
+
{ [_h]: ["DELETE", "/sdk-media-pipelines/{MediaPipelineId}", 204] }, () => DeleteMediaPipelineRequest$, () => __Unit
|
|
1463
|
+
];
|
|
1464
|
+
var DeleteMediaPipelineKinesisVideoStreamPool$ = [9, n0, _DMPKVSP,
|
|
1465
|
+
{ [_h]: ["DELETE", "/media-pipeline-kinesis-video-stream-pools/{Identifier}", 204] }, () => DeleteMediaPipelineKinesisVideoStreamPoolRequest$, () => __Unit
|
|
1466
|
+
];
|
|
1467
|
+
var GetMediaCapturePipeline$ = [9, n0, _GMCP,
|
|
1468
|
+
{ [_h]: ["GET", "/sdk-media-capture-pipelines/{MediaPipelineId}", 200] }, () => GetMediaCapturePipelineRequest$, () => GetMediaCapturePipelineResponse$
|
|
1469
|
+
];
|
|
1470
|
+
var GetMediaInsightsPipelineConfiguration$ = [9, n0, _GMIPC,
|
|
1471
|
+
{ [_h]: ["GET", "/media-insights-pipeline-configurations/{Identifier}", 200] }, () => GetMediaInsightsPipelineConfigurationRequest$, () => GetMediaInsightsPipelineConfigurationResponse$
|
|
1472
|
+
];
|
|
1473
|
+
var GetMediaPipeline$ = [9, n0, _GMP,
|
|
1474
|
+
{ [_h]: ["GET", "/sdk-media-pipelines/{MediaPipelineId}", 200] }, () => GetMediaPipelineRequest$, () => GetMediaPipelineResponse$
|
|
1475
|
+
];
|
|
1476
|
+
var GetMediaPipelineKinesisVideoStreamPool$ = [9, n0, _GMPKVSP,
|
|
1477
|
+
{ [_h]: ["GET", "/media-pipeline-kinesis-video-stream-pools/{Identifier}", 200] }, () => GetMediaPipelineKinesisVideoStreamPoolRequest$, () => GetMediaPipelineKinesisVideoStreamPoolResponse$
|
|
1478
|
+
];
|
|
1479
|
+
var GetSpeakerSearchTask$ = [9, n0, _GSST,
|
|
1480
|
+
{ [_h]: ["GET", "/media-insights-pipelines/{Identifier}/speaker-search-tasks/{SpeakerSearchTaskId}", 200] }, () => GetSpeakerSearchTaskRequest$, () => GetSpeakerSearchTaskResponse$
|
|
1481
|
+
];
|
|
1482
|
+
var GetVoiceToneAnalysisTask$ = [9, n0, _GVTAT,
|
|
1483
|
+
{ [_h]: ["GET", "/media-insights-pipelines/{Identifier}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}", 200] }, () => GetVoiceToneAnalysisTaskRequest$, () => GetVoiceToneAnalysisTaskResponse$
|
|
1484
|
+
];
|
|
1485
|
+
var ListMediaCapturePipelines$ = [9, n0, _LMCP,
|
|
1486
|
+
{ [_h]: ["GET", "/sdk-media-capture-pipelines", 200] }, () => ListMediaCapturePipelinesRequest$, () => ListMediaCapturePipelinesResponse$
|
|
1487
|
+
];
|
|
1488
|
+
var ListMediaInsightsPipelineConfigurations$ = [9, n0, _LMIPC,
|
|
1489
|
+
{ [_h]: ["GET", "/media-insights-pipeline-configurations", 200] }, () => ListMediaInsightsPipelineConfigurationsRequest$, () => ListMediaInsightsPipelineConfigurationsResponse$
|
|
1490
|
+
];
|
|
1491
|
+
var ListMediaPipelineKinesisVideoStreamPools$ = [9, n0, _LMPKVSP,
|
|
1492
|
+
{ [_h]: ["GET", "/media-pipeline-kinesis-video-stream-pools", 200] }, () => ListMediaPipelineKinesisVideoStreamPoolsRequest$, () => ListMediaPipelineKinesisVideoStreamPoolsResponse$
|
|
1493
|
+
];
|
|
1494
|
+
var ListMediaPipelines$ = [9, n0, _LMP,
|
|
1495
|
+
{ [_h]: ["GET", "/sdk-media-pipelines", 200] }, () => ListMediaPipelinesRequest$, () => ListMediaPipelinesResponse$
|
|
1496
|
+
];
|
|
1497
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1498
|
+
{ [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1499
|
+
];
|
|
1500
|
+
var StartSpeakerSearchTask$ = [9, n0, _SSST,
|
|
1501
|
+
{ [_h]: ["POST", "/media-insights-pipelines/{Identifier}/speaker-search-tasks?operation=start", 201] }, () => StartSpeakerSearchTaskRequest$, () => StartSpeakerSearchTaskResponse$
|
|
1502
|
+
];
|
|
1503
|
+
var StartVoiceToneAnalysisTask$ = [9, n0, _SVTAT,
|
|
1504
|
+
{ [_h]: ["POST", "/media-insights-pipelines/{Identifier}/voice-tone-analysis-tasks?operation=start", 201] }, () => StartVoiceToneAnalysisTaskRequest$, () => StartVoiceToneAnalysisTaskResponse$
|
|
1505
|
+
];
|
|
1506
|
+
var StopSpeakerSearchTask$ = [9, n0, _SSSTt,
|
|
1507
|
+
{ [_h]: ["POST", "/media-insights-pipelines/{Identifier}/speaker-search-tasks/{SpeakerSearchTaskId}?operation=stop", 204] }, () => StopSpeakerSearchTaskRequest$, () => __Unit
|
|
1508
|
+
];
|
|
1509
|
+
var StopVoiceToneAnalysisTask$ = [9, n0, _SVTATt,
|
|
1510
|
+
{ [_h]: ["POST", "/media-insights-pipelines/{Identifier}/voice-tone-analysis-tasks/{VoiceToneAnalysisTaskId}?operation=stop", 204] }, () => StopVoiceToneAnalysisTaskRequest$, () => __Unit
|
|
1511
|
+
];
|
|
1512
|
+
var TagResource$ = [9, n0, _TRa,
|
|
1513
|
+
{ [_h]: ["POST", "/tags?operation=tag-resource", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1514
|
+
];
|
|
1515
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1516
|
+
{ [_h]: ["POST", "/tags?operation=untag-resource", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1517
|
+
];
|
|
1518
|
+
var UpdateMediaInsightsPipelineConfiguration$ = [9, n0, _UMIPC,
|
|
1519
|
+
{ [_h]: ["PUT", "/media-insights-pipeline-configurations/{Identifier}", 200] }, () => UpdateMediaInsightsPipelineConfigurationRequest$, () => UpdateMediaInsightsPipelineConfigurationResponse$
|
|
1520
|
+
];
|
|
1521
|
+
var UpdateMediaInsightsPipelineStatus$ = [9, n0, _UMIPS,
|
|
1522
|
+
{ [_h]: ["PUT", "/media-insights-pipeline-status/{Identifier}", 200] }, () => UpdateMediaInsightsPipelineStatusRequest$, () => __Unit
|
|
1523
|
+
];
|
|
1524
|
+
var UpdateMediaPipelineKinesisVideoStreamPool$ = [9, n0, _UMPKVSP,
|
|
1525
|
+
{ [_h]: ["PUT", "/media-pipeline-kinesis-video-stream-pools/{Identifier}", 200] }, () => UpdateMediaPipelineKinesisVideoStreamPoolRequest$, () => UpdateMediaPipelineKinesisVideoStreamPoolResponse$
|
|
1526
|
+
];
|
|
1527
|
+
|
|
1528
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1529
|
+
return {
|
|
1530
|
+
apiVersion: "2021-07-15",
|
|
1531
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1532
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1533
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1534
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1535
|
+
extensions: config?.extensions ?? [],
|
|
1536
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultChimeSDKMediaPipelinesHttpAuthSchemeProvider,
|
|
1537
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1538
|
+
{
|
|
1539
|
+
schemeId: "aws.auth#sigv4",
|
|
1540
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1541
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1542
|
+
},
|
|
1543
|
+
],
|
|
1544
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1545
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1546
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1547
|
+
defaultNamespace: "com.amazonaws.chimesdkmediapipelines",
|
|
1548
|
+
errorTypeRegistries,
|
|
1549
|
+
version: "2021-07-15",
|
|
1550
|
+
serviceTarget: "ChimeSDKMediaPipelinesService",
|
|
1551
|
+
},
|
|
1552
|
+
serviceId: config?.serviceId ?? "Chime SDK Media Pipelines",
|
|
1553
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1554
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1555
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1556
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1557
|
+
};
|
|
1558
|
+
};
|
|
1559
|
+
|
|
1560
|
+
const getRuntimeConfig = (config) => {
|
|
1561
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1562
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1563
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1564
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1565
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1566
|
+
const loaderConfig = {
|
|
1567
|
+
profile: config?.profile,
|
|
1568
|
+
logger: clientSharedValues.logger,
|
|
1569
|
+
};
|
|
1570
|
+
return {
|
|
1571
|
+
...clientSharedValues,
|
|
1572
|
+
...config,
|
|
1573
|
+
runtime: "node",
|
|
1574
|
+
defaultsMode,
|
|
1575
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1576
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1577
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1578
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1579
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1580
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1581
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1582
|
+
retryMode: config?.retryMode ??
|
|
1583
|
+
loadConfig({
|
|
1584
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1585
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1586
|
+
}, config),
|
|
1587
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1588
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1589
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1590
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1591
|
+
};
|
|
1592
|
+
};
|
|
1593
|
+
|
|
34
1594
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1595
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1596
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -763,86 +2323,271 @@ const MediaPipelineStatusUpdate = {
|
|
|
763
2323
|
Resume: "Resume",
|
|
764
2324
|
};
|
|
765
2325
|
|
|
2326
|
+
exports.ActiveSpeakerOnlyConfiguration$ = ActiveSpeakerOnlyConfiguration$;
|
|
766
2327
|
exports.ActiveSpeakerPosition = ActiveSpeakerPosition;
|
|
2328
|
+
exports.AmazonTranscribeCallAnalyticsProcessorConfiguration$ = AmazonTranscribeCallAnalyticsProcessorConfiguration$;
|
|
2329
|
+
exports.AmazonTranscribeProcessorConfiguration$ = AmazonTranscribeProcessorConfiguration$;
|
|
2330
|
+
exports.ArtifactsConcatenationConfiguration$ = ArtifactsConcatenationConfiguration$;
|
|
767
2331
|
exports.ArtifactsConcatenationState = ArtifactsConcatenationState;
|
|
2332
|
+
exports.ArtifactsConfiguration$ = ArtifactsConfiguration$;
|
|
768
2333
|
exports.ArtifactsState = ArtifactsState;
|
|
769
2334
|
exports.AudioArtifactsConcatenationState = AudioArtifactsConcatenationState;
|
|
2335
|
+
exports.AudioArtifactsConfiguration$ = AudioArtifactsConfiguration$;
|
|
770
2336
|
exports.AudioChannelsOption = AudioChannelsOption;
|
|
2337
|
+
exports.AudioConcatenationConfiguration$ = AudioConcatenationConfiguration$;
|
|
771
2338
|
exports.AudioMuxType = AudioMuxType;
|
|
2339
|
+
exports.BadRequestException = BadRequestException;
|
|
2340
|
+
exports.BadRequestException$ = BadRequestException$;
|
|
772
2341
|
exports.BorderColor = BorderColor;
|
|
773
2342
|
exports.CallAnalyticsLanguageCode = CallAnalyticsLanguageCode;
|
|
774
2343
|
exports.CanvasOrientation = CanvasOrientation;
|
|
2344
|
+
exports.ChannelDefinition$ = ChannelDefinition$;
|
|
775
2345
|
exports.ChimeSDKMediaPipelines = ChimeSDKMediaPipelines;
|
|
776
2346
|
exports.ChimeSDKMediaPipelinesClient = ChimeSDKMediaPipelinesClient;
|
|
2347
|
+
exports.ChimeSDKMediaPipelinesServiceException = ChimeSDKMediaPipelinesServiceException;
|
|
2348
|
+
exports.ChimeSDKMediaPipelinesServiceException$ = ChimeSDKMediaPipelinesServiceException$;
|
|
2349
|
+
exports.ChimeSdkMeetingConcatenationConfiguration$ = ChimeSdkMeetingConcatenationConfiguration$;
|
|
2350
|
+
exports.ChimeSdkMeetingConfiguration$ = ChimeSdkMeetingConfiguration$;
|
|
2351
|
+
exports.ChimeSdkMeetingLiveConnectorConfiguration$ = ChimeSdkMeetingLiveConnectorConfiguration$;
|
|
2352
|
+
exports.CompositedVideoArtifactsConfiguration$ = CompositedVideoArtifactsConfiguration$;
|
|
2353
|
+
exports.CompositedVideoConcatenationConfiguration$ = CompositedVideoConcatenationConfiguration$;
|
|
2354
|
+
exports.ConcatenationSink$ = ConcatenationSink$;
|
|
777
2355
|
exports.ConcatenationSinkType = ConcatenationSinkType;
|
|
2356
|
+
exports.ConcatenationSource$ = ConcatenationSource$;
|
|
778
2357
|
exports.ConcatenationSourceType = ConcatenationSourceType;
|
|
2358
|
+
exports.ConflictException = ConflictException;
|
|
2359
|
+
exports.ConflictException$ = ConflictException$;
|
|
2360
|
+
exports.ContentArtifactsConfiguration$ = ContentArtifactsConfiguration$;
|
|
2361
|
+
exports.ContentConcatenationConfiguration$ = ContentConcatenationConfiguration$;
|
|
779
2362
|
exports.ContentMuxType = ContentMuxType;
|
|
780
2363
|
exports.ContentRedactionOutput = ContentRedactionOutput;
|
|
781
2364
|
exports.ContentShareLayoutOption = ContentShareLayoutOption;
|
|
782
2365
|
exports.ContentType = ContentType;
|
|
2366
|
+
exports.CreateMediaCapturePipeline$ = CreateMediaCapturePipeline$;
|
|
783
2367
|
exports.CreateMediaCapturePipelineCommand = CreateMediaCapturePipelineCommand;
|
|
2368
|
+
exports.CreateMediaCapturePipelineRequest$ = CreateMediaCapturePipelineRequest$;
|
|
2369
|
+
exports.CreateMediaCapturePipelineResponse$ = CreateMediaCapturePipelineResponse$;
|
|
2370
|
+
exports.CreateMediaConcatenationPipeline$ = CreateMediaConcatenationPipeline$;
|
|
784
2371
|
exports.CreateMediaConcatenationPipelineCommand = CreateMediaConcatenationPipelineCommand;
|
|
2372
|
+
exports.CreateMediaConcatenationPipelineRequest$ = CreateMediaConcatenationPipelineRequest$;
|
|
2373
|
+
exports.CreateMediaConcatenationPipelineResponse$ = CreateMediaConcatenationPipelineResponse$;
|
|
2374
|
+
exports.CreateMediaInsightsPipeline$ = CreateMediaInsightsPipeline$;
|
|
785
2375
|
exports.CreateMediaInsightsPipelineCommand = CreateMediaInsightsPipelineCommand;
|
|
2376
|
+
exports.CreateMediaInsightsPipelineConfiguration$ = CreateMediaInsightsPipelineConfiguration$;
|
|
786
2377
|
exports.CreateMediaInsightsPipelineConfigurationCommand = CreateMediaInsightsPipelineConfigurationCommand;
|
|
2378
|
+
exports.CreateMediaInsightsPipelineConfigurationRequest$ = CreateMediaInsightsPipelineConfigurationRequest$;
|
|
2379
|
+
exports.CreateMediaInsightsPipelineConfigurationResponse$ = CreateMediaInsightsPipelineConfigurationResponse$;
|
|
2380
|
+
exports.CreateMediaInsightsPipelineRequest$ = CreateMediaInsightsPipelineRequest$;
|
|
2381
|
+
exports.CreateMediaInsightsPipelineResponse$ = CreateMediaInsightsPipelineResponse$;
|
|
2382
|
+
exports.CreateMediaLiveConnectorPipeline$ = CreateMediaLiveConnectorPipeline$;
|
|
787
2383
|
exports.CreateMediaLiveConnectorPipelineCommand = CreateMediaLiveConnectorPipelineCommand;
|
|
2384
|
+
exports.CreateMediaLiveConnectorPipelineRequest$ = CreateMediaLiveConnectorPipelineRequest$;
|
|
2385
|
+
exports.CreateMediaLiveConnectorPipelineResponse$ = CreateMediaLiveConnectorPipelineResponse$;
|
|
2386
|
+
exports.CreateMediaPipelineKinesisVideoStreamPool$ = CreateMediaPipelineKinesisVideoStreamPool$;
|
|
788
2387
|
exports.CreateMediaPipelineKinesisVideoStreamPoolCommand = CreateMediaPipelineKinesisVideoStreamPoolCommand;
|
|
2388
|
+
exports.CreateMediaPipelineKinesisVideoStreamPoolRequest$ = CreateMediaPipelineKinesisVideoStreamPoolRequest$;
|
|
2389
|
+
exports.CreateMediaPipelineKinesisVideoStreamPoolResponse$ = CreateMediaPipelineKinesisVideoStreamPoolResponse$;
|
|
2390
|
+
exports.CreateMediaStreamPipeline$ = CreateMediaStreamPipeline$;
|
|
789
2391
|
exports.CreateMediaStreamPipelineCommand = CreateMediaStreamPipelineCommand;
|
|
2392
|
+
exports.CreateMediaStreamPipelineRequest$ = CreateMediaStreamPipelineRequest$;
|
|
2393
|
+
exports.CreateMediaStreamPipelineResponse$ = CreateMediaStreamPipelineResponse$;
|
|
2394
|
+
exports.DataChannelConcatenationConfiguration$ = DataChannelConcatenationConfiguration$;
|
|
2395
|
+
exports.DeleteMediaCapturePipeline$ = DeleteMediaCapturePipeline$;
|
|
790
2396
|
exports.DeleteMediaCapturePipelineCommand = DeleteMediaCapturePipelineCommand;
|
|
2397
|
+
exports.DeleteMediaCapturePipelineRequest$ = DeleteMediaCapturePipelineRequest$;
|
|
2398
|
+
exports.DeleteMediaInsightsPipelineConfiguration$ = DeleteMediaInsightsPipelineConfiguration$;
|
|
791
2399
|
exports.DeleteMediaInsightsPipelineConfigurationCommand = DeleteMediaInsightsPipelineConfigurationCommand;
|
|
2400
|
+
exports.DeleteMediaInsightsPipelineConfigurationRequest$ = DeleteMediaInsightsPipelineConfigurationRequest$;
|
|
2401
|
+
exports.DeleteMediaPipeline$ = DeleteMediaPipeline$;
|
|
792
2402
|
exports.DeleteMediaPipelineCommand = DeleteMediaPipelineCommand;
|
|
2403
|
+
exports.DeleteMediaPipelineKinesisVideoStreamPool$ = DeleteMediaPipelineKinesisVideoStreamPool$;
|
|
793
2404
|
exports.DeleteMediaPipelineKinesisVideoStreamPoolCommand = DeleteMediaPipelineKinesisVideoStreamPoolCommand;
|
|
2405
|
+
exports.DeleteMediaPipelineKinesisVideoStreamPoolRequest$ = DeleteMediaPipelineKinesisVideoStreamPoolRequest$;
|
|
2406
|
+
exports.DeleteMediaPipelineRequest$ = DeleteMediaPipelineRequest$;
|
|
794
2407
|
exports.ErrorCode = ErrorCode;
|
|
2408
|
+
exports.ForbiddenException = ForbiddenException;
|
|
2409
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
2410
|
+
exports.FragmentSelector$ = FragmentSelector$;
|
|
795
2411
|
exports.FragmentSelectorType = FragmentSelectorType;
|
|
2412
|
+
exports.GetMediaCapturePipeline$ = GetMediaCapturePipeline$;
|
|
796
2413
|
exports.GetMediaCapturePipelineCommand = GetMediaCapturePipelineCommand;
|
|
2414
|
+
exports.GetMediaCapturePipelineRequest$ = GetMediaCapturePipelineRequest$;
|
|
2415
|
+
exports.GetMediaCapturePipelineResponse$ = GetMediaCapturePipelineResponse$;
|
|
2416
|
+
exports.GetMediaInsightsPipelineConfiguration$ = GetMediaInsightsPipelineConfiguration$;
|
|
797
2417
|
exports.GetMediaInsightsPipelineConfigurationCommand = GetMediaInsightsPipelineConfigurationCommand;
|
|
2418
|
+
exports.GetMediaInsightsPipelineConfigurationRequest$ = GetMediaInsightsPipelineConfigurationRequest$;
|
|
2419
|
+
exports.GetMediaInsightsPipelineConfigurationResponse$ = GetMediaInsightsPipelineConfigurationResponse$;
|
|
2420
|
+
exports.GetMediaPipeline$ = GetMediaPipeline$;
|
|
798
2421
|
exports.GetMediaPipelineCommand = GetMediaPipelineCommand;
|
|
2422
|
+
exports.GetMediaPipelineKinesisVideoStreamPool$ = GetMediaPipelineKinesisVideoStreamPool$;
|
|
799
2423
|
exports.GetMediaPipelineKinesisVideoStreamPoolCommand = GetMediaPipelineKinesisVideoStreamPoolCommand;
|
|
2424
|
+
exports.GetMediaPipelineKinesisVideoStreamPoolRequest$ = GetMediaPipelineKinesisVideoStreamPoolRequest$;
|
|
2425
|
+
exports.GetMediaPipelineKinesisVideoStreamPoolResponse$ = GetMediaPipelineKinesisVideoStreamPoolResponse$;
|
|
2426
|
+
exports.GetMediaPipelineRequest$ = GetMediaPipelineRequest$;
|
|
2427
|
+
exports.GetMediaPipelineResponse$ = GetMediaPipelineResponse$;
|
|
2428
|
+
exports.GetSpeakerSearchTask$ = GetSpeakerSearchTask$;
|
|
800
2429
|
exports.GetSpeakerSearchTaskCommand = GetSpeakerSearchTaskCommand;
|
|
2430
|
+
exports.GetSpeakerSearchTaskRequest$ = GetSpeakerSearchTaskRequest$;
|
|
2431
|
+
exports.GetSpeakerSearchTaskResponse$ = GetSpeakerSearchTaskResponse$;
|
|
2432
|
+
exports.GetVoiceToneAnalysisTask$ = GetVoiceToneAnalysisTask$;
|
|
801
2433
|
exports.GetVoiceToneAnalysisTaskCommand = GetVoiceToneAnalysisTaskCommand;
|
|
2434
|
+
exports.GetVoiceToneAnalysisTaskRequest$ = GetVoiceToneAnalysisTaskRequest$;
|
|
2435
|
+
exports.GetVoiceToneAnalysisTaskResponse$ = GetVoiceToneAnalysisTaskResponse$;
|
|
2436
|
+
exports.GridViewConfiguration$ = GridViewConfiguration$;
|
|
802
2437
|
exports.HighlightColor = HighlightColor;
|
|
2438
|
+
exports.HorizontalLayoutConfiguration$ = HorizontalLayoutConfiguration$;
|
|
803
2439
|
exports.HorizontalTilePosition = HorizontalTilePosition;
|
|
2440
|
+
exports.IssueDetectionConfiguration$ = IssueDetectionConfiguration$;
|
|
2441
|
+
exports.KeywordMatchConfiguration$ = KeywordMatchConfiguration$;
|
|
2442
|
+
exports.KinesisDataStreamSinkConfiguration$ = KinesisDataStreamSinkConfiguration$;
|
|
2443
|
+
exports.KinesisVideoStreamConfiguration$ = KinesisVideoStreamConfiguration$;
|
|
2444
|
+
exports.KinesisVideoStreamConfigurationUpdate$ = KinesisVideoStreamConfigurationUpdate$;
|
|
2445
|
+
exports.KinesisVideoStreamPoolConfiguration$ = KinesisVideoStreamPoolConfiguration$;
|
|
804
2446
|
exports.KinesisVideoStreamPoolStatus = KinesisVideoStreamPoolStatus;
|
|
2447
|
+
exports.KinesisVideoStreamPoolSummary$ = KinesisVideoStreamPoolSummary$;
|
|
2448
|
+
exports.KinesisVideoStreamRecordingSourceRuntimeConfiguration$ = KinesisVideoStreamRecordingSourceRuntimeConfiguration$;
|
|
2449
|
+
exports.KinesisVideoStreamSourceRuntimeConfiguration$ = KinesisVideoStreamSourceRuntimeConfiguration$;
|
|
2450
|
+
exports.KinesisVideoStreamSourceTaskConfiguration$ = KinesisVideoStreamSourceTaskConfiguration$;
|
|
2451
|
+
exports.LambdaFunctionSinkConfiguration$ = LambdaFunctionSinkConfiguration$;
|
|
805
2452
|
exports.LayoutOption = LayoutOption;
|
|
2453
|
+
exports.ListMediaCapturePipelines$ = ListMediaCapturePipelines$;
|
|
806
2454
|
exports.ListMediaCapturePipelinesCommand = ListMediaCapturePipelinesCommand;
|
|
2455
|
+
exports.ListMediaCapturePipelinesRequest$ = ListMediaCapturePipelinesRequest$;
|
|
2456
|
+
exports.ListMediaCapturePipelinesResponse$ = ListMediaCapturePipelinesResponse$;
|
|
2457
|
+
exports.ListMediaInsightsPipelineConfigurations$ = ListMediaInsightsPipelineConfigurations$;
|
|
807
2458
|
exports.ListMediaInsightsPipelineConfigurationsCommand = ListMediaInsightsPipelineConfigurationsCommand;
|
|
2459
|
+
exports.ListMediaInsightsPipelineConfigurationsRequest$ = ListMediaInsightsPipelineConfigurationsRequest$;
|
|
2460
|
+
exports.ListMediaInsightsPipelineConfigurationsResponse$ = ListMediaInsightsPipelineConfigurationsResponse$;
|
|
2461
|
+
exports.ListMediaPipelineKinesisVideoStreamPools$ = ListMediaPipelineKinesisVideoStreamPools$;
|
|
808
2462
|
exports.ListMediaPipelineKinesisVideoStreamPoolsCommand = ListMediaPipelineKinesisVideoStreamPoolsCommand;
|
|
2463
|
+
exports.ListMediaPipelineKinesisVideoStreamPoolsRequest$ = ListMediaPipelineKinesisVideoStreamPoolsRequest$;
|
|
2464
|
+
exports.ListMediaPipelineKinesisVideoStreamPoolsResponse$ = ListMediaPipelineKinesisVideoStreamPoolsResponse$;
|
|
2465
|
+
exports.ListMediaPipelines$ = ListMediaPipelines$;
|
|
809
2466
|
exports.ListMediaPipelinesCommand = ListMediaPipelinesCommand;
|
|
2467
|
+
exports.ListMediaPipelinesRequest$ = ListMediaPipelinesRequest$;
|
|
2468
|
+
exports.ListMediaPipelinesResponse$ = ListMediaPipelinesResponse$;
|
|
2469
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
810
2470
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2471
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2472
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
811
2473
|
exports.LiveConnectorMuxType = LiveConnectorMuxType;
|
|
2474
|
+
exports.LiveConnectorRTMPConfiguration$ = LiveConnectorRTMPConfiguration$;
|
|
2475
|
+
exports.LiveConnectorSinkConfiguration$ = LiveConnectorSinkConfiguration$;
|
|
812
2476
|
exports.LiveConnectorSinkType = LiveConnectorSinkType;
|
|
2477
|
+
exports.LiveConnectorSourceConfiguration$ = LiveConnectorSourceConfiguration$;
|
|
813
2478
|
exports.LiveConnectorSourceType = LiveConnectorSourceType;
|
|
2479
|
+
exports.MediaCapturePipeline$ = MediaCapturePipeline$;
|
|
2480
|
+
exports.MediaCapturePipelineSourceConfiguration$ = MediaCapturePipelineSourceConfiguration$;
|
|
2481
|
+
exports.MediaCapturePipelineSummary$ = MediaCapturePipelineSummary$;
|
|
2482
|
+
exports.MediaConcatenationPipeline$ = MediaConcatenationPipeline$;
|
|
814
2483
|
exports.MediaEncoding = MediaEncoding;
|
|
2484
|
+
exports.MediaInsightsPipeline$ = MediaInsightsPipeline$;
|
|
2485
|
+
exports.MediaInsightsPipelineConfiguration$ = MediaInsightsPipelineConfiguration$;
|
|
2486
|
+
exports.MediaInsightsPipelineConfigurationElement$ = MediaInsightsPipelineConfigurationElement$;
|
|
815
2487
|
exports.MediaInsightsPipelineConfigurationElementType = MediaInsightsPipelineConfigurationElementType;
|
|
2488
|
+
exports.MediaInsightsPipelineConfigurationSummary$ = MediaInsightsPipelineConfigurationSummary$;
|
|
2489
|
+
exports.MediaInsightsPipelineElementStatus$ = MediaInsightsPipelineElementStatus$;
|
|
2490
|
+
exports.MediaLiveConnectorPipeline$ = MediaLiveConnectorPipeline$;
|
|
2491
|
+
exports.MediaPipeline$ = MediaPipeline$;
|
|
816
2492
|
exports.MediaPipelineElementStatus = MediaPipelineElementStatus;
|
|
817
2493
|
exports.MediaPipelineSinkType = MediaPipelineSinkType;
|
|
818
2494
|
exports.MediaPipelineSourceType = MediaPipelineSourceType;
|
|
819
2495
|
exports.MediaPipelineStatus = MediaPipelineStatus;
|
|
820
2496
|
exports.MediaPipelineStatusUpdate = MediaPipelineStatusUpdate;
|
|
2497
|
+
exports.MediaPipelineSummary$ = MediaPipelineSummary$;
|
|
821
2498
|
exports.MediaPipelineTaskStatus = MediaPipelineTaskStatus;
|
|
2499
|
+
exports.MediaStreamPipeline$ = MediaStreamPipeline$;
|
|
822
2500
|
exports.MediaStreamPipelineSinkType = MediaStreamPipelineSinkType;
|
|
2501
|
+
exports.MediaStreamSink$ = MediaStreamSink$;
|
|
2502
|
+
exports.MediaStreamSource$ = MediaStreamSource$;
|
|
823
2503
|
exports.MediaStreamType = MediaStreamType;
|
|
2504
|
+
exports.MeetingEventsConcatenationConfiguration$ = MeetingEventsConcatenationConfiguration$;
|
|
2505
|
+
exports.NotFoundException = NotFoundException;
|
|
2506
|
+
exports.NotFoundException$ = NotFoundException$;
|
|
824
2507
|
exports.PartialResultsStability = PartialResultsStability;
|
|
825
2508
|
exports.ParticipantRole = ParticipantRole;
|
|
2509
|
+
exports.PostCallAnalyticsSettings$ = PostCallAnalyticsSettings$;
|
|
2510
|
+
exports.PresenterOnlyConfiguration$ = PresenterOnlyConfiguration$;
|
|
826
2511
|
exports.PresenterPosition = PresenterPosition;
|
|
2512
|
+
exports.RealTimeAlertConfiguration$ = RealTimeAlertConfiguration$;
|
|
2513
|
+
exports.RealTimeAlertRule$ = RealTimeAlertRule$;
|
|
827
2514
|
exports.RealTimeAlertRuleType = RealTimeAlertRuleType;
|
|
828
2515
|
exports.RecordingFileFormat = RecordingFileFormat;
|
|
2516
|
+
exports.RecordingStreamConfiguration$ = RecordingStreamConfiguration$;
|
|
829
2517
|
exports.ResolutionOption = ResolutionOption;
|
|
2518
|
+
exports.ResourceLimitExceededException = ResourceLimitExceededException;
|
|
2519
|
+
exports.ResourceLimitExceededException$ = ResourceLimitExceededException$;
|
|
2520
|
+
exports.S3BucketSinkConfiguration$ = S3BucketSinkConfiguration$;
|
|
2521
|
+
exports.S3RecordingSinkConfiguration$ = S3RecordingSinkConfiguration$;
|
|
2522
|
+
exports.S3RecordingSinkRuntimeConfiguration$ = S3RecordingSinkRuntimeConfiguration$;
|
|
2523
|
+
exports.SelectedVideoStreams$ = SelectedVideoStreams$;
|
|
2524
|
+
exports.SentimentConfiguration$ = SentimentConfiguration$;
|
|
830
2525
|
exports.SentimentType = SentimentType;
|
|
2526
|
+
exports.ServiceFailureException = ServiceFailureException;
|
|
2527
|
+
exports.ServiceFailureException$ = ServiceFailureException$;
|
|
2528
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2529
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
2530
|
+
exports.SnsTopicSinkConfiguration$ = SnsTopicSinkConfiguration$;
|
|
2531
|
+
exports.SourceConfiguration$ = SourceConfiguration$;
|
|
2532
|
+
exports.SpeakerSearchTask$ = SpeakerSearchTask$;
|
|
2533
|
+
exports.SqsQueueSinkConfiguration$ = SqsQueueSinkConfiguration$;
|
|
2534
|
+
exports.SseAwsKeyManagementParams$ = SseAwsKeyManagementParams$;
|
|
2535
|
+
exports.StartSpeakerSearchTask$ = StartSpeakerSearchTask$;
|
|
831
2536
|
exports.StartSpeakerSearchTaskCommand = StartSpeakerSearchTaskCommand;
|
|
2537
|
+
exports.StartSpeakerSearchTaskRequest$ = StartSpeakerSearchTaskRequest$;
|
|
2538
|
+
exports.StartSpeakerSearchTaskResponse$ = StartSpeakerSearchTaskResponse$;
|
|
2539
|
+
exports.StartVoiceToneAnalysisTask$ = StartVoiceToneAnalysisTask$;
|
|
832
2540
|
exports.StartVoiceToneAnalysisTaskCommand = StartVoiceToneAnalysisTaskCommand;
|
|
2541
|
+
exports.StartVoiceToneAnalysisTaskRequest$ = StartVoiceToneAnalysisTaskRequest$;
|
|
2542
|
+
exports.StartVoiceToneAnalysisTaskResponse$ = StartVoiceToneAnalysisTaskResponse$;
|
|
2543
|
+
exports.StopSpeakerSearchTask$ = StopSpeakerSearchTask$;
|
|
833
2544
|
exports.StopSpeakerSearchTaskCommand = StopSpeakerSearchTaskCommand;
|
|
2545
|
+
exports.StopSpeakerSearchTaskRequest$ = StopSpeakerSearchTaskRequest$;
|
|
2546
|
+
exports.StopVoiceToneAnalysisTask$ = StopVoiceToneAnalysisTask$;
|
|
834
2547
|
exports.StopVoiceToneAnalysisTaskCommand = StopVoiceToneAnalysisTaskCommand;
|
|
2548
|
+
exports.StopVoiceToneAnalysisTaskRequest$ = StopVoiceToneAnalysisTaskRequest$;
|
|
2549
|
+
exports.StreamChannelDefinition$ = StreamChannelDefinition$;
|
|
2550
|
+
exports.StreamConfiguration$ = StreamConfiguration$;
|
|
2551
|
+
exports.Tag$ = Tag$;
|
|
2552
|
+
exports.TagResource$ = TagResource$;
|
|
835
2553
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2554
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2555
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2556
|
+
exports.ThrottledClientException = ThrottledClientException;
|
|
2557
|
+
exports.ThrottledClientException$ = ThrottledClientException$;
|
|
836
2558
|
exports.TileOrder = TileOrder;
|
|
2559
|
+
exports.TimestampRange$ = TimestampRange$;
|
|
2560
|
+
exports.TranscriptionMessagesConcatenationConfiguration$ = TranscriptionMessagesConcatenationConfiguration$;
|
|
2561
|
+
exports.UnauthorizedClientException = UnauthorizedClientException;
|
|
2562
|
+
exports.UnauthorizedClientException$ = UnauthorizedClientException$;
|
|
2563
|
+
exports.UntagResource$ = UntagResource$;
|
|
837
2564
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2565
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2566
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2567
|
+
exports.UpdateMediaInsightsPipelineConfiguration$ = UpdateMediaInsightsPipelineConfiguration$;
|
|
838
2568
|
exports.UpdateMediaInsightsPipelineConfigurationCommand = UpdateMediaInsightsPipelineConfigurationCommand;
|
|
2569
|
+
exports.UpdateMediaInsightsPipelineConfigurationRequest$ = UpdateMediaInsightsPipelineConfigurationRequest$;
|
|
2570
|
+
exports.UpdateMediaInsightsPipelineConfigurationResponse$ = UpdateMediaInsightsPipelineConfigurationResponse$;
|
|
2571
|
+
exports.UpdateMediaInsightsPipelineStatus$ = UpdateMediaInsightsPipelineStatus$;
|
|
839
2572
|
exports.UpdateMediaInsightsPipelineStatusCommand = UpdateMediaInsightsPipelineStatusCommand;
|
|
2573
|
+
exports.UpdateMediaInsightsPipelineStatusRequest$ = UpdateMediaInsightsPipelineStatusRequest$;
|
|
2574
|
+
exports.UpdateMediaPipelineKinesisVideoStreamPool$ = UpdateMediaPipelineKinesisVideoStreamPool$;
|
|
840
2575
|
exports.UpdateMediaPipelineKinesisVideoStreamPoolCommand = UpdateMediaPipelineKinesisVideoStreamPoolCommand;
|
|
2576
|
+
exports.UpdateMediaPipelineKinesisVideoStreamPoolRequest$ = UpdateMediaPipelineKinesisVideoStreamPoolRequest$;
|
|
2577
|
+
exports.UpdateMediaPipelineKinesisVideoStreamPoolResponse$ = UpdateMediaPipelineKinesisVideoStreamPoolResponse$;
|
|
2578
|
+
exports.VerticalLayoutConfiguration$ = VerticalLayoutConfiguration$;
|
|
841
2579
|
exports.VerticalTilePosition = VerticalTilePosition;
|
|
2580
|
+
exports.VideoArtifactsConfiguration$ = VideoArtifactsConfiguration$;
|
|
2581
|
+
exports.VideoAttribute$ = VideoAttribute$;
|
|
2582
|
+
exports.VideoConcatenationConfiguration$ = VideoConcatenationConfiguration$;
|
|
842
2583
|
exports.VideoMuxType = VideoMuxType;
|
|
843
2584
|
exports.VocabularyFilterMethod = VocabularyFilterMethod;
|
|
844
2585
|
exports.VoiceAnalyticsConfigurationStatus = VoiceAnalyticsConfigurationStatus;
|
|
845
2586
|
exports.VoiceAnalyticsLanguageCode = VoiceAnalyticsLanguageCode;
|
|
2587
|
+
exports.VoiceAnalyticsProcessorConfiguration$ = VoiceAnalyticsProcessorConfiguration$;
|
|
2588
|
+
exports.VoiceEnhancementSinkConfiguration$ = VoiceEnhancementSinkConfiguration$;
|
|
2589
|
+
exports.VoiceToneAnalysisTask$ = VoiceToneAnalysisTask$;
|
|
2590
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
846
2591
|
exports.paginateListMediaCapturePipelines = paginateListMediaCapturePipelines;
|
|
847
2592
|
exports.paginateListMediaInsightsPipelineConfigurations = paginateListMediaInsightsPipelineConfigurations;
|
|
848
2593
|
exports.paginateListMediaPipelineKinesisVideoStreamPools = paginateListMediaPipelineKinesisVideoStreamPools;
|