types-aiobotocore-swf 2.26.0__py3-none-any.whl

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.
@@ -0,0 +1,64 @@
1
+ """
2
+ Main interface for swf service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_swf/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_swf import (
13
+ Client,
14
+ GetWorkflowExecutionHistoryPaginator,
15
+ ListActivityTypesPaginator,
16
+ ListClosedWorkflowExecutionsPaginator,
17
+ ListDomainsPaginator,
18
+ ListOpenWorkflowExecutionsPaginator,
19
+ ListWorkflowTypesPaginator,
20
+ PollForDecisionTaskPaginator,
21
+ SWFClient,
22
+ )
23
+
24
+ session = get_session()
25
+ async with session.create_client("swf") as client:
26
+ client: SWFClient
27
+ ...
28
+
29
+
30
+ get_workflow_execution_history_paginator: GetWorkflowExecutionHistoryPaginator = client.get_paginator("get_workflow_execution_history")
31
+ list_activity_types_paginator: ListActivityTypesPaginator = client.get_paginator("list_activity_types")
32
+ list_closed_workflow_executions_paginator: ListClosedWorkflowExecutionsPaginator = client.get_paginator("list_closed_workflow_executions")
33
+ list_domains_paginator: ListDomainsPaginator = client.get_paginator("list_domains")
34
+ list_open_workflow_executions_paginator: ListOpenWorkflowExecutionsPaginator = client.get_paginator("list_open_workflow_executions")
35
+ list_workflow_types_paginator: ListWorkflowTypesPaginator = client.get_paginator("list_workflow_types")
36
+ poll_for_decision_task_paginator: PollForDecisionTaskPaginator = client.get_paginator("poll_for_decision_task")
37
+ ```
38
+ """
39
+
40
+ from .client import SWFClient
41
+ from .paginator import (
42
+ GetWorkflowExecutionHistoryPaginator,
43
+ ListActivityTypesPaginator,
44
+ ListClosedWorkflowExecutionsPaginator,
45
+ ListDomainsPaginator,
46
+ ListOpenWorkflowExecutionsPaginator,
47
+ ListWorkflowTypesPaginator,
48
+ PollForDecisionTaskPaginator,
49
+ )
50
+
51
+ Client = SWFClient
52
+
53
+
54
+ __all__ = (
55
+ "Client",
56
+ "GetWorkflowExecutionHistoryPaginator",
57
+ "ListActivityTypesPaginator",
58
+ "ListClosedWorkflowExecutionsPaginator",
59
+ "ListDomainsPaginator",
60
+ "ListOpenWorkflowExecutionsPaginator",
61
+ "ListWorkflowTypesPaginator",
62
+ "PollForDecisionTaskPaginator",
63
+ "SWFClient",
64
+ )
@@ -0,0 +1,63 @@
1
+ """
2
+ Main interface for swf service.
3
+
4
+ [Documentation](https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_swf/)
5
+
6
+ Copyright 2025 Vlad Emelianov
7
+
8
+ Usage::
9
+
10
+ ```python
11
+ from aiobotocore.session import get_session
12
+ from types_aiobotocore_swf import (
13
+ Client,
14
+ GetWorkflowExecutionHistoryPaginator,
15
+ ListActivityTypesPaginator,
16
+ ListClosedWorkflowExecutionsPaginator,
17
+ ListDomainsPaginator,
18
+ ListOpenWorkflowExecutionsPaginator,
19
+ ListWorkflowTypesPaginator,
20
+ PollForDecisionTaskPaginator,
21
+ SWFClient,
22
+ )
23
+
24
+ session = get_session()
25
+ async with session.create_client("swf") as client:
26
+ client: SWFClient
27
+ ...
28
+
29
+
30
+ get_workflow_execution_history_paginator: GetWorkflowExecutionHistoryPaginator = client.get_paginator("get_workflow_execution_history")
31
+ list_activity_types_paginator: ListActivityTypesPaginator = client.get_paginator("list_activity_types")
32
+ list_closed_workflow_executions_paginator: ListClosedWorkflowExecutionsPaginator = client.get_paginator("list_closed_workflow_executions")
33
+ list_domains_paginator: ListDomainsPaginator = client.get_paginator("list_domains")
34
+ list_open_workflow_executions_paginator: ListOpenWorkflowExecutionsPaginator = client.get_paginator("list_open_workflow_executions")
35
+ list_workflow_types_paginator: ListWorkflowTypesPaginator = client.get_paginator("list_workflow_types")
36
+ poll_for_decision_task_paginator: PollForDecisionTaskPaginator = client.get_paginator("poll_for_decision_task")
37
+ ```
38
+ """
39
+
40
+ from .client import SWFClient
41
+ from .paginator import (
42
+ GetWorkflowExecutionHistoryPaginator,
43
+ ListActivityTypesPaginator,
44
+ ListClosedWorkflowExecutionsPaginator,
45
+ ListDomainsPaginator,
46
+ ListOpenWorkflowExecutionsPaginator,
47
+ ListWorkflowTypesPaginator,
48
+ PollForDecisionTaskPaginator,
49
+ )
50
+
51
+ Client = SWFClient
52
+
53
+ __all__ = (
54
+ "Client",
55
+ "GetWorkflowExecutionHistoryPaginator",
56
+ "ListActivityTypesPaginator",
57
+ "ListClosedWorkflowExecutionsPaginator",
58
+ "ListDomainsPaginator",
59
+ "ListOpenWorkflowExecutionsPaginator",
60
+ "ListWorkflowTypesPaginator",
61
+ "PollForDecisionTaskPaginator",
62
+ "SWFClient",
63
+ )
@@ -0,0 +1,43 @@
1
+ """
2
+ Main CLI entrypoint.
3
+
4
+ Copyright 2025 Vlad Emelianov
5
+ """
6
+
7
+ import sys
8
+
9
+
10
+ def print_info() -> None:
11
+ """
12
+ Print package info to stdout.
13
+ """
14
+ sys.stdout.write(
15
+ "Type annotations for aiobotocore SWF 2.26.0\n"
16
+ "Version: 2.26.0\n"
17
+ "Builder version: 8.12.0\n"
18
+ "Docs: https://youtype.github.io/types_aiobotocore_docs/types_aiobotocore_swf//\n"
19
+ "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/swf.html#swf\n"
20
+ "Other services: https://pypi.org/project/boto3-stubs/\n"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
+ )
23
+
24
+
25
+ def print_version() -> None:
26
+ """
27
+ Print package version to stdout.
28
+ """
29
+ sys.stdout.write("2.26.0\n")
30
+
31
+
32
+ def main() -> None:
33
+ """
34
+ Main CLI entrypoint.
35
+ """
36
+ if "--version" in sys.argv:
37
+ print_version()
38
+ return
39
+ print_info()
40
+
41
+
42
+ if __name__ == "__main__":
43
+ main()