@aws-sdk/client-connect 3.975.0 → 3.978.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 +276 -177
- package/dist-es/Connect.js +173 -1
- package/dist-es/schemas/schemas_0.js +17 -6
- package/dist-types/Connect.d.ts +596 -1
- package/dist-types/commands/SearchContactsCommand.d.ts +20 -0
- package/dist-types/commands/StartTaskContactCommand.d.ts +6 -0
- package/dist-types/models/models_2.d.ts +14 -0
- package/dist-types/models/models_3.d.ts +26 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/Connect.d.ts +600 -1
- package/dist-types/ts3.4/models/models_2.d.ts +1 -0
- package/dist-types/ts3.4/models/models_3.d.ts +6 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +17 -17
package/dist-types/Connect.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { ActivateEvaluationFormCommandInput, ActivateEvaluationFormCommandOutput } from "./commands/ActivateEvaluationFormCommand";
|
|
3
3
|
import { AssociateAnalyticsDataSetCommandInput, AssociateAnalyticsDataSetCommandOutput } from "./commands/AssociateAnalyticsDataSetCommand";
|
|
4
4
|
import { AssociateApprovedOriginCommandInput, AssociateApprovedOriginCommandOutput } from "./commands/AssociateApprovedOriginCommand";
|
|
@@ -2491,6 +2491,601 @@ export interface Connect {
|
|
|
2491
2491
|
updateWorkspaceVisibility(args: UpdateWorkspaceVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkspaceVisibilityCommandOutput>;
|
|
2492
2492
|
updateWorkspaceVisibility(args: UpdateWorkspaceVisibilityCommandInput, cb: (err: any, data?: UpdateWorkspaceVisibilityCommandOutput) => void): void;
|
|
2493
2493
|
updateWorkspaceVisibility(args: UpdateWorkspaceVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceVisibilityCommandOutput) => void): void;
|
|
2494
|
+
/**
|
|
2495
|
+
* @see {@link EvaluateDataTableValuesCommand}
|
|
2496
|
+
* @param args - command input.
|
|
2497
|
+
* @param paginationConfig - optional pagination config.
|
|
2498
|
+
* @returns AsyncIterable of {@link EvaluateDataTableValuesCommandOutput}.
|
|
2499
|
+
*/
|
|
2500
|
+
paginateEvaluateDataTableValues(args: EvaluateDataTableValuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<EvaluateDataTableValuesCommandOutput>;
|
|
2501
|
+
/**
|
|
2502
|
+
* @see {@link GetCurrentMetricDataCommand}
|
|
2503
|
+
* @param args - command input.
|
|
2504
|
+
* @param paginationConfig - optional pagination config.
|
|
2505
|
+
* @returns AsyncIterable of {@link GetCurrentMetricDataCommandOutput}.
|
|
2506
|
+
*/
|
|
2507
|
+
paginateGetCurrentMetricData(args: GetCurrentMetricDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCurrentMetricDataCommandOutput>;
|
|
2508
|
+
/**
|
|
2509
|
+
* @see {@link GetCurrentUserDataCommand}
|
|
2510
|
+
* @param args - command input.
|
|
2511
|
+
* @param paginationConfig - optional pagination config.
|
|
2512
|
+
* @returns AsyncIterable of {@link GetCurrentUserDataCommandOutput}.
|
|
2513
|
+
*/
|
|
2514
|
+
paginateGetCurrentUserData(args: GetCurrentUserDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCurrentUserDataCommandOutput>;
|
|
2515
|
+
/**
|
|
2516
|
+
* @see {@link GetMetricDataCommand}
|
|
2517
|
+
* @param args - command input.
|
|
2518
|
+
* @param paginationConfig - optional pagination config.
|
|
2519
|
+
* @returns AsyncIterable of {@link GetMetricDataCommandOutput}.
|
|
2520
|
+
*/
|
|
2521
|
+
paginateGetMetricData(args: GetMetricDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetMetricDataCommandOutput>;
|
|
2522
|
+
/**
|
|
2523
|
+
* @see {@link GetMetricDataV2Command}
|
|
2524
|
+
* @param args - command input.
|
|
2525
|
+
* @param paginationConfig - optional pagination config.
|
|
2526
|
+
* @returns AsyncIterable of {@link GetMetricDataV2CommandOutput}.
|
|
2527
|
+
*/
|
|
2528
|
+
paginateGetMetricDataV2(args: GetMetricDataV2CommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetMetricDataV2CommandOutput>;
|
|
2529
|
+
/**
|
|
2530
|
+
* @see {@link ListAgentStatusesCommand}
|
|
2531
|
+
* @param args - command input.
|
|
2532
|
+
* @param paginationConfig - optional pagination config.
|
|
2533
|
+
* @returns AsyncIterable of {@link ListAgentStatusesCommandOutput}.
|
|
2534
|
+
*/
|
|
2535
|
+
paginateListAgentStatuses(args: ListAgentStatusesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAgentStatusesCommandOutput>;
|
|
2536
|
+
/**
|
|
2537
|
+
* @see {@link ListApprovedOriginsCommand}
|
|
2538
|
+
* @param args - command input.
|
|
2539
|
+
* @param paginationConfig - optional pagination config.
|
|
2540
|
+
* @returns AsyncIterable of {@link ListApprovedOriginsCommandOutput}.
|
|
2541
|
+
*/
|
|
2542
|
+
paginateListApprovedOrigins(args: ListApprovedOriginsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApprovedOriginsCommandOutput>;
|
|
2543
|
+
/**
|
|
2544
|
+
* @see {@link ListAuthenticationProfilesCommand}
|
|
2545
|
+
* @param args - command input.
|
|
2546
|
+
* @param paginationConfig - optional pagination config.
|
|
2547
|
+
* @returns AsyncIterable of {@link ListAuthenticationProfilesCommandOutput}.
|
|
2548
|
+
*/
|
|
2549
|
+
paginateListAuthenticationProfiles(args: ListAuthenticationProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAuthenticationProfilesCommandOutput>;
|
|
2550
|
+
/**
|
|
2551
|
+
* @see {@link ListBotsCommand}
|
|
2552
|
+
* @param args - command input.
|
|
2553
|
+
* @param paginationConfig - optional pagination config.
|
|
2554
|
+
* @returns AsyncIterable of {@link ListBotsCommandOutput}.
|
|
2555
|
+
*/
|
|
2556
|
+
paginateListBots(args: ListBotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBotsCommandOutput>;
|
|
2557
|
+
/**
|
|
2558
|
+
* @see {@link ListChildHoursOfOperationsCommand}
|
|
2559
|
+
* @param args - command input.
|
|
2560
|
+
* @param paginationConfig - optional pagination config.
|
|
2561
|
+
* @returns AsyncIterable of {@link ListChildHoursOfOperationsCommandOutput}.
|
|
2562
|
+
*/
|
|
2563
|
+
paginateListChildHoursOfOperations(args: ListChildHoursOfOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChildHoursOfOperationsCommandOutput>;
|
|
2564
|
+
/**
|
|
2565
|
+
* @see {@link ListContactEvaluationsCommand}
|
|
2566
|
+
* @param args - command input.
|
|
2567
|
+
* @param paginationConfig - optional pagination config.
|
|
2568
|
+
* @returns AsyncIterable of {@link ListContactEvaluationsCommandOutput}.
|
|
2569
|
+
*/
|
|
2570
|
+
paginateListContactEvaluations(args: ListContactEvaluationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactEvaluationsCommandOutput>;
|
|
2571
|
+
/**
|
|
2572
|
+
* @see {@link ListContactFlowModuleAliasesCommand}
|
|
2573
|
+
* @param args - command input.
|
|
2574
|
+
* @param paginationConfig - optional pagination config.
|
|
2575
|
+
* @returns AsyncIterable of {@link ListContactFlowModuleAliasesCommandOutput}.
|
|
2576
|
+
*/
|
|
2577
|
+
paginateListContactFlowModuleAliases(args: ListContactFlowModuleAliasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactFlowModuleAliasesCommandOutput>;
|
|
2578
|
+
/**
|
|
2579
|
+
* @see {@link ListContactFlowModulesCommand}
|
|
2580
|
+
* @param args - command input.
|
|
2581
|
+
* @param paginationConfig - optional pagination config.
|
|
2582
|
+
* @returns AsyncIterable of {@link ListContactFlowModulesCommandOutput}.
|
|
2583
|
+
*/
|
|
2584
|
+
paginateListContactFlowModules(args: ListContactFlowModulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactFlowModulesCommandOutput>;
|
|
2585
|
+
/**
|
|
2586
|
+
* @see {@link ListContactFlowModuleVersionsCommand}
|
|
2587
|
+
* @param args - command input.
|
|
2588
|
+
* @param paginationConfig - optional pagination config.
|
|
2589
|
+
* @returns AsyncIterable of {@link ListContactFlowModuleVersionsCommandOutput}.
|
|
2590
|
+
*/
|
|
2591
|
+
paginateListContactFlowModuleVersions(args: ListContactFlowModuleVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactFlowModuleVersionsCommandOutput>;
|
|
2592
|
+
/**
|
|
2593
|
+
* @see {@link ListContactFlowsCommand}
|
|
2594
|
+
* @param args - command input.
|
|
2595
|
+
* @param paginationConfig - optional pagination config.
|
|
2596
|
+
* @returns AsyncIterable of {@link ListContactFlowsCommandOutput}.
|
|
2597
|
+
*/
|
|
2598
|
+
paginateListContactFlows(args: ListContactFlowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactFlowsCommandOutput>;
|
|
2599
|
+
/**
|
|
2600
|
+
* @see {@link ListContactFlowVersionsCommand}
|
|
2601
|
+
* @param args - command input.
|
|
2602
|
+
* @param paginationConfig - optional pagination config.
|
|
2603
|
+
* @returns AsyncIterable of {@link ListContactFlowVersionsCommandOutput}.
|
|
2604
|
+
*/
|
|
2605
|
+
paginateListContactFlowVersions(args: ListContactFlowVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactFlowVersionsCommandOutput>;
|
|
2606
|
+
/**
|
|
2607
|
+
* @see {@link ListContactReferencesCommand}
|
|
2608
|
+
* @param args - command input.
|
|
2609
|
+
* @param paginationConfig - optional pagination config.
|
|
2610
|
+
* @returns AsyncIterable of {@link ListContactReferencesCommandOutput}.
|
|
2611
|
+
*/
|
|
2612
|
+
paginateListContactReferences(args: ListContactReferencesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListContactReferencesCommandOutput>;
|
|
2613
|
+
/**
|
|
2614
|
+
* @see {@link ListDataTableAttributesCommand}
|
|
2615
|
+
* @param args - command input.
|
|
2616
|
+
* @param paginationConfig - optional pagination config.
|
|
2617
|
+
* @returns AsyncIterable of {@link ListDataTableAttributesCommandOutput}.
|
|
2618
|
+
*/
|
|
2619
|
+
paginateListDataTableAttributes(args: ListDataTableAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataTableAttributesCommandOutput>;
|
|
2620
|
+
/**
|
|
2621
|
+
* @see {@link ListDataTablePrimaryValuesCommand}
|
|
2622
|
+
* @param args - command input.
|
|
2623
|
+
* @param paginationConfig - optional pagination config.
|
|
2624
|
+
* @returns AsyncIterable of {@link ListDataTablePrimaryValuesCommandOutput}.
|
|
2625
|
+
*/
|
|
2626
|
+
paginateListDataTablePrimaryValues(args: ListDataTablePrimaryValuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataTablePrimaryValuesCommandOutput>;
|
|
2627
|
+
/**
|
|
2628
|
+
* @see {@link ListDataTablesCommand}
|
|
2629
|
+
* @param args - command input.
|
|
2630
|
+
* @param paginationConfig - optional pagination config.
|
|
2631
|
+
* @returns AsyncIterable of {@link ListDataTablesCommandOutput}.
|
|
2632
|
+
*/
|
|
2633
|
+
paginateListDataTables(args: ListDataTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataTablesCommandOutput>;
|
|
2634
|
+
/**
|
|
2635
|
+
* @see {@link ListDataTableValuesCommand}
|
|
2636
|
+
* @param args - command input.
|
|
2637
|
+
* @param paginationConfig - optional pagination config.
|
|
2638
|
+
* @returns AsyncIterable of {@link ListDataTableValuesCommandOutput}.
|
|
2639
|
+
*/
|
|
2640
|
+
paginateListDataTableValues(args: ListDataTableValuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDataTableValuesCommandOutput>;
|
|
2641
|
+
/**
|
|
2642
|
+
* @see {@link ListDefaultVocabulariesCommand}
|
|
2643
|
+
* @param args - command input.
|
|
2644
|
+
* @param paginationConfig - optional pagination config.
|
|
2645
|
+
* @returns AsyncIterable of {@link ListDefaultVocabulariesCommandOutput}.
|
|
2646
|
+
*/
|
|
2647
|
+
paginateListDefaultVocabularies(args: ListDefaultVocabulariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDefaultVocabulariesCommandOutput>;
|
|
2648
|
+
/**
|
|
2649
|
+
* @see {@link ListEntitySecurityProfilesCommand}
|
|
2650
|
+
* @param args - command input.
|
|
2651
|
+
* @param paginationConfig - optional pagination config.
|
|
2652
|
+
* @returns AsyncIterable of {@link ListEntitySecurityProfilesCommandOutput}.
|
|
2653
|
+
*/
|
|
2654
|
+
paginateListEntitySecurityProfiles(args: ListEntitySecurityProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEntitySecurityProfilesCommandOutput>;
|
|
2655
|
+
/**
|
|
2656
|
+
* @see {@link ListEvaluationFormsCommand}
|
|
2657
|
+
* @param args - command input.
|
|
2658
|
+
* @param paginationConfig - optional pagination config.
|
|
2659
|
+
* @returns AsyncIterable of {@link ListEvaluationFormsCommandOutput}.
|
|
2660
|
+
*/
|
|
2661
|
+
paginateListEvaluationForms(args: ListEvaluationFormsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEvaluationFormsCommandOutput>;
|
|
2662
|
+
/**
|
|
2663
|
+
* @see {@link ListEvaluationFormVersionsCommand}
|
|
2664
|
+
* @param args - command input.
|
|
2665
|
+
* @param paginationConfig - optional pagination config.
|
|
2666
|
+
* @returns AsyncIterable of {@link ListEvaluationFormVersionsCommandOutput}.
|
|
2667
|
+
*/
|
|
2668
|
+
paginateListEvaluationFormVersions(args: ListEvaluationFormVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEvaluationFormVersionsCommandOutput>;
|
|
2669
|
+
/**
|
|
2670
|
+
* @see {@link ListFlowAssociationsCommand}
|
|
2671
|
+
* @param args - command input.
|
|
2672
|
+
* @param paginationConfig - optional pagination config.
|
|
2673
|
+
* @returns AsyncIterable of {@link ListFlowAssociationsCommandOutput}.
|
|
2674
|
+
*/
|
|
2675
|
+
paginateListFlowAssociations(args: ListFlowAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListFlowAssociationsCommandOutput>;
|
|
2676
|
+
/**
|
|
2677
|
+
* @see {@link ListHoursOfOperationOverridesCommand}
|
|
2678
|
+
* @param args - command input.
|
|
2679
|
+
* @param paginationConfig - optional pagination config.
|
|
2680
|
+
* @returns AsyncIterable of {@link ListHoursOfOperationOverridesCommandOutput}.
|
|
2681
|
+
*/
|
|
2682
|
+
paginateListHoursOfOperationOverrides(args: ListHoursOfOperationOverridesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHoursOfOperationOverridesCommandOutput>;
|
|
2683
|
+
/**
|
|
2684
|
+
* @see {@link ListHoursOfOperationsCommand}
|
|
2685
|
+
* @param args - command input.
|
|
2686
|
+
* @param paginationConfig - optional pagination config.
|
|
2687
|
+
* @returns AsyncIterable of {@link ListHoursOfOperationsCommandOutput}.
|
|
2688
|
+
*/
|
|
2689
|
+
paginateListHoursOfOperations(args: ListHoursOfOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListHoursOfOperationsCommandOutput>;
|
|
2690
|
+
/**
|
|
2691
|
+
* @see {@link ListInstanceAttributesCommand}
|
|
2692
|
+
* @param args - command input.
|
|
2693
|
+
* @param paginationConfig - optional pagination config.
|
|
2694
|
+
* @returns AsyncIterable of {@link ListInstanceAttributesCommandOutput}.
|
|
2695
|
+
*/
|
|
2696
|
+
paginateListInstanceAttributes(args: ListInstanceAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInstanceAttributesCommandOutput>;
|
|
2697
|
+
/**
|
|
2698
|
+
* @see {@link ListInstancesCommand}
|
|
2699
|
+
* @param args - command input.
|
|
2700
|
+
* @param paginationConfig - optional pagination config.
|
|
2701
|
+
* @returns AsyncIterable of {@link ListInstancesCommandOutput}.
|
|
2702
|
+
*/
|
|
2703
|
+
paginateListInstances(args?: ListInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInstancesCommandOutput>;
|
|
2704
|
+
/**
|
|
2705
|
+
* @see {@link ListInstanceStorageConfigsCommand}
|
|
2706
|
+
* @param args - command input.
|
|
2707
|
+
* @param paginationConfig - optional pagination config.
|
|
2708
|
+
* @returns AsyncIterable of {@link ListInstanceStorageConfigsCommandOutput}.
|
|
2709
|
+
*/
|
|
2710
|
+
paginateListInstanceStorageConfigs(args: ListInstanceStorageConfigsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInstanceStorageConfigsCommandOutput>;
|
|
2711
|
+
/**
|
|
2712
|
+
* @see {@link ListIntegrationAssociationsCommand}
|
|
2713
|
+
* @param args - command input.
|
|
2714
|
+
* @param paginationConfig - optional pagination config.
|
|
2715
|
+
* @returns AsyncIterable of {@link ListIntegrationAssociationsCommandOutput}.
|
|
2716
|
+
*/
|
|
2717
|
+
paginateListIntegrationAssociations(args: ListIntegrationAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIntegrationAssociationsCommandOutput>;
|
|
2718
|
+
/**
|
|
2719
|
+
* @see {@link ListLambdaFunctionsCommand}
|
|
2720
|
+
* @param args - command input.
|
|
2721
|
+
* @param paginationConfig - optional pagination config.
|
|
2722
|
+
* @returns AsyncIterable of {@link ListLambdaFunctionsCommandOutput}.
|
|
2723
|
+
*/
|
|
2724
|
+
paginateListLambdaFunctions(args: ListLambdaFunctionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLambdaFunctionsCommandOutput>;
|
|
2725
|
+
/**
|
|
2726
|
+
* @see {@link ListLexBotsCommand}
|
|
2727
|
+
* @param args - command input.
|
|
2728
|
+
* @param paginationConfig - optional pagination config.
|
|
2729
|
+
* @returns AsyncIterable of {@link ListLexBotsCommandOutput}.
|
|
2730
|
+
*/
|
|
2731
|
+
paginateListLexBots(args: ListLexBotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLexBotsCommandOutput>;
|
|
2732
|
+
/**
|
|
2733
|
+
* @see {@link ListPhoneNumbersCommand}
|
|
2734
|
+
* @param args - command input.
|
|
2735
|
+
* @param paginationConfig - optional pagination config.
|
|
2736
|
+
* @returns AsyncIterable of {@link ListPhoneNumbersCommandOutput}.
|
|
2737
|
+
*/
|
|
2738
|
+
paginateListPhoneNumbers(args: ListPhoneNumbersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPhoneNumbersCommandOutput>;
|
|
2739
|
+
/**
|
|
2740
|
+
* @see {@link ListPhoneNumbersV2Command}
|
|
2741
|
+
* @param args - command input.
|
|
2742
|
+
* @param paginationConfig - optional pagination config.
|
|
2743
|
+
* @returns AsyncIterable of {@link ListPhoneNumbersV2CommandOutput}.
|
|
2744
|
+
*/
|
|
2745
|
+
paginateListPhoneNumbersV2(args?: ListPhoneNumbersV2CommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPhoneNumbersV2CommandOutput>;
|
|
2746
|
+
/**
|
|
2747
|
+
* @see {@link ListPredefinedAttributesCommand}
|
|
2748
|
+
* @param args - command input.
|
|
2749
|
+
* @param paginationConfig - optional pagination config.
|
|
2750
|
+
* @returns AsyncIterable of {@link ListPredefinedAttributesCommandOutput}.
|
|
2751
|
+
*/
|
|
2752
|
+
paginateListPredefinedAttributes(args: ListPredefinedAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPredefinedAttributesCommandOutput>;
|
|
2753
|
+
/**
|
|
2754
|
+
* @see {@link ListPromptsCommand}
|
|
2755
|
+
* @param args - command input.
|
|
2756
|
+
* @param paginationConfig - optional pagination config.
|
|
2757
|
+
* @returns AsyncIterable of {@link ListPromptsCommandOutput}.
|
|
2758
|
+
*/
|
|
2759
|
+
paginateListPrompts(args: ListPromptsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPromptsCommandOutput>;
|
|
2760
|
+
/**
|
|
2761
|
+
* @see {@link ListQueueQuickConnectsCommand}
|
|
2762
|
+
* @param args - command input.
|
|
2763
|
+
* @param paginationConfig - optional pagination config.
|
|
2764
|
+
* @returns AsyncIterable of {@link ListQueueQuickConnectsCommandOutput}.
|
|
2765
|
+
*/
|
|
2766
|
+
paginateListQueueQuickConnects(args: ListQueueQuickConnectsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueueQuickConnectsCommandOutput>;
|
|
2767
|
+
/**
|
|
2768
|
+
* @see {@link ListQueuesCommand}
|
|
2769
|
+
* @param args - command input.
|
|
2770
|
+
* @param paginationConfig - optional pagination config.
|
|
2771
|
+
* @returns AsyncIterable of {@link ListQueuesCommandOutput}.
|
|
2772
|
+
*/
|
|
2773
|
+
paginateListQueues(args: ListQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueuesCommandOutput>;
|
|
2774
|
+
/**
|
|
2775
|
+
* @see {@link ListQuickConnectsCommand}
|
|
2776
|
+
* @param args - command input.
|
|
2777
|
+
* @param paginationConfig - optional pagination config.
|
|
2778
|
+
* @returns AsyncIterable of {@link ListQuickConnectsCommandOutput}.
|
|
2779
|
+
*/
|
|
2780
|
+
paginateListQuickConnects(args: ListQuickConnectsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQuickConnectsCommandOutput>;
|
|
2781
|
+
/**
|
|
2782
|
+
* @see {@link ListRealtimeContactAnalysisSegmentsV2Command}
|
|
2783
|
+
* @param args - command input.
|
|
2784
|
+
* @param paginationConfig - optional pagination config.
|
|
2785
|
+
* @returns AsyncIterable of {@link ListRealtimeContactAnalysisSegmentsV2CommandOutput}.
|
|
2786
|
+
*/
|
|
2787
|
+
paginateListRealtimeContactAnalysisSegmentsV2(args: ListRealtimeContactAnalysisSegmentsV2CommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRealtimeContactAnalysisSegmentsV2CommandOutput>;
|
|
2788
|
+
/**
|
|
2789
|
+
* @see {@link ListRoutingProfileManualAssignmentQueuesCommand}
|
|
2790
|
+
* @param args - command input.
|
|
2791
|
+
* @param paginationConfig - optional pagination config.
|
|
2792
|
+
* @returns AsyncIterable of {@link ListRoutingProfileManualAssignmentQueuesCommandOutput}.
|
|
2793
|
+
*/
|
|
2794
|
+
paginateListRoutingProfileManualAssignmentQueues(args: ListRoutingProfileManualAssignmentQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRoutingProfileManualAssignmentQueuesCommandOutput>;
|
|
2795
|
+
/**
|
|
2796
|
+
* @see {@link ListRoutingProfileQueuesCommand}
|
|
2797
|
+
* @param args - command input.
|
|
2798
|
+
* @param paginationConfig - optional pagination config.
|
|
2799
|
+
* @returns AsyncIterable of {@link ListRoutingProfileQueuesCommandOutput}.
|
|
2800
|
+
*/
|
|
2801
|
+
paginateListRoutingProfileQueues(args: ListRoutingProfileQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRoutingProfileQueuesCommandOutput>;
|
|
2802
|
+
/**
|
|
2803
|
+
* @see {@link ListRoutingProfilesCommand}
|
|
2804
|
+
* @param args - command input.
|
|
2805
|
+
* @param paginationConfig - optional pagination config.
|
|
2806
|
+
* @returns AsyncIterable of {@link ListRoutingProfilesCommandOutput}.
|
|
2807
|
+
*/
|
|
2808
|
+
paginateListRoutingProfiles(args: ListRoutingProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRoutingProfilesCommandOutput>;
|
|
2809
|
+
/**
|
|
2810
|
+
* @see {@link ListRulesCommand}
|
|
2811
|
+
* @param args - command input.
|
|
2812
|
+
* @param paginationConfig - optional pagination config.
|
|
2813
|
+
* @returns AsyncIterable of {@link ListRulesCommandOutput}.
|
|
2814
|
+
*/
|
|
2815
|
+
paginateListRules(args: ListRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRulesCommandOutput>;
|
|
2816
|
+
/**
|
|
2817
|
+
* @see {@link ListSecurityKeysCommand}
|
|
2818
|
+
* @param args - command input.
|
|
2819
|
+
* @param paginationConfig - optional pagination config.
|
|
2820
|
+
* @returns AsyncIterable of {@link ListSecurityKeysCommandOutput}.
|
|
2821
|
+
*/
|
|
2822
|
+
paginateListSecurityKeys(args: ListSecurityKeysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityKeysCommandOutput>;
|
|
2823
|
+
/**
|
|
2824
|
+
* @see {@link ListSecurityProfileApplicationsCommand}
|
|
2825
|
+
* @param args - command input.
|
|
2826
|
+
* @param paginationConfig - optional pagination config.
|
|
2827
|
+
* @returns AsyncIterable of {@link ListSecurityProfileApplicationsCommandOutput}.
|
|
2828
|
+
*/
|
|
2829
|
+
paginateListSecurityProfileApplications(args: ListSecurityProfileApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityProfileApplicationsCommandOutput>;
|
|
2830
|
+
/**
|
|
2831
|
+
* @see {@link ListSecurityProfileFlowModulesCommand}
|
|
2832
|
+
* @param args - command input.
|
|
2833
|
+
* @param paginationConfig - optional pagination config.
|
|
2834
|
+
* @returns AsyncIterable of {@link ListSecurityProfileFlowModulesCommandOutput}.
|
|
2835
|
+
*/
|
|
2836
|
+
paginateListSecurityProfileFlowModules(args: ListSecurityProfileFlowModulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityProfileFlowModulesCommandOutput>;
|
|
2837
|
+
/**
|
|
2838
|
+
* @see {@link ListSecurityProfilePermissionsCommand}
|
|
2839
|
+
* @param args - command input.
|
|
2840
|
+
* @param paginationConfig - optional pagination config.
|
|
2841
|
+
* @returns AsyncIterable of {@link ListSecurityProfilePermissionsCommandOutput}.
|
|
2842
|
+
*/
|
|
2843
|
+
paginateListSecurityProfilePermissions(args: ListSecurityProfilePermissionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityProfilePermissionsCommandOutput>;
|
|
2844
|
+
/**
|
|
2845
|
+
* @see {@link ListSecurityProfilesCommand}
|
|
2846
|
+
* @param args - command input.
|
|
2847
|
+
* @param paginationConfig - optional pagination config.
|
|
2848
|
+
* @returns AsyncIterable of {@link ListSecurityProfilesCommandOutput}.
|
|
2849
|
+
*/
|
|
2850
|
+
paginateListSecurityProfiles(args: ListSecurityProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSecurityProfilesCommandOutput>;
|
|
2851
|
+
/**
|
|
2852
|
+
* @see {@link ListTaskTemplatesCommand}
|
|
2853
|
+
* @param args - command input.
|
|
2854
|
+
* @param paginationConfig - optional pagination config.
|
|
2855
|
+
* @returns AsyncIterable of {@link ListTaskTemplatesCommandOutput}.
|
|
2856
|
+
*/
|
|
2857
|
+
paginateListTaskTemplates(args: ListTaskTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTaskTemplatesCommandOutput>;
|
|
2858
|
+
/**
|
|
2859
|
+
* @see {@link ListTestCasesCommand}
|
|
2860
|
+
* @param args - command input.
|
|
2861
|
+
* @param paginationConfig - optional pagination config.
|
|
2862
|
+
* @returns AsyncIterable of {@link ListTestCasesCommandOutput}.
|
|
2863
|
+
*/
|
|
2864
|
+
paginateListTestCases(args: ListTestCasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTestCasesCommandOutput>;
|
|
2865
|
+
/**
|
|
2866
|
+
* @see {@link ListTrafficDistributionGroupsCommand}
|
|
2867
|
+
* @param args - command input.
|
|
2868
|
+
* @param paginationConfig - optional pagination config.
|
|
2869
|
+
* @returns AsyncIterable of {@link ListTrafficDistributionGroupsCommandOutput}.
|
|
2870
|
+
*/
|
|
2871
|
+
paginateListTrafficDistributionGroups(args?: ListTrafficDistributionGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrafficDistributionGroupsCommandOutput>;
|
|
2872
|
+
/**
|
|
2873
|
+
* @see {@link ListTrafficDistributionGroupUsersCommand}
|
|
2874
|
+
* @param args - command input.
|
|
2875
|
+
* @param paginationConfig - optional pagination config.
|
|
2876
|
+
* @returns AsyncIterable of {@link ListTrafficDistributionGroupUsersCommandOutput}.
|
|
2877
|
+
*/
|
|
2878
|
+
paginateListTrafficDistributionGroupUsers(args: ListTrafficDistributionGroupUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrafficDistributionGroupUsersCommandOutput>;
|
|
2879
|
+
/**
|
|
2880
|
+
* @see {@link ListUseCasesCommand}
|
|
2881
|
+
* @param args - command input.
|
|
2882
|
+
* @param paginationConfig - optional pagination config.
|
|
2883
|
+
* @returns AsyncIterable of {@link ListUseCasesCommandOutput}.
|
|
2884
|
+
*/
|
|
2885
|
+
paginateListUseCases(args: ListUseCasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUseCasesCommandOutput>;
|
|
2886
|
+
/**
|
|
2887
|
+
* @see {@link ListUserHierarchyGroupsCommand}
|
|
2888
|
+
* @param args - command input.
|
|
2889
|
+
* @param paginationConfig - optional pagination config.
|
|
2890
|
+
* @returns AsyncIterable of {@link ListUserHierarchyGroupsCommandOutput}.
|
|
2891
|
+
*/
|
|
2892
|
+
paginateListUserHierarchyGroups(args: ListUserHierarchyGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUserHierarchyGroupsCommandOutput>;
|
|
2893
|
+
/**
|
|
2894
|
+
* @see {@link ListUserProficienciesCommand}
|
|
2895
|
+
* @param args - command input.
|
|
2896
|
+
* @param paginationConfig - optional pagination config.
|
|
2897
|
+
* @returns AsyncIterable of {@link ListUserProficienciesCommandOutput}.
|
|
2898
|
+
*/
|
|
2899
|
+
paginateListUserProficiencies(args: ListUserProficienciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUserProficienciesCommandOutput>;
|
|
2900
|
+
/**
|
|
2901
|
+
* @see {@link ListUsersCommand}
|
|
2902
|
+
* @param args - command input.
|
|
2903
|
+
* @param paginationConfig - optional pagination config.
|
|
2904
|
+
* @returns AsyncIterable of {@link ListUsersCommandOutput}.
|
|
2905
|
+
*/
|
|
2906
|
+
paginateListUsers(args: ListUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListUsersCommandOutput>;
|
|
2907
|
+
/**
|
|
2908
|
+
* @see {@link ListViewsCommand}
|
|
2909
|
+
* @param args - command input.
|
|
2910
|
+
* @param paginationConfig - optional pagination config.
|
|
2911
|
+
* @returns AsyncIterable of {@link ListViewsCommandOutput}.
|
|
2912
|
+
*/
|
|
2913
|
+
paginateListViews(args: ListViewsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListViewsCommandOutput>;
|
|
2914
|
+
/**
|
|
2915
|
+
* @see {@link ListViewVersionsCommand}
|
|
2916
|
+
* @param args - command input.
|
|
2917
|
+
* @param paginationConfig - optional pagination config.
|
|
2918
|
+
* @returns AsyncIterable of {@link ListViewVersionsCommandOutput}.
|
|
2919
|
+
*/
|
|
2920
|
+
paginateListViewVersions(args: ListViewVersionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListViewVersionsCommandOutput>;
|
|
2921
|
+
/**
|
|
2922
|
+
* @see {@link ListWorkspacePagesCommand}
|
|
2923
|
+
* @param args - command input.
|
|
2924
|
+
* @param paginationConfig - optional pagination config.
|
|
2925
|
+
* @returns AsyncIterable of {@link ListWorkspacePagesCommandOutput}.
|
|
2926
|
+
*/
|
|
2927
|
+
paginateListWorkspacePages(args: ListWorkspacePagesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkspacePagesCommandOutput>;
|
|
2928
|
+
/**
|
|
2929
|
+
* @see {@link ListWorkspacesCommand}
|
|
2930
|
+
* @param args - command input.
|
|
2931
|
+
* @param paginationConfig - optional pagination config.
|
|
2932
|
+
* @returns AsyncIterable of {@link ListWorkspacesCommandOutput}.
|
|
2933
|
+
*/
|
|
2934
|
+
paginateListWorkspaces(args: ListWorkspacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkspacesCommandOutput>;
|
|
2935
|
+
/**
|
|
2936
|
+
* @see {@link SearchAgentStatusesCommand}
|
|
2937
|
+
* @param args - command input.
|
|
2938
|
+
* @param paginationConfig - optional pagination config.
|
|
2939
|
+
* @returns AsyncIterable of {@link SearchAgentStatusesCommandOutput}.
|
|
2940
|
+
*/
|
|
2941
|
+
paginateSearchAgentStatuses(args: SearchAgentStatusesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchAgentStatusesCommandOutput>;
|
|
2942
|
+
/**
|
|
2943
|
+
* @see {@link SearchAvailablePhoneNumbersCommand}
|
|
2944
|
+
* @param args - command input.
|
|
2945
|
+
* @param paginationConfig - optional pagination config.
|
|
2946
|
+
* @returns AsyncIterable of {@link SearchAvailablePhoneNumbersCommandOutput}.
|
|
2947
|
+
*/
|
|
2948
|
+
paginateSearchAvailablePhoneNumbers(args: SearchAvailablePhoneNumbersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchAvailablePhoneNumbersCommandOutput>;
|
|
2949
|
+
/**
|
|
2950
|
+
* @see {@link SearchContactFlowModulesCommand}
|
|
2951
|
+
* @param args - command input.
|
|
2952
|
+
* @param paginationConfig - optional pagination config.
|
|
2953
|
+
* @returns AsyncIterable of {@link SearchContactFlowModulesCommandOutput}.
|
|
2954
|
+
*/
|
|
2955
|
+
paginateSearchContactFlowModules(args: SearchContactFlowModulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchContactFlowModulesCommandOutput>;
|
|
2956
|
+
/**
|
|
2957
|
+
* @see {@link SearchContactFlowsCommand}
|
|
2958
|
+
* @param args - command input.
|
|
2959
|
+
* @param paginationConfig - optional pagination config.
|
|
2960
|
+
* @returns AsyncIterable of {@link SearchContactFlowsCommandOutput}.
|
|
2961
|
+
*/
|
|
2962
|
+
paginateSearchContactFlows(args: SearchContactFlowsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchContactFlowsCommandOutput>;
|
|
2963
|
+
/**
|
|
2964
|
+
* @see {@link SearchContactsCommand}
|
|
2965
|
+
* @param args - command input.
|
|
2966
|
+
* @param paginationConfig - optional pagination config.
|
|
2967
|
+
* @returns AsyncIterable of {@link SearchContactsCommandOutput}.
|
|
2968
|
+
*/
|
|
2969
|
+
paginateSearchContacts(args: SearchContactsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchContactsCommandOutput>;
|
|
2970
|
+
/**
|
|
2971
|
+
* @see {@link SearchDataTablesCommand}
|
|
2972
|
+
* @param args - command input.
|
|
2973
|
+
* @param paginationConfig - optional pagination config.
|
|
2974
|
+
* @returns AsyncIterable of {@link SearchDataTablesCommandOutput}.
|
|
2975
|
+
*/
|
|
2976
|
+
paginateSearchDataTables(args: SearchDataTablesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchDataTablesCommandOutput>;
|
|
2977
|
+
/**
|
|
2978
|
+
* @see {@link SearchHoursOfOperationOverridesCommand}
|
|
2979
|
+
* @param args - command input.
|
|
2980
|
+
* @param paginationConfig - optional pagination config.
|
|
2981
|
+
* @returns AsyncIterable of {@link SearchHoursOfOperationOverridesCommandOutput}.
|
|
2982
|
+
*/
|
|
2983
|
+
paginateSearchHoursOfOperationOverrides(args: SearchHoursOfOperationOverridesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchHoursOfOperationOverridesCommandOutput>;
|
|
2984
|
+
/**
|
|
2985
|
+
* @see {@link SearchHoursOfOperationsCommand}
|
|
2986
|
+
* @param args - command input.
|
|
2987
|
+
* @param paginationConfig - optional pagination config.
|
|
2988
|
+
* @returns AsyncIterable of {@link SearchHoursOfOperationsCommandOutput}.
|
|
2989
|
+
*/
|
|
2990
|
+
paginateSearchHoursOfOperations(args: SearchHoursOfOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchHoursOfOperationsCommandOutput>;
|
|
2991
|
+
/**
|
|
2992
|
+
* @see {@link SearchPredefinedAttributesCommand}
|
|
2993
|
+
* @param args - command input.
|
|
2994
|
+
* @param paginationConfig - optional pagination config.
|
|
2995
|
+
* @returns AsyncIterable of {@link SearchPredefinedAttributesCommandOutput}.
|
|
2996
|
+
*/
|
|
2997
|
+
paginateSearchPredefinedAttributes(args: SearchPredefinedAttributesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchPredefinedAttributesCommandOutput>;
|
|
2998
|
+
/**
|
|
2999
|
+
* @see {@link SearchPromptsCommand}
|
|
3000
|
+
* @param args - command input.
|
|
3001
|
+
* @param paginationConfig - optional pagination config.
|
|
3002
|
+
* @returns AsyncIterable of {@link SearchPromptsCommandOutput}.
|
|
3003
|
+
*/
|
|
3004
|
+
paginateSearchPrompts(args: SearchPromptsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchPromptsCommandOutput>;
|
|
3005
|
+
/**
|
|
3006
|
+
* @see {@link SearchQueuesCommand}
|
|
3007
|
+
* @param args - command input.
|
|
3008
|
+
* @param paginationConfig - optional pagination config.
|
|
3009
|
+
* @returns AsyncIterable of {@link SearchQueuesCommandOutput}.
|
|
3010
|
+
*/
|
|
3011
|
+
paginateSearchQueues(args: SearchQueuesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchQueuesCommandOutput>;
|
|
3012
|
+
/**
|
|
3013
|
+
* @see {@link SearchQuickConnectsCommand}
|
|
3014
|
+
* @param args - command input.
|
|
3015
|
+
* @param paginationConfig - optional pagination config.
|
|
3016
|
+
* @returns AsyncIterable of {@link SearchQuickConnectsCommandOutput}.
|
|
3017
|
+
*/
|
|
3018
|
+
paginateSearchQuickConnects(args: SearchQuickConnectsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchQuickConnectsCommandOutput>;
|
|
3019
|
+
/**
|
|
3020
|
+
* @see {@link SearchResourceTagsCommand}
|
|
3021
|
+
* @param args - command input.
|
|
3022
|
+
* @param paginationConfig - optional pagination config.
|
|
3023
|
+
* @returns AsyncIterable of {@link SearchResourceTagsCommandOutput}.
|
|
3024
|
+
*/
|
|
3025
|
+
paginateSearchResourceTags(args: SearchResourceTagsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchResourceTagsCommandOutput>;
|
|
3026
|
+
/**
|
|
3027
|
+
* @see {@link SearchRoutingProfilesCommand}
|
|
3028
|
+
* @param args - command input.
|
|
3029
|
+
* @param paginationConfig - optional pagination config.
|
|
3030
|
+
* @returns AsyncIterable of {@link SearchRoutingProfilesCommandOutput}.
|
|
3031
|
+
*/
|
|
3032
|
+
paginateSearchRoutingProfiles(args: SearchRoutingProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchRoutingProfilesCommandOutput>;
|
|
3033
|
+
/**
|
|
3034
|
+
* @see {@link SearchSecurityProfilesCommand}
|
|
3035
|
+
* @param args - command input.
|
|
3036
|
+
* @param paginationConfig - optional pagination config.
|
|
3037
|
+
* @returns AsyncIterable of {@link SearchSecurityProfilesCommandOutput}.
|
|
3038
|
+
*/
|
|
3039
|
+
paginateSearchSecurityProfiles(args: SearchSecurityProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchSecurityProfilesCommandOutput>;
|
|
3040
|
+
/**
|
|
3041
|
+
* @see {@link SearchTestCasesCommand}
|
|
3042
|
+
* @param args - command input.
|
|
3043
|
+
* @param paginationConfig - optional pagination config.
|
|
3044
|
+
* @returns AsyncIterable of {@link SearchTestCasesCommandOutput}.
|
|
3045
|
+
*/
|
|
3046
|
+
paginateSearchTestCases(args: SearchTestCasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchTestCasesCommandOutput>;
|
|
3047
|
+
/**
|
|
3048
|
+
* @see {@link SearchUserHierarchyGroupsCommand}
|
|
3049
|
+
* @param args - command input.
|
|
3050
|
+
* @param paginationConfig - optional pagination config.
|
|
3051
|
+
* @returns AsyncIterable of {@link SearchUserHierarchyGroupsCommandOutput}.
|
|
3052
|
+
*/
|
|
3053
|
+
paginateSearchUserHierarchyGroups(args: SearchUserHierarchyGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchUserHierarchyGroupsCommandOutput>;
|
|
3054
|
+
/**
|
|
3055
|
+
* @see {@link SearchUsersCommand}
|
|
3056
|
+
* @param args - command input.
|
|
3057
|
+
* @param paginationConfig - optional pagination config.
|
|
3058
|
+
* @returns AsyncIterable of {@link SearchUsersCommandOutput}.
|
|
3059
|
+
*/
|
|
3060
|
+
paginateSearchUsers(args: SearchUsersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchUsersCommandOutput>;
|
|
3061
|
+
/**
|
|
3062
|
+
* @see {@link SearchViewsCommand}
|
|
3063
|
+
* @param args - command input.
|
|
3064
|
+
* @param paginationConfig - optional pagination config.
|
|
3065
|
+
* @returns AsyncIterable of {@link SearchViewsCommandOutput}.
|
|
3066
|
+
*/
|
|
3067
|
+
paginateSearchViews(args: SearchViewsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchViewsCommandOutput>;
|
|
3068
|
+
/**
|
|
3069
|
+
* @see {@link SearchVocabulariesCommand}
|
|
3070
|
+
* @param args - command input.
|
|
3071
|
+
* @param paginationConfig - optional pagination config.
|
|
3072
|
+
* @returns AsyncIterable of {@link SearchVocabulariesCommandOutput}.
|
|
3073
|
+
*/
|
|
3074
|
+
paginateSearchVocabularies(args: SearchVocabulariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchVocabulariesCommandOutput>;
|
|
3075
|
+
/**
|
|
3076
|
+
* @see {@link SearchWorkspaceAssociationsCommand}
|
|
3077
|
+
* @param args - command input.
|
|
3078
|
+
* @param paginationConfig - optional pagination config.
|
|
3079
|
+
* @returns AsyncIterable of {@link SearchWorkspaceAssociationsCommandOutput}.
|
|
3080
|
+
*/
|
|
3081
|
+
paginateSearchWorkspaceAssociations(args: SearchWorkspaceAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchWorkspaceAssociationsCommandOutput>;
|
|
3082
|
+
/**
|
|
3083
|
+
* @see {@link SearchWorkspacesCommand}
|
|
3084
|
+
* @param args - command input.
|
|
3085
|
+
* @param paginationConfig - optional pagination config.
|
|
3086
|
+
* @returns AsyncIterable of {@link SearchWorkspacesCommandOutput}.
|
|
3087
|
+
*/
|
|
3088
|
+
paginateSearchWorkspaces(args: SearchWorkspacesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchWorkspacesCommandOutput>;
|
|
2494
3089
|
}
|
|
2495
3090
|
/**
|
|
2496
3091
|
* <ul>
|
|
@@ -147,6 +147,23 @@ declare const SearchContactsCommand_base: {
|
|
|
147
147
|
* ActiveRegions: [ // ActiveRegionList
|
|
148
148
|
* "STRING_VALUE",
|
|
149
149
|
* ],
|
|
150
|
+
* ContactTags: { // ControlPlaneTagFilter
|
|
151
|
+
* OrConditions: [ // TagOrConditionList
|
|
152
|
+
* [ // TagAndConditionList
|
|
153
|
+
* { // TagCondition
|
|
154
|
+
* TagKey: "STRING_VALUE",
|
|
155
|
+
* TagValue: "STRING_VALUE",
|
|
156
|
+
* },
|
|
157
|
+
* ],
|
|
158
|
+
* ],
|
|
159
|
+
* AndConditions: [
|
|
160
|
+
* {
|
|
161
|
+
* TagKey: "STRING_VALUE",
|
|
162
|
+
* TagValue: "STRING_VALUE",
|
|
163
|
+
* },
|
|
164
|
+
* ],
|
|
165
|
+
* TagCondition: "<TagCondition>",
|
|
166
|
+
* },
|
|
150
167
|
* },
|
|
151
168
|
* MaxResults: Number("int"),
|
|
152
169
|
* NextToken: "STRING_VALUE",
|
|
@@ -300,6 +317,9 @@ declare const SearchContactsCommand_base: {
|
|
|
300
317
|
* // ActivationTimestamp: new Date("TIMESTAMP"),
|
|
301
318
|
* // Index: Number("int"),
|
|
302
319
|
* // },
|
|
320
|
+
* // Tags: { // ContactTagMap
|
|
321
|
+
* // "<keys>": "STRING_VALUE",
|
|
322
|
+
* // },
|
|
303
323
|
* // GlobalResiliencyMetadata: { // GlobalResiliencyMetadata
|
|
304
324
|
* // ActiveRegion: "STRING_VALUE",
|
|
305
325
|
* // OriginRegion: "STRING_VALUE",
|
|
@@ -128,6 +128,12 @@ declare const StartTaskContactCommand_base: {
|
|
|
128
128
|
* ValueArn: "STRING_VALUE",
|
|
129
129
|
* },
|
|
130
130
|
* },
|
|
131
|
+
* Attachments: [ // TaskAttachments
|
|
132
|
+
* { // TaskAttachment
|
|
133
|
+
* FileName: "STRING_VALUE", // required
|
|
134
|
+
* S3Url: "STRING_VALUE", // required
|
|
135
|
+
* },
|
|
136
|
+
* ],
|
|
131
137
|
* };
|
|
132
138
|
* const command = new StartTaskContactCommand(input);
|
|
133
139
|
* const response = await client.send(command);
|