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