@aws-sdk/client-connect 3.968.0 → 3.970.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.
Files changed (69) hide show
  1. package/README.md +21 -0
  2. package/dist-cjs/index.js +814 -636
  3. package/dist-es/Connect.js +6 -0
  4. package/dist-es/commands/AssociateHoursOfOperationsCommand.js +16 -0
  5. package/dist-es/commands/DisassociateHoursOfOperationsCommand.js +16 -0
  6. package/dist-es/commands/ListChildHoursOfOperationsCommand.js +16 -0
  7. package/dist-es/commands/index.js +3 -0
  8. package/dist-es/models/enums.js +14 -0
  9. package/dist-es/pagination/ListChildHoursOfOperationsPaginator.js +4 -0
  10. package/dist-es/pagination/index.js +1 -0
  11. package/dist-es/schemas/schemas_0.js +743 -636
  12. package/dist-types/Connect.d.ts +21 -0
  13. package/dist-types/ConnectClient.d.ts +5 -2
  14. package/dist-types/commands/AssociateHoursOfOperationsCommand.d.ts +99 -0
  15. package/dist-types/commands/CreateHoursOfOperationCommand.d.ts +8 -0
  16. package/dist-types/commands/CreateHoursOfOperationOverrideCommand.d.ts +16 -0
  17. package/dist-types/commands/DeleteContactFlowCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeHoursOfOperationCommand.d.ts +7 -0
  20. package/dist-types/commands/DescribeHoursOfOperationOverrideCommand.d.ts +16 -0
  21. package/dist-types/commands/DisassociateHoursOfOperationsCommand.d.ts +94 -0
  22. package/dist-types/commands/GetEffectiveHoursOfOperationsCommand.d.ts +19 -0
  23. package/dist-types/commands/ListChildHoursOfOperationsCommand.d.ts +103 -0
  24. package/dist-types/commands/ListContactEvaluationsCommand.d.ts +2 -1
  25. package/dist-types/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  26. package/dist-types/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListContactFlowModulesCommand.d.ts +1 -1
  28. package/dist-types/commands/ListHoursOfOperationOverridesCommand.d.ts +16 -0
  29. package/dist-types/commands/SearchHoursOfOperationOverridesCommand.d.ts +16 -0
  30. package/dist-types/commands/SearchHoursOfOperationsCommand.d.ts +7 -0
  31. package/dist-types/commands/StartContactRecordingCommand.d.ts +1 -1
  32. package/dist-types/commands/StartContactStreamingCommand.d.ts +1 -1
  33. package/dist-types/commands/StartEmailContactCommand.d.ts +1 -2
  34. package/dist-types/commands/StartOutboundChatContactCommand.d.ts +1 -2
  35. package/dist-types/commands/UpdateHoursOfOperationOverrideCommand.d.ts +16 -0
  36. package/dist-types/commands/index.d.ts +3 -0
  37. package/dist-types/models/enums.d.ts +38 -0
  38. package/dist-types/models/models_0.d.ts +104 -41
  39. package/dist-types/models/models_1.d.ts +200 -226
  40. package/dist-types/models/models_2.d.ts +226 -175
  41. package/dist-types/models/models_3.d.ts +188 -3
  42. package/dist-types/pagination/ListChildHoursOfOperationsPaginator.d.ts +7 -0
  43. package/dist-types/pagination/index.d.ts +1 -0
  44. package/dist-types/schemas/schemas_0.d.ts +13 -0
  45. package/dist-types/ts3.4/Connect.d.ts +51 -0
  46. package/dist-types/ts3.4/ConnectClient.d.ts +18 -0
  47. package/dist-types/ts3.4/commands/AssociateHoursOfOperationsCommand.d.ts +47 -0
  48. package/dist-types/ts3.4/commands/DeleteContactFlowCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DisassociateHoursOfOperationsCommand.d.ts +47 -0
  51. package/dist-types/ts3.4/commands/ListChildHoursOfOperationsCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/ListContactEvaluationsCommand.d.ts +2 -4
  53. package/dist-types/ts3.4/commands/ListContactFlowModuleAliasesCommand.d.ts +1 -1
  54. package/dist-types/ts3.4/commands/ListContactFlowModuleVersionsCommand.d.ts +1 -1
  55. package/dist-types/ts3.4/commands/ListContactFlowModulesCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/StartContactRecordingCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/StartContactStreamingCommand.d.ts +1 -1
  58. package/dist-types/ts3.4/commands/StartEmailContactCommand.d.ts +4 -2
  59. package/dist-types/ts3.4/commands/StartOutboundChatContactCommand.d.ts +4 -2
  60. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  61. package/dist-types/ts3.4/models/enums.d.ts +19 -0
  62. package/dist-types/ts3.4/models/models_0.d.ts +23 -10
  63. package/dist-types/ts3.4/models/models_1.d.ts +49 -57
  64. package/dist-types/ts3.4/models/models_2.d.ts +59 -42
  65. package/dist-types/ts3.4/models/models_3.d.ts +49 -4
  66. package/dist-types/ts3.4/pagination/ListChildHoursOfOperationsPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  68. package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
  69. package/package.json +33 -33
