list_async_invokes¶
Operation¶
list_async_invokes
async
¶
list_async_invokes(input: ListAsyncInvokesInput, plugins: list[Plugin] | None = None) -> ListAsyncInvokesOutput
Lists asynchronous invocations.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
ListAsyncInvokesInput
|
An instance of |
required |
plugins
|
list[Plugin] | None
|
A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations. |
None
|
Returns:
| Type | Description |
|---|---|
ListAsyncInvokesOutput
|
An instance of |
Source code in src/aws_sdk_bedrock_runtime/client.py
647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 | |
Input¶
ListAsyncInvokesInput
dataclass
¶
Dataclass for ListAsyncInvokesInput structure.
Source code in src/aws_sdk_bedrock_runtime/models.py
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 | |
Attributes¶
max_results
class-attribute
instance-attribute
¶
max_results: int | None = None
The maximum number of invocations to return in one page of results.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
Specify the pagination token from a previous request to retrieve the next page of results.
sort_by
class-attribute
instance-attribute
¶
sort_by: str = 'SubmissionTime'
How to sort the response.
sort_order
class-attribute
instance-attribute
¶
sort_order: str = 'Descending'
The sorting order for the response.
status_equals
class-attribute
instance-attribute
¶
status_equals: str | None = None
Filter invocations by status.
submit_time_after
class-attribute
instance-attribute
¶
submit_time_after: datetime | None = None
Include invocations submitted after this time.
submit_time_before
class-attribute
instance-attribute
¶
submit_time_before: datetime | None = None
Include invocations submitted before this time.
Output¶
ListAsyncInvokesOutput
dataclass
¶
Dataclass for ListAsyncInvokesOutput structure.
Source code in src/aws_sdk_bedrock_runtime/models.py
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 | |
Attributes¶
async_invoke_summaries
class-attribute
instance-attribute
¶
async_invoke_summaries: list[AsyncInvokeSummary] | None = None
A list of invocation summaries.
next_token
class-attribute
instance-attribute
¶
next_token: str | None = None
Specify the pagination token from a previous request to retrieve the next page of results.