@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
@@ -0,0 +1,103 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
+ import type { ListChildHoursOfOperationsRequest, ListChildHoursOfOperationsResponse } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListChildHoursOfOperationsCommand}.
14
+ */
15
+ export interface ListChildHoursOfOperationsCommandInput extends ListChildHoursOfOperationsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListChildHoursOfOperationsCommand}.
21
+ */
22
+ export interface ListChildHoursOfOperationsCommandOutput extends ListChildHoursOfOperationsResponse, __MetadataBearer {
23
+ }
24
+ declare const ListChildHoursOfOperationsCommand_base: {
25
+ new (input: ListChildHoursOfOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChildHoursOfOperationsCommandInput, ListChildHoursOfOperationsCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListChildHoursOfOperationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListChildHoursOfOperationsCommandInput, ListChildHoursOfOperationsCommandOutput, ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Provides information about the child hours of operations for the specified parent hours of operation.</p>
31
+ * <p>For more information about child hours of operations, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/">Link overrides from different hours of operation</a> in the
32
+ * <i> Administrator Guide</i>.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ConnectClient, ListChildHoursOfOperationsCommand } from "@aws-sdk/client-connect"; // ES Modules import
37
+ * // const { ConnectClient, ListChildHoursOfOperationsCommand } = require("@aws-sdk/client-connect"); // CommonJS import
38
+ * // import type { ConnectClientConfig } from "@aws-sdk/client-connect";
39
+ * const config = {}; // type is ConnectClientConfig
40
+ * const client = new ConnectClient(config);
41
+ * const input = { // ListChildHoursOfOperationsRequest
42
+ * InstanceId: "STRING_VALUE", // required
43
+ * HoursOfOperationId: "STRING_VALUE", // required
44
+ * NextToken: "STRING_VALUE",
45
+ * MaxResults: Number("int"),
46
+ * };
47
+ * const command = new ListChildHoursOfOperationsCommand(input);
48
+ * const response = await client.send(command);
49
+ * // { // ListChildHoursOfOperationsResponse
50
+ * // NextToken: "STRING_VALUE",
51
+ * // ChildHoursOfOperationsSummaryList: [ // ChildHoursOfOperationsList
52
+ * // { // HoursOfOperationsIdentifier
53
+ * // Name: "STRING_VALUE", // required
54
+ * // Id: "STRING_VALUE", // required
55
+ * // Arn: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // LastModifiedTime: new Date("TIMESTAMP"),
59
+ * // LastModifiedRegion: "STRING_VALUE",
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param ListChildHoursOfOperationsCommandInput - {@link ListChildHoursOfOperationsCommandInput}
65
+ * @returns {@link ListChildHoursOfOperationsCommandOutput}
66
+ * @see {@link ListChildHoursOfOperationsCommandInput} for command's `input` shape.
67
+ * @see {@link ListChildHoursOfOperationsCommandOutput} for command's `response` shape.
68
+ * @see {@link ConnectClientResolvedConfig | config} for ConnectClient's `config` shape.
69
+ *
70
+ * @throws {@link InternalServiceException} (server fault)
71
+ * <p>Request processing failed because of an error or failure with the service.</p>
72
+ *
73
+ * @throws {@link InvalidParameterException} (client fault)
74
+ * <p>One or more of the specified parameters are not valid.</p>
75
+ *
76
+ * @throws {@link InvalidRequestException} (client fault)
77
+ * <p>The request is not valid.</p>
78
+ *
79
+ * @throws {@link ResourceNotFoundException} (client fault)
80
+ * <p>The specified resource was not found.</p>
81
+ *
82
+ * @throws {@link ThrottlingException} (client fault)
83
+ * <p>The throttling limit has been exceeded.</p>
84
+ *
85
+ * @throws {@link ConnectServiceException}
86
+ * <p>Base exception class for all service exceptions from Connect service.</p>
87
+ *
88
+ *
89
+ * @public
90
+ */
91
+ export declare class ListChildHoursOfOperationsCommand extends ListChildHoursOfOperationsCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: ListChildHoursOfOperationsRequest;
96
+ output: ListChildHoursOfOperationsResponse;
97
+ };
98
+ sdk: {
99
+ input: ListChildHoursOfOperationsCommandInput;
100
+ output: ListChildHoursOfOperationsCommandOutput;
101
+ };
102
+ };
103
+ }
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { ListContactEvaluationsRequest, ListContactEvaluationsResponse } from "../models/models_1";
4
+ import type { ListContactEvaluationsRequest } from "../models/models_1";
5
+ import type { ListContactEvaluationsResponse } from "../models/models_2";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { ListContactFlowModuleAliasesRequest, ListContactFlowModuleAliasesResponse } from "../models/models_1";
4
+ import type { ListContactFlowModuleAliasesRequest, ListContactFlowModuleAliasesResponse } from "../models/models_2";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { ListContactFlowModuleVersionsRequest, ListContactFlowModuleVersionsResponse } from "../models/models_1";
4
+ import type { ListContactFlowModuleVersionsRequest, ListContactFlowModuleVersionsResponse } from "../models/models_2";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { ListContactFlowModulesRequest, ListContactFlowModulesResponse } from "../models/models_1";
4
+ import type { ListContactFlowModulesRequest, ListContactFlowModulesResponse } from "../models/models_2";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -68,6 +68,22 @@ declare const ListHoursOfOperationOverridesCommand_base: {
68
68
  * // ],
69
69
  * // EffectiveFrom: "STRING_VALUE",
70
70
  * // EffectiveTill: "STRING_VALUE",
71
+ * // RecurrenceConfig: { // RecurrenceConfig
72
+ * // RecurrencePattern: { // RecurrencePattern
73
+ * // Frequency: "WEEKLY" || "MONTHLY" || "YEARLY", // required
74
+ * // Interval: Number("int"), // required
75
+ * // ByMonth: [ // MonthList
76
+ * // Number("int"),
77
+ * // ],
78
+ * // ByMonthDay: [ // MonthDayList
79
+ * // Number("int"),
80
+ * // ],
81
+ * // ByWeekdayOccurrence: [ // WeekdayOccurrenceList
82
+ * // Number("int"),
83
+ * // ],
84
+ * // },
85
+ * // },
86
+ * // OverrideType: "STANDARD" || "OPEN" || "CLOSED",
71
87
  * // },
72
88
  * // ],
73
89
  * // LastModifiedRegion: "STRING_VALUE",
@@ -121,6 +121,22 @@ declare const SearchHoursOfOperationOverridesCommand_base: {
121
121
  * // ],
122
122
  * // EffectiveFrom: "STRING_VALUE",
123
123
  * // EffectiveTill: "STRING_VALUE",
124
+ * // RecurrenceConfig: { // RecurrenceConfig
125
+ * // RecurrencePattern: { // RecurrencePattern
126
+ * // Frequency: "WEEKLY" || "MONTHLY" || "YEARLY", // required
127
+ * // Interval: Number("int"), // required
128
+ * // ByMonth: [ // MonthList
129
+ * // Number("int"),
130
+ * // ],
131
+ * // ByMonthDay: [ // MonthDayList
132
+ * // Number("int"),
133
+ * // ],
134
+ * // ByWeekdayOccurrence: [ // WeekdayOccurrenceList
135
+ * // Number("int"),
136
+ * // ],
137
+ * // },
138
+ * // },
139
+ * // OverrideType: "STANDARD" || "OPEN" || "CLOSED",
124
140
  * // },
125
141
  * // ],
126
142
  * // NextToken: "STRING_VALUE",
@@ -109,6 +109,13 @@ declare const SearchHoursOfOperationsCommand_base: {
109
109
  * // },
110
110
  * // },
111
111
  * // ],
112
+ * // ParentHoursOfOperations: [ // ParentHoursOfOperationsList
113
+ * // { // HoursOfOperationsIdentifier
114
+ * // Name: "STRING_VALUE", // required
115
+ * // Id: "STRING_VALUE", // required
116
+ * // Arn: "STRING_VALUE",
117
+ * // },
118
+ * // ],
112
119
  * // Tags: { // TagMap
113
120
  * // "<keys>": "STRING_VALUE",
114
121
  * // },
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { StartContactRecordingRequest, StartContactRecordingResponse } from "../models/models_2";
4
+ import type { StartContactRecordingRequest, StartContactRecordingResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { StartContactStreamingRequest, StartContactStreamingResponse } from "../models/models_2";
4
+ import type { StartContactStreamingRequest, StartContactStreamingResponse } from "../models/models_3";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { StartEmailContactResponse } from "../models/models_2";
5
- import type { StartEmailContactRequest } from "../models/models_3";
4
+ import type { StartEmailContactRequest, StartEmailContactResponse } from "../models/models_3";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import type { ConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ConnectClient";
4
- import type { StartOutboundChatContactResponse } from "../models/models_2";
5
- import type { StartOutboundChatContactRequest } from "../models/models_3";
4
+ import type { StartOutboundChatContactRequest, StartOutboundChatContactResponse } from "../models/models_3";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -57,6 +57,22 @@ declare const UpdateHoursOfOperationOverrideCommand_base: {
57
57
  * ],
58
58
  * EffectiveFrom: "STRING_VALUE",
59
59
  * EffectiveTill: "STRING_VALUE",
60
+ * RecurrenceConfig: { // RecurrenceConfig
61
+ * RecurrencePattern: { // RecurrencePattern
62
+ * Frequency: "WEEKLY" || "MONTHLY" || "YEARLY", // required
63
+ * Interval: Number("int"), // required
64
+ * ByMonth: [ // MonthList
65
+ * Number("int"),
66
+ * ],
67
+ * ByMonthDay: [ // MonthDayList
68
+ * Number("int"),
69
+ * ],
70
+ * ByWeekdayOccurrence: [ // WeekdayOccurrenceList
71
+ * Number("int"),
72
+ * ],
73
+ * },
74
+ * },
75
+ * OverrideType: "STANDARD" || "OPEN" || "CLOSED",
60
76
  * };
61
77
  * const command = new UpdateHoursOfOperationOverrideCommand(input);
62
78
  * const response = await client.send(command);
@@ -6,6 +6,7 @@ export * from "./AssociateContactWithUserCommand";
6
6
  export * from "./AssociateDefaultVocabularyCommand";
7
7
  export * from "./AssociateEmailAddressAliasCommand";
8
8
  export * from "./AssociateFlowCommand";
9
+ export * from "./AssociateHoursOfOperationsCommand";
9
10
  export * from "./AssociateInstanceStorageConfigCommand";
10
11
  export * from "./AssociateLambdaFunctionCommand";
11
12
  export * from "./AssociateLexBotCommand";
@@ -134,6 +135,7 @@ export * from "./DisassociateApprovedOriginCommand";
134
135
  export * from "./DisassociateBotCommand";
135
136
  export * from "./DisassociateEmailAddressAliasCommand";
136
137
  export * from "./DisassociateFlowCommand";
138
+ export * from "./DisassociateHoursOfOperationsCommand";
137
139
  export * from "./DisassociateInstanceStorageConfigCommand";
138
140
  export * from "./DisassociateLambdaFunctionCommand";
139
141
  export * from "./DisassociateLexBotCommand";
@@ -169,6 +171,7 @@ export * from "./ListApprovedOriginsCommand";
169
171
  export * from "./ListAssociatedContactsCommand";
170
172
  export * from "./ListAuthenticationProfilesCommand";
171
173
  export * from "./ListBotsCommand";
174
+ export * from "./ListChildHoursOfOperationsCommand";
172
175
  export * from "./ListContactEvaluationsCommand";
173
176
  export * from "./ListContactFlowModuleAliasesCommand";
174
177
  export * from "./ListContactFlowModuleVersionsCommand";
@@ -811,6 +811,32 @@ export declare const OverrideDays: {
811
811
  * @public
812
812
  */
813
813
  export type OverrideDays = (typeof OverrideDays)[keyof typeof OverrideDays];
814
+ /**
815
+ * @public
816
+ * @enum
817
+ */
818
+ export declare const OverrideType: {
819
+ readonly CLOSED: "CLOSED";
820
+ readonly OPEN: "OPEN";
821
+ readonly STANDARD: "STANDARD";
822
+ };
823
+ /**
824
+ * @public
825
+ */
826
+ export type OverrideType = (typeof OverrideType)[keyof typeof OverrideType];
827
+ /**
828
+ * @public
829
+ * @enum
830
+ */
831
+ export declare const RecurrenceFrequency: {
832
+ readonly MONTHLY: "MONTHLY";
833
+ readonly WEEKLY: "WEEKLY";
834
+ readonly YEARLY: "YEARLY";
835
+ };
836
+ /**
837
+ * @public
838
+ */
839
+ export type RecurrenceFrequency = (typeof RecurrenceFrequency)[keyof typeof RecurrenceFrequency];
814
840
  /**
815
841
  * @public
816
842
  * @enum
@@ -1874,6 +1900,18 @@ export declare const SortOrder: {
1874
1900
  * @public
1875
1901
  */
1876
1902
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1903
+ /**
1904
+ * @public
1905
+ * @enum
1906
+ */
1907
+ export declare const OperationalStatus: {
1908
+ readonly CLOSED: "CLOSED";
1909
+ readonly OPEN: "OPEN";
1910
+ };
1911
+ /**
1912
+ * @public
1913
+ */
1914
+ export type OperationalStatus = (typeof OperationalStatus)[keyof typeof OperationalStatus];
1877
1915
  /**
1878
1916
  * @public
1879
1917
  * @enum
@@ -1,4 +1,4 @@
1
- import { AccessType, ActionType, AgentAvailabilityTimer, AgentStatusState, AgentStatusType, AiUseCase, AllowedUserAction, ApplicationType, AttachedFileInvalidRequestExceptionReason, AttachedFileServiceQuotaExceededExceptionReason, BehaviorType, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactState, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DeviceType, DirectoryType, EncryptionType, EndpointType, EntityType, EvaluationFormItemEnablementSourceType, EvaluationFormItemEnablementSourceValueType, EvaluationFormItemSourceValuesComparator, EvaluationFormLanguageCode, EvaluationFormMultiSelectQuestionDisplayMode, EvaluationFormQuestionAutomationAnswerSourceType, EvaluationFormScoringMode, EvaluationFormScoringStatus, EvaluationFormSingleSelectQuestionDisplayMode, EventSourceName, FailureReasonCode, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowModuleType, HoursOfOperationDays, InstanceStorageResourceType, IntegrationType, ListFlowAssociationResourceType, MultiSelectQuestionRuleCategoryAutomationCondition, NotificationContentType, NotificationDeliveryType, NumericQuestionPropertyAutomationLabel, OutboundStrategyType, OverrideDays, ParticipantRole, ParticipantState, PhoneType, PropertyValidationExceptionReason, QuickConnectType, ReferenceStatus, ReferenceType, RehydrationType, RulePublishStatus, ScreenShareCapability, SingleSelectQuestionRuleCategoryAutomationCondition, SlaAssignmentType, SlaType, SourceType, StorageType, StringComparisonType, TaskTemplateFieldType, TaskTemplateStatus, UseCaseType, VideoCapability, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState, WorkspaceFontFamily } from "./enums";
1
+ import { AccessType, ActionType, AgentAvailabilityTimer, AgentStatusState, AgentStatusType, AiUseCase, AllowedUserAction, ApplicationType, AttachedFileInvalidRequestExceptionReason, AttachedFileServiceQuotaExceededExceptionReason, BehaviorType, Channel, ContactFlowStatus, ContactFlowType, ContactInitiationMethod, ContactInteractionType, ContactState, DataTableAttributeValueType, DataTableLockLevel, DataTableStatus, DeviceType, DirectoryType, EncryptionType, EndpointType, EntityType, EvaluationFormItemEnablementSourceType, EvaluationFormItemEnablementSourceValueType, EvaluationFormItemSourceValuesComparator, EvaluationFormLanguageCode, EvaluationFormMultiSelectQuestionDisplayMode, EvaluationFormQuestionAutomationAnswerSourceType, EvaluationFormScoringMode, EvaluationFormScoringStatus, EvaluationFormSingleSelectQuestionDisplayMode, EventSourceName, FailureReasonCode, FileStatusType, FileUseCaseType, FlowAssociationResourceType, FlowModuleType, HoursOfOperationDays, InstanceStorageResourceType, IntegrationType, ListFlowAssociationResourceType, MultiSelectQuestionRuleCategoryAutomationCondition, NotificationContentType, NotificationDeliveryType, NumericQuestionPropertyAutomationLabel, OutboundStrategyType, OverrideDays, OverrideType, ParticipantRole, ParticipantState, PhoneType, PropertyValidationExceptionReason, QuickConnectType, RecurrenceFrequency, ReferenceStatus, ReferenceType, RehydrationType, RulePublishStatus, ScreenShareCapability, SingleSelectQuestionRuleCategoryAutomationCondition, SlaAssignmentType, SlaType, SourceType, StorageType, StringComparisonType, TaskTemplateFieldType, TaskTemplateStatus, UseCaseType, VideoCapability, ViewStatus, ViewType, VocabularyLanguageCode, VocabularyState, WorkspaceFontFamily } from "./enums";
2
2
  /**
3
3
  * <p>Information about an action.</p>
4
4
  * @public
@@ -1082,6 +1082,38 @@ export interface AssociateFlowRequest {
1082
1082
  */
1083
1083
  export interface AssociateFlowResponse {
1084
1084
  }
1085
+ /**
1086
+ * <p>Contains configuration for the parent hours of operation.</p>
1087
+ * @public
1088
+ */
1089
+ export interface ParentHoursOfOperationConfig {
1090
+ /**
1091
+ * <p>The identifier for the hours of operation.</p>
1092
+ * @public
1093
+ */
1094
+ HoursOfOperationId?: string | undefined;
1095
+ }
1096
+ /**
1097
+ * @public
1098
+ */
1099
+ export interface AssociateHoursOfOperationsRequest {
1100
+ /**
1101
+ * <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
1102
+ * the Amazon Resource Name (ARN) of the instance.</p>
1103
+ * @public
1104
+ */
1105
+ InstanceId: string | undefined;
1106
+ /**
1107
+ * <p>The identifier of the child hours of operation.</p>
1108
+ * @public
1109
+ */
1110
+ HoursOfOperationId: string | undefined;
1111
+ /**
1112
+ * <p>The Amazon Resource Names (ARNs) of the parent hours of operation resources to associate with the child hours of operation resource.</p>
1113
+ * @public
1114
+ */
1115
+ ParentHoursOfOperationConfigs: ParentHoursOfOperationConfig[] | undefined;
1116
+ }
1085
1117
  /**
1086
1118
  * <p>Configuration information of a Kinesis Data Firehose delivery stream.</p>
1087
1119
  * @public
@@ -1419,6 +1451,7 @@ export interface AssociateRoutingProfileQueuesRequest {
1419
1451
  QueueConfigs?: RoutingProfileQueueConfig[] | undefined;
1420
1452
  /**
1421
1453
  * <p>The manual assignment queues to associate with this routing profile.</p>
1454
+ * <p>Note: Use this config for chat, email, and task contacts. It does not support voice contacts.</p>
1422
1455
  * @public
1423
1456
  */
1424
1457
  ManualAssignmentQueueConfigs?: RoutingProfileManualAssignmentQueueConfig[] | undefined;
@@ -4102,6 +4135,13 @@ export interface CreateHoursOfOperationRequest {
4102
4135
  * @public
4103
4136
  */
4104
4137
  Config: HoursOfOperationConfig[] | undefined;
4138
+ /**
4139
+ * <p>Configuration for parent hours of operations. Eg: ResourceArn. </p>
4140
+ * <p>For more information about parent hours of operations, see <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/connect/latest/adminguide/hours-of-operation-overrides.html">Link overrides from different hours of operation</a> in the
4141
+ * <i> Administrator Guide</i>.</p>
4142
+ * @public
4143
+ */
4144
+ ParentHoursOfOperationConfigs?: ParentHoursOfOperationConfig[] | undefined;
4105
4145
  /**
4106
4146
  * <p>The tags used to organize, track, or control access for this resource. For example, \{ "Tags": \{"key1":"value1", "key2":"value2"\} \}.</p>
4107
4147
  * @public
@@ -4160,6 +4200,56 @@ export interface HoursOfOperationOverrideConfig {
4160
4200
  */
4161
4201
  EndTime?: OverrideTimeSlice | undefined;
4162
4202
  }
4203
+ /**
4204
+ * <p>Specifies the detailed pattern for event recurrence. Use this to define complex scheduling rules such as "every 2nd Tuesday of the month" or "every 3 months on the 15th".</p>
4205
+ * @public
4206
+ */
4207
+ export interface RecurrencePattern {
4208
+ /**
4209
+ * <p>Defines how often the pattern repeats. This is the base unit for the recurrence schedule and works in conjunction with the Interval field to determine the exact repetition sequence.</p>
4210
+ * @public
4211
+ */
4212
+ Frequency: RecurrenceFrequency | undefined;
4213
+ /**
4214
+ * <p>Specifies the number of frequency units between each occurrence. Must be a positive integer. </p>
4215
+ * <p> Examples: To repeat every week, set Interval=1 with WEEKLY frequency. To repeat every two months, set Interval=2 with MONTHLY frequency.</p>
4216
+ * @public
4217
+ */
4218
+ Interval: number | undefined;
4219
+ /**
4220
+ * <p>Specifies which month the event should occur in (1-12, where 1=January, 12=December). Used with YEARLY frequency to schedule events in specific month. </p>
4221
+ * <p>Note: It does not accept multiple values in the same list</p>
4222
+ * @public
4223
+ */
4224
+ ByMonth?: number[] | undefined;
4225
+ /**
4226
+ * <p>Specifies which day of the month the event should occur on (1-31). Used with MONTHLY or YEARLY frequency to schedule events on specific date within a month.</p>
4227
+ * <p> Examples:
4228
+ * [15] for events on the 15th of each month,
4229
+ * [-1] for events on the last day of month. </p>
4230
+ * <p>Note: It does not accept multiple values in the same list. If a specified day doesn't exist in a particular month (e.g., day 31 in February), the event will be skipped for that month. This field cannot be used simultaneously with ByWeekdayOccurrence as they represent different scheduling approaches (specific dates vs. relative weekday positions).</p>
4231
+ * @public
4232
+ */
4233
+ ByMonthDay?: number[] | undefined;
4234
+ /**
4235
+ * <p>Specifies which occurrence of a weekday within the month the event should occur on. Must be used with MONTHLY or YEARLY frequency. </p>
4236
+ * <p>Example: 2 corresponds to second occurrence of the weekday in the month. -1 corresponds to last occurrence of the weekday in the month </p>
4237
+ * <p>The weekday itself is specified separately in the HoursOfOperationConfig. Example: To schedule the recurring event for the 2nd Thursday of April every year, set ByWeekdayOccurrence=[2], Day=THURSDAY, ByMonth=[4], Frequency: YEARLY and INTERVAL=1.</p>
4238
+ * @public
4239
+ */
4240
+ ByWeekdayOccurrence?: number[] | undefined;
4241
+ }
4242
+ /**
4243
+ * <p>Defines the recurrence configuration for overrides. This configuration uses a recurrence pattern to specify when and how frequently an event should repeat.</p>
4244
+ * @public
4245
+ */
4246
+ export interface RecurrenceConfig {
4247
+ /**
4248
+ * <p>The recurrence pattern that defines how the event repeats. Example: Frequency, Interval, ByMonth, ByMonthDay, ByWeekdayOccurrence</p>
4249
+ * @public
4250
+ */
4251
+ RecurrencePattern: RecurrencePattern | undefined;
4252
+ }
4163
4253
  /**
4164
4254
  * @public
4165
4255
  */
@@ -4199,6 +4289,18 @@ export interface CreateHoursOfOperationOverrideRequest {
4199
4289
  * @public
4200
4290
  */
4201
4291
  EffectiveTill: string | undefined;
4292
+ /**
4293
+ * <p>Configuration for a recurring event.</p>
4294
+ * @public
4295
+ */
4296
+ RecurrenceConfig?: RecurrenceConfig | undefined;
4297
+ /**
4298
+ * <p>Whether the override will be defined as a <i>standard</i> or as a <i>recurring event</i>.</p>
4299
+ * <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
4300
+ * <i> Administrator Guide</i>.</p>
4301
+ * @public
4302
+ */
4303
+ OverrideType?: OverrideType | undefined;
4202
4304
  }
4203
4305
  /**
4204
4306
  * @public
@@ -5058,6 +5160,7 @@ export interface CreateRoutingProfileRequest {
5058
5160
  * can't pick or assign any contacts from this routing profile. The limit of 10 array members applies to the maximum
5059
5161
  * number of RoutingProfileManualAssignmentQueueConfig objects that can be passed during a CreateRoutingProfile API
5060
5162
  * request. It is different from the quota of 50 queues per routing profile per instance that is listed in Amazon Connect service quotas.</p>
5163
+ * <p>Note: Use this config for chat, email, and task contacts. It does not support voice contacts.</p>
5061
5164
  * @public
5062
5165
  */
5063
5166
  ManualAssignmentQueueConfigs?: RoutingProfileManualAssignmentQueueConfig[] | undefined;
@@ -6849,43 +6952,3 @@ export interface DeleteContactEvaluationRequest {
6849
6952
  */
6850
6953
  EvaluationId: string | undefined;
6851
6954
  }
6852
- /**
6853
- * @public
6854
- */
6855
- export interface DeleteContactFlowRequest {
6856
- /**
6857
- * <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>
6858
- * @public
6859
- */
6860
- InstanceId: string | undefined;
6861
- /**
6862
- * <p>The identifier of the flow.</p>
6863
- * @public
6864
- */
6865
- ContactFlowId: string | undefined;
6866
- }
6867
- /**
6868
- * @public
6869
- */
6870
- export interface DeleteContactFlowResponse {
6871
- }
6872
- /**
6873
- * @public
6874
- */
6875
- export interface DeleteContactFlowModuleRequest {
6876
- /**
6877
- * <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>
6878
- * @public
6879
- */
6880
- InstanceId: string | undefined;
6881
- /**
6882
- * <p>The identifier of the flow module.</p>
6883
- * @public
6884
- */
6885
- ContactFlowModuleId: string | undefined;
6886
- }
6887
- /**
6888
- * @public
6889
- */
6890
- export interface DeleteContactFlowModuleResponse {
6891
- }