@@ -1,5 +1,45 @@
1
- import { AgentAvailabilityTimer, AgentStatusType, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactMetricName, ContactParticipantRole, ContactState, CurrentMetricName, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DirectoryType, EndpointType, EntityType, EvaluationQuestionAnswerAnalysisType, EvaluationStatus, EvaluationSuggestedAnswerStatus, EvaluationTranscriptType, EvaluationType, FileStatusType, FileUseCaseType, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceAttributeType, InstanceReplicationStatus, InstanceStatus, InstanceStorageResourceType, IntervalPeriod, LexVersion, MediaStreamType, MediaType, NextContactType, ParticipantType, PhoneNumberCountryCode, PhoneNumberType, PhoneNumberWorkflowStatus, QuestionRuleCategoryAutomationCondition, QueueStatus, QuickConnectType, RecordingStatus, RulePublishStatus, SortOrder, Statistic, Status, StorageType, TaskTemplateStatus, TrafficDistributionGroupStatus, Unit, Visibility, VocabularyLanguageCode, VocabularyState } from "./enums";
2
- import { type AgentConfig, type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type ParticipantCapabilities, type PredefinedAttributeValues, type QueueReference, type QuickConnectConfig, type RuleTriggerEventSource, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserPhoneConfig, type Validation, type View, type WorkspaceTheme, AgentContactReference, AgentStatusSummary, AiAgentInfo, AliasConfiguration, AnalyticsDataAssociationResult, Distribution, FailedBatchAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, RoutingProfileQueueReference, RuleAction, SecurityProfileItem, SuccessfulBatchAssociationSummary, TaskTemplateField } from "./models_0";
1
+ import { AgentAvailabilityTimer, AgentStatusType, AutoEvaluationStatus, Channel, Comparison, ContactFlowModuleState, ContactFlowModuleStatus, ContactFlowState, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactMetricName, ContactParticipantRole, ContactState, CurrentMetricName, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DirectoryType, EndpointType, EntityType, EvaluationQuestionAnswerAnalysisType, EvaluationStatus, EvaluationSuggestedAnswerStatus, EvaluationTranscriptType, EvaluationType, FileStatusType, FileUseCaseType, FilterV2StringConditionComparisonOperator, FlowAssociationResourceType, Grouping, HistoricalMetricName, InstanceAttributeType, InstanceReplicationStatus, InstanceStatus, InstanceStorageResourceType, IntervalPeriod, LexVersion, MediaStreamType, MediaType, NextContactType, OperationalStatus, OverrideType, ParticipantType, PhoneNumberCountryCode, PhoneNumberType, PhoneNumberWorkflowStatus, QuestionRuleCategoryAutomationCondition, QueueStatus, QuickConnectType, RecordingStatus, RulePublishStatus, SortOrder, Statistic, Status, StorageType, TaskTemplateStatus, TrafficDistributionGroupStatus, Unit, Visibility, VocabularyLanguageCode, VocabularyState } from "./enums";
2
+ import { type AgentConfig, type AgentQualityMetrics, type AgentsCriteria, type AgentStatus, type AgentStatusIdentifier, type AgentStatusReference, type AudioQualityMetricsInfo, type CreatedByInfo, type DataTableLockVersion, type DeviceInfo, type ExternalInvocationConfiguration, type GranularAccessControlConfiguration, type InstanceStorageConfig, type LexBot, type LexV2Bot, type OutboundCallerConfig, type OutboundEmailConfig, type OverrideTimeSlice, type ParticipantCapabilities, type PredefinedAttributeValues, type QueueReference, type QuickConnectConfig, type RecurrenceConfig, type RuleTriggerEventSource, type TaskTemplateConstraints, type TaskTemplateDefaults, type UserIdentityInfo, type UserPhoneConfig, type Validation, type View, type WorkspaceTheme, AgentContactReference, AgentStatusSummary, AiAgentInfo, AliasConfiguration, AnalyticsDataAssociationResult, Distribution, FailedBatchAssociationSummary, HoursOfOperationConfig, HoursOfOperationOverrideConfig, MediaConcurrency, PrimaryValue, RoutingProfileQueueReference, RuleAction, SecurityProfileItem, SuccessfulBatchAssociationSummary, TaskTemplateField } from "./models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface DeleteContactFlowRequest {
7
+ /**
8
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9
+ * @public
10
+ */
11
+ InstanceId: string | undefined;
12
+ /**
13
+ * <p>The identifier of the flow.</p>
14
+ * @public
15
+ */
16
+ ContactFlowId: string | undefined;
17
+ }
18
+ /**
19
+ * @public
20
+ */
21
+ export interface DeleteContactFlowResponse {
22
+ }
23
+ /**
24
+ * @public
25
+ */
26
+ export interface DeleteContactFlowModuleRequest {
27
+ /**
28
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
29
+ * @public
30
+ */
31
+ InstanceId: string | undefined;
32
+ /**
33
+ * <p>The identifier of the flow module.</p>
34
+ * @public
35
+ */
36
+ ContactFlowModuleId: string | undefined;
37
+ }
38
+ /**
39
+ * @public
40
+ */
41
+ export interface DeleteContactFlowModuleResponse {
42
+ }
3
43
  /**
4
44
  * @public
5
45
  */
