@aws-sdk/client-connect 3.439.0 → 3.442.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/README.md +8 -0
- package/dist-cjs/Connect.js +2 -0
- package/dist-cjs/commands/BatchGetFlowAssociationCommand.js +51 -0
- package/dist-cjs/commands/DescribeViewCommand.js +2 -2
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +6 -7
- package/dist-cjs/models/models_1.js +7 -14
- package/dist-cjs/models/models_2.js +14 -1
- package/dist-cjs/protocols/Aws_restJson1.js +464 -34
- package/dist-es/Connect.js +2 -0
- package/dist-es/commands/BatchGetFlowAssociationCommand.js +47 -0
- package/dist-es/commands/DescribeViewCommand.js +1 -1
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +5 -13
- package/dist-es/models/models_2.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +453 -25
- package/dist-types/Connect.d.ts +7 -0
- package/dist-types/ConnectClient.d.ts +3 -2
- package/dist-types/commands/BatchGetFlowAssociationCommand.d.ts +101 -0
- package/dist-types/commands/CreateViewCommand.d.ts +5 -7
- package/dist-types/commands/CreateViewVersionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteViewCommand.d.ts +1 -2
- package/dist-types/commands/DescribeAgentStatusCommand.d.ts +2 -0
- package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +2 -0
- package/dist-types/commands/DescribePromptCommand.d.ts +2 -0
- package/dist-types/commands/DescribeQueueCommand.d.ts +2 -0
- package/dist-types/commands/DescribeQuickConnectCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRoutingProfileCommand.d.ts +3 -0
- package/dist-types/commands/DescribeSecurityProfileCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +2 -0
- package/dist-types/commands/DescribeUserHierarchyGroupCommand.d.ts +12 -0
- package/dist-types/commands/DescribeUserHierarchyStructureCommand.d.ts +12 -1
- package/dist-types/commands/DescribeViewCommand.d.ts +5 -5
- package/dist-types/commands/GetPromptFileCommand.d.ts +2 -0
- package/dist-types/commands/ListAgentStatusesCommand.d.ts +2 -0
- package/dist-types/commands/ListHoursOfOperationsCommand.d.ts +2 -0
- package/dist-types/commands/ListPromptsCommand.d.ts +2 -0
- package/dist-types/commands/ListQueueQuickConnectsCommand.d.ts +4 -0
- package/dist-types/commands/ListQueuesCommand.d.ts +2 -0
- package/dist-types/commands/ListQuickConnectsCommand.d.ts +2 -0
- package/dist-types/commands/ListRoutingProfileQueuesCommand.d.ts +2 -0
- package/dist-types/commands/ListRoutingProfilesCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfileApplicationsCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfilePermissionsCommand.d.ts +2 -0
- package/dist-types/commands/ListSecurityProfilesCommand.d.ts +2 -0
- package/dist-types/commands/ListUserHierarchyGroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListUsersCommand.d.ts +2 -0
- package/dist-types/commands/ListViewVersionsCommand.d.ts +1 -2
- package/dist-types/commands/ReplicateInstanceCommand.d.ts +3 -1
- package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +2 -0
- package/dist-types/commands/SearchPromptsCommand.d.ts +2 -0
- package/dist-types/commands/SearchQueuesCommand.d.ts +2 -0
- package/dist-types/commands/SearchQuickConnectsCommand.d.ts +2 -0
- package/dist-types/commands/SearchRoutingProfilesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateViewContentCommand.d.ts +4 -6
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +212 -102
- package/dist-types/models/models_1.d.ts +229 -111
- package/dist-types/models/models_2.d.ts +106 -11
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Connect.d.ts +17 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/BatchGetFlowAssociationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeUserHierarchyStructureCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeViewCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -20
- package/dist-types/ts3.4/models/models_1.d.ts +46 -40
- package/dist-types/ts3.4/models/models_2.d.ts +42 -1
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -308,6 +308,14 @@ AssociateTrafficDistributionGroupUser
|
|
|
308
308
|
|
|
309
309
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/classes/associatetrafficdistributiongroupusercommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/interfaces/associatetrafficdistributiongroupusercommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/interfaces/associatetrafficdistributiongroupusercommandoutput.html)
|
|
310
310
|
|
|
311
|
+
</details>
|
|
312
|
+
<details>
|
|
313
|
+
<summary>
|
|
314
|
+
BatchGetFlowAssociation
|
|
315
|
+
</summary>
|
|
316
|
+
|
|
317
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/classes/batchgetflowassociationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/interfaces/batchgetflowassociationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-connect/interfaces/batchgetflowassociationcommandoutput.html)
|
|
318
|
+
|
|
311
319
|
</details>
|
|
312
320
|
<details>
|
|
313
321
|
<summary>
|
package/dist-cjs/Connect.js
CHANGED
|
@@ -14,6 +14,7 @@ const AssociateQueueQuickConnectsCommand_1 = require("./commands/AssociateQueueQ
|
|
|
14
14
|
const AssociateRoutingProfileQueuesCommand_1 = require("./commands/AssociateRoutingProfileQueuesCommand");
|
|
15
15
|
const AssociateSecurityKeyCommand_1 = require("./commands/AssociateSecurityKeyCommand");
|
|
16
16
|
const AssociateTrafficDistributionGroupUserCommand_1 = require("./commands/AssociateTrafficDistributionGroupUserCommand");
|
|
17
|
+
const BatchGetFlowAssociationCommand_1 = require("./commands/BatchGetFlowAssociationCommand");
|
|
17
18
|
const ClaimPhoneNumberCommand_1 = require("./commands/ClaimPhoneNumberCommand");
|
|
18
19
|
const CreateAgentStatusCommand_1 = require("./commands/CreateAgentStatusCommand");
|
|
19
20
|
const CreateContactFlowCommand_1 = require("./commands/CreateContactFlowCommand");
|
|
@@ -227,6 +228,7 @@ const commands = {
|
|
|
227
228
|
AssociateRoutingProfileQueuesCommand: AssociateRoutingProfileQueuesCommand_1.AssociateRoutingProfileQueuesCommand,
|
|
228
229
|
AssociateSecurityKeyCommand: AssociateSecurityKeyCommand_1.AssociateSecurityKeyCommand,
|
|
229
230
|
AssociateTrafficDistributionGroupUserCommand: AssociateTrafficDistributionGroupUserCommand_1.AssociateTrafficDistributionGroupUserCommand,
|
|
231
|
+
BatchGetFlowAssociationCommand: BatchGetFlowAssociationCommand_1.BatchGetFlowAssociationCommand,
|
|
230
232
|
ClaimPhoneNumberCommand: ClaimPhoneNumberCommand_1.ClaimPhoneNumberCommand,
|
|
231
233
|
CreateAgentStatusCommand: CreateAgentStatusCommand_1.CreateAgentStatusCommand,
|
|
232
234
|
CreateContactFlowCommand: CreateContactFlowCommand_1.CreateContactFlowCommand,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BatchGetFlowAssociationCommand = exports.$Command = void 0;
|
|
4
|
+
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
+
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
+
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
+
const types_1 = require("@smithy/types");
|
|
9
|
+
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
+
class BatchGetFlowAssociationCommand extends smithy_client_1.Command {
|
|
11
|
+
static getEndpointParameterInstructions() {
|
|
12
|
+
return {
|
|
13
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
14
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
15
|
+
Region: { type: "builtInParams", name: "region" },
|
|
16
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
constructor(input) {
|
|
20
|
+
super();
|
|
21
|
+
this.input = input;
|
|
22
|
+
}
|
|
23
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
24
|
+
this.middlewareStack.use((0, middleware_serde_1.getSerdePlugin)(configuration, this.serialize, this.deserialize));
|
|
25
|
+
this.middlewareStack.use((0, middleware_endpoint_1.getEndpointPlugin)(configuration, BatchGetFlowAssociationCommand.getEndpointParameterInstructions()));
|
|
26
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
27
|
+
const { logger } = configuration;
|
|
28
|
+
const clientName = "ConnectClient";
|
|
29
|
+
const commandName = "BatchGetFlowAssociationCommand";
|
|
30
|
+
const handlerExecutionContext = {
|
|
31
|
+
logger,
|
|
32
|
+
clientName,
|
|
33
|
+
commandName,
|
|
34
|
+
inputFilterSensitiveLog: (_) => _,
|
|
35
|
+
outputFilterSensitiveLog: (_) => _,
|
|
36
|
+
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
37
|
+
service: "AmazonConnectService",
|
|
38
|
+
operation: "BatchGetFlowAssociation",
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const { requestHandler } = configuration;
|
|
42
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
43
|
+
}
|
|
44
|
+
serialize(input, context) {
|
|
45
|
+
return (0, Aws_restJson1_1.se_BatchGetFlowAssociationCommand)(input, context);
|
|
46
|
+
}
|
|
47
|
+
deserialize(output, context) {
|
|
48
|
+
return (0, Aws_restJson1_1.de_BatchGetFlowAssociationCommand)(output, context);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.BatchGetFlowAssociationCommand = BatchGetFlowAssociationCommand;
|
|
@@ -6,7 +6,7 @@ const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
8
|
const types_1 = require("@smithy/types");
|
|
9
|
-
const
|
|
9
|
+
const models_1_1 = require("../models/models_1");
|
|
10
10
|
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
11
11
|
class DescribeViewCommand extends smithy_client_1.Command {
|
|
12
12
|
static getEndpointParameterInstructions() {
|
|
@@ -33,7 +33,7 @@ class DescribeViewCommand extends smithy_client_1.Command {
|
|
|
33
33
|
clientName,
|
|
34
34
|
commandName,
|
|
35
35
|
inputFilterSensitiveLog: (_) => _,
|
|
36
|
-
outputFilterSensitiveLog:
|
|
36
|
+
outputFilterSensitiveLog: models_1_1.DescribeViewResponseFilterSensitiveLog,
|
|
37
37
|
[types_1.SMITHY_CONTEXT_KEY]: {
|
|
38
38
|
service: "AmazonConnectService",
|
|
39
39
|
operation: "DescribeView",
|
|
@@ -13,6 +13,7 @@ tslib_1.__exportStar(require("./AssociateQueueQuickConnectsCommand"), exports);
|
|
|
13
13
|
tslib_1.__exportStar(require("./AssociateRoutingProfileQueuesCommand"), exports);
|
|
14
14
|
tslib_1.__exportStar(require("./AssociateSecurityKeyCommand"), exports);
|
|
15
15
|
tslib_1.__exportStar(require("./AssociateTrafficDistributionGroupUserCommand"), exports);
|
|
16
|
+
tslib_1.__exportStar(require("./BatchGetFlowAssociationCommand"), exports);
|
|
16
17
|
tslib_1.__exportStar(require("./ClaimPhoneNumberCommand"), exports);
|
|
17
18
|
tslib_1.__exportStar(require("./CreateAgentStatusCommand"), exports);
|
|
18
19
|
tslib_1.__exportStar(require("./CreateContactFlowCommand"), exports);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
3
|
+
exports.TaskTemplateStatus = exports.TaskTemplateFieldType = exports.EventSourceName = exports.RulePublishStatus = exports.ReferenceType = exports.NotificationDeliveryType = exports.NotificationContentType = exports.BehaviorType = exports.QuickConnectType = exports.ParticipantRole = exports.SourceType = exports.IntegrationType = exports.DirectoryType = exports.HoursOfOperationDays = exports.EvaluationFormScoringStatus = exports.EvaluationFormScoringMode = exports.EvaluationFormQuestionTypeProperties = exports.EvaluationFormSingleSelectQuestionDisplayMode = exports.EvaluationFormSingleSelectQuestionAutomationOption = exports.SingleSelectQuestionRuleCategoryAutomationCondition = exports.EvaluationFormNumericQuestionAutomation = exports.NumericQuestionPropertyAutomationLabel = exports.EvaluationFormQuestionType = exports.InvalidContactFlowModuleException = exports.InvalidContactFlowException = exports.ContactFlowType = exports.DuplicateResourceException = exports.IdempotencyException = exports.ListFlowAssociationResourceType = exports.StorageType = exports.EncryptionType = exports.InstanceStorageResourceType = exports.VocabularyLanguageCode = exports.LimitExceededException = exports.ServiceQuotaExceededException = exports.InvalidRequestException = exports.MonitorCapability = exports.AgentStatusType = exports.AgentStatusState = exports.ContactInitiationMethod = exports.Channel = exports.ContactState = exports.AgentAvailabilityTimer = exports.ThrottlingException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.InvalidParameterException = exports.InternalServiceException = exports.ActionType = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.DescribeInstanceResponseFilterSensitiveLog = exports.InstanceFilterSensitiveLog = exports.CreateViewVersionResponseFilterSensitiveLog = exports.CreateViewResponseFilterSensitiveLog = exports.ViewFilterSensitiveLog = exports.ViewContentFilterSensitiveLog = exports.CreateViewRequestFilterSensitiveLog = exports.ViewInputContentFilterSensitiveLog = exports.CreateInstanceRequestFilterSensitiveLog = exports.TrafficDistributionGroupStatus = exports.QueueStatus = exports.PhoneNumberType = exports.PhoneNumberWorkflowStatus = exports.PhoneNumberCountryCode = exports.InstanceAttributeType = exports.InstanceStatus = exports.EvaluationFormVersionStatus = exports.ContactFlowModuleStatus = exports.ContactFlowModuleState = exports.ContactFlowState = exports.ContactFlowNotPublishedException = exports.EvaluationStatus = exports.EvaluationAnswerData = exports.VocabularyState = exports.TooManyRequestsException = exports.ResourceInUseException = exports.ResourceType = exports.ViewType = exports.ViewStatus = exports.PhoneType = exports.UseCaseType = exports.ResourceNotReadyException = exports.PropertyValidationException = exports.PropertyValidationExceptionReason = void 0;
|
|
5
5
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
6
6
|
const ConnectServiceException_1 = require("./ConnectServiceException");
|
|
7
7
|
class AccessDeniedException extends ConnectServiceException_1.ConnectServiceException {
|
|
@@ -226,6 +226,10 @@ exports.StorageType = {
|
|
|
226
226
|
KINESIS_VIDEO_STREAM: "KINESIS_VIDEO_STREAM",
|
|
227
227
|
S3: "S3",
|
|
228
228
|
};
|
|
229
|
+
exports.ListFlowAssociationResourceType = {
|
|
230
|
+
SMS_PHONE_NUMBER: "SMS_PHONE_NUMBER",
|
|
231
|
+
VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER",
|
|
232
|
+
};
|
|
229
233
|
class IdempotencyException extends ConnectServiceException_1.ConnectServiceException {
|
|
230
234
|
constructor(opts) {
|
|
231
235
|
super({
|
|
@@ -911,8 +915,3 @@ const DescribeInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
|
911
915
|
...(obj.Instance && { Instance: (0, exports.InstanceFilterSensitiveLog)(obj.Instance) }),
|
|
912
916
|
});
|
|
913
917
|
exports.DescribeInstanceResponseFilterSensitiveLog = DescribeInstanceResponseFilterSensitiveLog;
|
|
914
|
-
const DescribeViewResponseFilterSensitiveLog = (obj) => ({
|
|
915
|
-
...obj,
|
|
916
|
-
...(obj.View && { View: (0, exports.ViewFilterSensitiveLog)(obj.View) }),
|
|
917
|
-
});
|
|
918
|
-
exports.DescribeViewResponseFilterSensitiveLog = DescribeViewResponseFilterSensitiveLog;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ReplicateInstanceRequestFilterSensitiveLog = exports.ListViewVersionsResponseFilterSensitiveLog = exports.ViewVersionSummaryFilterSensitiveLog = exports.ListViewsResponseFilterSensitiveLog = exports.ViewSummaryFilterSensitiveLog = exports.ListInstancesResponseFilterSensitiveLog = exports.InstanceSummaryFilterSensitiveLog = exports.GetFederationTokenResponseFilterSensitiveLog = exports.CredentialsFilterSensitiveLog = exports.
|
|
3
|
+
exports.ReplicateInstanceRequestFilterSensitiveLog = exports.ListViewVersionsResponseFilterSensitiveLog = exports.ViewVersionSummaryFilterSensitiveLog = exports.ListViewsResponseFilterSensitiveLog = exports.ViewSummaryFilterSensitiveLog = exports.ListInstancesResponseFilterSensitiveLog = exports.InstanceSummaryFilterSensitiveLog = exports.GetFederationTokenResponseFilterSensitiveLog = exports.CredentialsFilterSensitiveLog = exports.DescribeViewResponseFilterSensitiveLog = exports.ParticipantTimerType = exports.TimerEligibleParticipantRoles = exports.ContactNotFoundException = exports.TrafficType = exports.OutboundContactNotPermittedException = exports.DestinationNotAllowedException = exports.VoiceRecordingTrack = exports.RehydrationType = exports.HierarchyGroupMatchType = exports.MaximumResultReturnedException = exports.SearchableQueueType = exports.StringComparisonType = exports.QueueType = exports.ReferenceSummary = exports.ReferenceStatus = exports.LexVersion = exports.IntervalPeriod = exports.Comparison = exports.Statistic = exports.HistoricalMetricName = exports.UserNotFoundException = exports.SortOrder = exports.Grouping = exports.Unit = exports.CurrentMetricName = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const ConnectServiceException_1 = require("./ConnectServiceException");
|
|
6
|
+
const models_0_1 = require("./models_0");
|
|
6
7
|
exports.CurrentMetricName = {
|
|
7
8
|
AGENTS_AFTER_CONTACT_WORK: "AGENTS_AFTER_CONTACT_WORK",
|
|
8
9
|
AGENTS_AVAILABLE: "AGENTS_AVAILABLE",
|
|
@@ -208,19 +209,11 @@ exports.ParticipantTimerType = {
|
|
|
208
209
|
DISCONNECT_NONCUSTOMER: "DISCONNECT_NONCUSTOMER",
|
|
209
210
|
IDLE: "IDLE",
|
|
210
211
|
};
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
ParticipantTimerValue.visit = (value, visitor) => {
|
|
217
|
-
if (value.ParticipantTimerAction !== undefined)
|
|
218
|
-
return visitor.ParticipantTimerAction(value.ParticipantTimerAction);
|
|
219
|
-
if (value.ParticipantTimerDurationInMinutes !== undefined)
|
|
220
|
-
return visitor.ParticipantTimerDurationInMinutes(value.ParticipantTimerDurationInMinutes);
|
|
221
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
222
|
-
};
|
|
223
|
-
})(ParticipantTimerValue = exports.ParticipantTimerValue || (exports.ParticipantTimerValue = {}));
|
|
212
|
+
const DescribeViewResponseFilterSensitiveLog = (obj) => ({
|
|
213
|
+
...obj,
|
|
214
|
+
...(obj.View && { View: (0, models_0_1.ViewFilterSensitiveLog)(obj.View) }),
|
|
215
|
+
});
|
|
216
|
+
exports.DescribeViewResponseFilterSensitiveLog = DescribeViewResponseFilterSensitiveLog;
|
|
224
217
|
const CredentialsFilterSensitiveLog = (obj) => ({
|
|
225
218
|
...obj,
|
|
226
219
|
...(obj.AccessToken && { AccessToken: smithy_client_1.SENSITIVE_STRING }),
|
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateViewMetadataRequestFilterSensitiveLog = exports.UpdateViewContentResponseFilterSensitiveLog = exports.UpdateViewContentRequestFilterSensitiveLog = exports.EvaluationFormItem = exports.UpdateParticipantRoleConfigChannelInfo = void 0;
|
|
3
|
+
exports.UpdateViewMetadataRequestFilterSensitiveLog = exports.UpdateViewContentResponseFilterSensitiveLog = exports.UpdateViewContentRequestFilterSensitiveLog = exports.EvaluationFormItem = exports.UpdateParticipantRoleConfigChannelInfo = exports.ParticipantTimerValue = exports.ParticipantTimerAction = void 0;
|
|
4
4
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
5
|
const models_0_1 = require("./models_0");
|
|
6
|
+
exports.ParticipantTimerAction = {
|
|
7
|
+
Unset: "Unset",
|
|
8
|
+
};
|
|
9
|
+
var ParticipantTimerValue;
|
|
10
|
+
(function (ParticipantTimerValue) {
|
|
11
|
+
ParticipantTimerValue.visit = (value, visitor) => {
|
|
12
|
+
if (value.ParticipantTimerAction !== undefined)
|
|
13
|
+
return visitor.ParticipantTimerAction(value.ParticipantTimerAction);
|
|
14
|
+
if (value.ParticipantTimerDurationInMinutes !== undefined)
|
|
15
|
+
return visitor.ParticipantTimerDurationInMinutes(value.ParticipantTimerDurationInMinutes);
|
|
16
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
17
|
+
};
|
|
18
|
+
})(ParticipantTimerValue = exports.ParticipantTimerValue || (exports.ParticipantTimerValue = {}));
|
|
6
19
|
var UpdateParticipantRoleConfigChannelInfo;
|
|
7
20
|
(function (UpdateParticipantRoleConfigChannelInfo) {
|
|
8
21
|
UpdateParticipantRoleConfigChannelInfo.visit = (value, visitor) => {
|