@@ -2442,6 +2482,27 @@ export interface DescribeHoursOfOperationRequest {
2442
2482
  */
2443
2483
  HoursOfOperationId: string | undefined;
2444
2484
  }
2485
+ /**
2486
+ * <p>Identifier for a hours of operations resource: ARN, ID, Name</p>
2487
+ * @public
2488
+ */
2489
+ export interface HoursOfOperationsIdentifier {
2490
+ /**
2491
+ * <p>Name of the hours of operation</p>
2492
+ * @public
2493
+ */
2494
+ Name: string | undefined;
2495
+ /**
2496
+ * <p>Unique identifier of the hours of operation.</p>
2497
+ * @public
2498
+ */
2499
+ Id: string | undefined;
2500
+ /**
2501
+ * <p>Amazon Resource Name (ARN) of the hours of operations.</p>
2502
+ * @public
2503
+ */
2504
+ Arn?: string | undefined;
2505
+ }
2445
2506
  /**
2446
2507
  * <p>Information about of the hours of operation.</p>
2447
2508
  * @public
@@ -2477,6 +2538,11 @@ export interface HoursOfOperation {
2477
2538
  * @public
2478
2539
  */
2479
2540
  Config?: HoursOfOperationConfig[] | undefined;
2541
+ /**
2542
+ * <p>Information about parent hours of operations.</p>
2543
+ * @public
2544
+ */
2545
+ ParentHoursOfOperations?: HoursOfOperationsIdentifier[] | undefined;
2480
2546
  /**
2481
2547
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
2482
2548
  * @public
@@ -2568,6 +2634,16 @@ export interface HoursOfOperationOverride {
2568
2634
  * @public
2569
2635
  */
2570
2636
  EffectiveTill?: string | undefined;
2637
+ /**
2638
+ * <p>Configuration for a recurring event.</p>
2639
+ * @public
2640
+ */
2641
+ RecurrenceConfig?: RecurrenceConfig | undefined;
2642
+ /**
2643
+ * <p>Whether the override will be defined as a <i>standard</i> or as a <i>recurring event</i>.</p>
2644
+ * @public
2645
+ */
2646
+ OverrideType?: OverrideType | undefined;
2571
2647
  }
2572
2648
  /**
2573
2649
  * @public
@@ -4323,6 +4399,27 @@ export interface DisassociateFlowRequest {
4323
4399
  */
4324
4400
  export interface DisassociateFlowResponse {
4325
4401
  }
4402
+ /**
4403
+ * @public
4404
+ */
4405
+ export interface DisassociateHoursOfOperationsRequest {
4406
+ /**
4407
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
4408
+ * the Amazon Resource Name (ARN) of the instance.</p>
4409
+ * @public
4410
+ */
4411
+ InstanceId: string | undefined;
4412
+ /**
4413
+ * <p>The identifier of the child hours of operation.</p>
4414
+ * @public
4415
+ */
4416
+ HoursOfOperationId: string | undefined;
4417
+ /**
4418
+ * <p>The Amazon Resource Names (ARNs) of the parent hours of operation resources to disassociate with the child hours of operation resource.</p>
4419
+ * @public
4420
+ */
4421
+ ParentHoursOfOperationIds: string[] | undefined;
4422
+ }
4326
4423
  /**
4327
4424
  * @public
4328
4425
  */
@@ -5676,6 +5773,48 @@ export interface EffectiveHoursOfOperations {
5676
5773
  */
5677
5774
  OperationalHours?: OperationalHour[] | undefined;
5678
5775
  }
5776
+ /**
5777
+ * <p>Information about hours of operation override</p>
5778
+ * @public
5779
+ */
5780
+ export interface OverrideHour {
5781
+ /**
5782
+ * <p>The start time or end time for an hours of operation override.</p>
5783
+ * @public
5784
+ */
5785
+ Start?: OverrideTimeSlice | undefined;
5786
+ /**
5787
+ * <p>The start time or end time for an hours of operation override.</p>
5788
+ * @public
5789
+ */
5790
+ End?: OverrideTimeSlice | undefined;
5791
+ /**
5792
+ * <p>Unique identifier name for the override.</p>
5793
+ * @public
5794
+ */
5795
+ OverrideName?: string | undefined;
5796
+ /**
5797
+ * <p>Indicates whether the status is open or closed during the override period. This status determines how the override modifies the base hours of operation schedule.</p>
5798
+ * @public
5799
+ */
5800
+ OperationalStatus?: OperationalStatus | undefined;
5801
+ }
5802
+ /**
5803
+ * <p>Information about the hours of operation overrides which contribute to effective hours of operations.</p>
5804
+ * @public
5805
+ */
5806
+ export interface EffectiveOverrideHours {
5807
+ /**
5808
+ * <p>The date that the hours of operation override applies to.</p>
5809
+ * @public
5810
+ */
5811
+ Date?: string | undefined;
5812
+ /**
5813
+ * <p>Information about the hours of operation overrides that apply to a specific date.</p>
5814
+ * @public
5815
+ */
5816
+ OverrideHours?: OverrideHour[] | undefined;
5817
+ }
5679
5818
  /**
5680
5819
  * @public
5681
5820
  */
@@ -5685,6 +5824,13 @@ export interface GetEffectiveHoursOfOperationsResponse {
5685
5824
  * @public
5686
5825
  */
5687
5826
  EffectiveHoursOfOperationList?: EffectiveHoursOfOperations[] | undefined;
5827
+ /**
5828
+ * <p>Information about override configurations applied to the base hours of operation to calculate the effective hours.</p>
5829
+ * <p>For more information about how override types are applied, see <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html">Build your list of overrides</a> in the
5830
+ * <i> Administrator Guide</i>.</p>
5831
+ * @public
5832
+ */
5833
+ EffectiveOverrideHoursList?: EffectiveOverrideHours[] | undefined;
5688
5834
  /**
5689
5835
  * <p>The time zone for the hours of operation.</p>
5690
5836
  * @public
@@ -8915,6 +9061,58 @@ export interface ListBotsResponse {
8915
9061
  */
8916
9062
  NextToken?: string | undefined;
8917
9063
  }
9064
+ /**
9065
+ * @public
9066
+ */
9067
+ export interface ListChildHoursOfOperationsRequest {
9068
+ /**
9069
+ * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in
9070
+ * the Amazon Resource Name (ARN) of the instance.</p>
9071
+ * @public
9072
+ */
9073
+ InstanceId: string | undefined;
9074
+ /**
9075
+ * <p>The identifier of the parent hours of operation.</p>
9076
+ * @public
9077
+ */
9078
+ HoursOfOperationId: string | undefined;
9079
+ /**
9080
+ * <p>The token for the next set of results. Use the value returned in the previous
9081
+ * response in the next request to retrieve the next set of results.</p>
9082
+ * @public
9083
+ */
9084
+ NextToken?: string | undefined;
9085
+ /**
9086
+ * <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
9087
+ * @public
9088
+ */
9089
+ MaxResults?: number | undefined;
9090
+ }
9091
+ /**
9092
+ * @public
9093
+ */
9094
+ export interface ListChildHoursOfOperationsResponse {
9095
+ /**
9096
+ * <p>If there are additional results, this is the token for the next set of results.</p>
9097
+ * @public
9098
+ */
9099
+ NextToken?: string | undefined;
9100
+ /**
9101
+ * <p>Information about the hours of operation.</p>
9102
+ * @public
9103
+ */
9104
+ ChildHoursOfOperationsSummaryList?: HoursOfOperationsIdentifier[] | undefined;
9105
+ /**
9106
+ * <p>The timestamp when this resource was last modified.</p>
9107
+ * @public
9108
+ */
9109
+ LastModifiedTime?: Date | undefined;
9110
+ /**
9111
+ * <p>The Amazon Web Services Region where this resource was last modified.</p>
9112
+ * @public
9113
+ */
9114
+ LastModifiedRegion?: string | undefined;
9115
+ }
8918
9116
  /**
8919
9117
  * @public
8920
9118
  */
@@ -9041,227 +9239,3 @@ export interface EvaluationSummary {
9041
9239
  */
9042
9240
  ContactParticipant?: EvaluationContactParticipant | undefined;
9043
9241
  }
9044
- /**
9045
- * @public
9046
- */
9047
- export interface ListContactEvaluationsResponse {
9048
- /**
9049
- * <p>Provides details about a list of contact evaluations belonging to an instance.</p>
9050
- * @public
9051
- */
9052
- EvaluationSummaryList: EvaluationSummary[] | undefined;
9053
- /**
9054
- * <p>If there are additional results, this is the token for the next set of results.</p>
9055
- * <important>
9056
- * <p>This is always returned as null in the response.</p>
9057
- * </important>
9058
- * @public
9059
- */
9060
- NextToken?: string | undefined;
9061
- }
9062
- /**
9063
- * @public
9064
- */
9065
- export interface ListContactFlowModuleAliasesRequest {
9066
- /**
9067
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9068
- * @public
9069
- */
9070
- InstanceId: string | undefined;
9071
- /**
9072
- * <p>The identifier of the flow module.</p>
9073
- * @public
9074
- */
9075
- ContactFlowModuleId: string | undefined;
9076
- /**
9077
- * <p>The token for the next set of results. Use the value returned in the previous
9078
- * response in the next request to retrieve the next set of results.</p>
9079
- * @public
9080
- */
9081
- NextToken?: string | undefined;
9082
- /**
9083
- * <p>The maximum number of results to return per page.</p>
9084
- * @public
9085
- */
9086
- MaxResults?: number | undefined;
9087
- }
9088
- /**
9089
- * <p>Contains information about an alias.</p>
9090
- * @public
9091
- */
9092
- export interface ContactFlowModuleAliasSummary {
9093
- /**
9094
- * <p>The Amazon Resource Name (ARN) of the flow module alias.</p>
9095
- * @public
9096
- */
9097
- Arn?: string | undefined;
9098
- /**
9099
- * <p>The identifier of the alias.</p>
9100
- * @public
9101
- */
9102
- AliasId?: string | undefined;
9103
- /**
9104
- * <p>The version of the flow module.</p>
9105
- * @public
9106
- */
9107
- Version?: number | undefined;
9108
- /**
9109
- * <p>The name of the alias.</p>
9110
- * @public
9111
- */
9112
- AliasName?: string | undefined;
9113
- /**
9114
- * <p>The description of the alias.</p>
9115
- * @public
9116
- */
9117
- AliasDescription?: string | undefined;
9118
- /**
9119
- * <p>The timestamp when this resource was last modified.</p>
9120
- * @public
9121
- */
9122
- LastModifiedTime?: Date | undefined;
9123
- }
9124
- /**
9125
- * @public
9126
- */
9127
- export interface ListContactFlowModuleAliasesResponse {
9128
- /**
9129
- * <p>Information about the flow module aliases.</p>
9130
- * @public
9131
- */
9132
- ContactFlowModuleAliasSummaryList?: ContactFlowModuleAliasSummary[] | undefined;
9133
- /**
9134
- * <p>If there are additional results, this is the token for the next set of results.</p>
9135
- * @public
9136
- */
9137
- NextToken?: string | undefined;
9138
- }
9139
- /**
9140
- * @public
9141
- */
9142
- export interface ListContactFlowModulesRequest {
9143
- /**
9144
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9145
- * @public
9146
- */
9147
- InstanceId: string | undefined;
9148
- /**
9149
- * <p>The token for the next set of results. Use the value returned in the previous
9150
- * response in the next request to retrieve the next set of results.</p>
9151
- * @public
9152
- */
9153
- NextToken?: string | undefined;
9154
- /**
9155
- * <p>The maximum number of results to return per page.</p>
9156
- * @public
9157
- */
9158
- MaxResults?: number | undefined;
9159
- /**
9160
- * <p>The state of the flow module.</p>
9161
- * @public
9162
- */
9163
- ContactFlowModuleState?: ContactFlowModuleState | undefined;
9164
- }
9165
- /**
9166
- * <p>Contains summary information about a flow.</p>
9167
- * @public
9168
- */
9169
- export interface ContactFlowModuleSummary {
9170
- /**
9171
- * <p>The identifier of the flow module.</p>
9172
- * @public
9173
- */
9174
- Id?: string | undefined;
9175
- /**
9176
- * <p>The Amazon Resource Name (ARN) of the flow module.</p>
9177
- * @public
9178
- */
9179
- Arn?: string | undefined;
9180
- /**
9181
- * <p>The name of the flow module.</p>
9182
- * @public
9183
- */
9184
- Name?: string | undefined;
9185
- /**
9186
- * <p>The type of flow module.</p>
9187
- * @public
9188
- */
9189
- State?: ContactFlowModuleState | undefined;
9190
- }
9191
- /**
9192
- * @public
9193
- */
9194
- export interface ListContactFlowModulesResponse {
9195
- /**
9196
- * <p>Information about the flow module.</p>
9197
- * @public
9198
- */
9199
- ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
9200
- /**
9201
- * <p>If there are additional results, this is the token for the next set of results.</p>
9202
- * @public
9203
- */
9204
- NextToken?: string | undefined;
9205
- }
9206
- /**
9207
- * @public
9208
- */
9209
- export interface ListContactFlowModuleVersionsRequest {
9210
- /**
9211
- * <p>The identifier of the Amazon Connect instance. You can <a href="https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html">find the instance ID</a> in the Amazon Resource Name (ARN) of the instance.</p>
9212
- * @public
9213
- */
9214
- InstanceId: string | undefined;
9215
- /**
9216
- * <p>The identifier of the flow module.</p>
9217
- * @public
9218
- */
9219
- ContactFlowModuleId: string | undefined;
9220
- /**
9221
- * <p>The token for the next set of results. Use the value returned in the previous
9222
- * response in the next request to retrieve the next set of results.</p>
9223
- * @public
9224
- */
9225
- NextToken?: string | undefined;
9226
- /**
9227
- * <p>The maximum number of results to return per page.</p>
9228
- * @public
9229
- */
9230
- MaxResults?: number | undefined;
9231
- }
9232
- /**
9233
- * <p>Contains information about a version.</p>
9234
- * @public
9235
- */
9236
- export interface ContactFlowModuleVersionSummary {
9237
- /**
9238
- * <p>The Amazon Resource Name (ARN) of the flow module version.</p>
9239
- * @public
9240
- */
9241
- Arn?: string | undefined;
9242
- /**
9243
- * <p>The description of the flow module version.</p>
9244
- * @public
9245
- */
9246
- VersionDescription?: string | undefined;
9247
- /**
9248
- * <p>The version of the flow module.</p>
9249
- * @public
9250
- */
9251
- Version?: number | undefined;
9252
- }
9253
- /**
9254
- * @public
9255
- */
9256
- export interface ListContactFlowModuleVersionsResponse {
9257
- /**
9258
- * <p>Information about the flow module versions.</p>
9259
- * @public
9260
- */
9261
- ContactFlowModuleVersionSummaryList?: ContactFlowModuleVersionSummary[] | undefined;
9262
- /**
9263
- * <p>If there are additional results, this is the token for the next set of results.</p>
9264
- * @public
9265
- */
9266
- NextToken?: string | undefined;
9267
- }