mypy-boto3-lambda-core 1.43.35__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.
- mypy_boto3_lambda_core/__init__.py +31 -0
- mypy_boto3_lambda_core/__init__.pyi +30 -0
- mypy_boto3_lambda_core/__main__.py +43 -0
- mypy_boto3_lambda_core/client.py +157 -0
- mypy_boto3_lambda_core/client.pyi +154 -0
- mypy_boto3_lambda_core/literals.py +537 -0
- mypy_boto3_lambda_core/literals.pyi +535 -0
- mypy_boto3_lambda_core/paginator.py +64 -0
- mypy_boto3_lambda_core/paginator.pyi +60 -0
- mypy_boto3_lambda_core/py.typed +0 -0
- mypy_boto3_lambda_core/type_defs.py +202 -0
- mypy_boto3_lambda_core/type_defs.pyi +182 -0
- mypy_boto3_lambda_core/version.py +7 -0
- mypy_boto3_lambda_core-1.43.35.dist-info/METADATA +473 -0
- mypy_boto3_lambda_core-1.43.35.dist-info/RECORD +18 -0
- mypy_boto3_lambda_core-1.43.35.dist-info/WHEEL +5 -0
- mypy_boto3_lambda_core-1.43.35.dist-info/licenses/LICENSE +21 -0
- mypy_boto3_lambda_core-1.43.35.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for lambda-core service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/)
|
|
5
|
+
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from boto3.session import Session
|
|
12
|
+
from mypy_boto3_lambda_core import (
|
|
13
|
+
Client,
|
|
14
|
+
LambdaCoreClient,
|
|
15
|
+
ListNetworkConnectorsPaginator,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
session = Session()
|
|
19
|
+
client: LambdaCoreClient = session.client("lambda-core")
|
|
20
|
+
|
|
21
|
+
list_network_connectors_paginator: ListNetworkConnectorsPaginator = client.get_paginator("list_network_connectors")
|
|
22
|
+
```
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from .client import LambdaCoreClient
|
|
26
|
+
from .paginator import ListNetworkConnectorsPaginator
|
|
27
|
+
|
|
28
|
+
Client = LambdaCoreClient
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
__all__ = ("Client", "LambdaCoreClient", "ListNetworkConnectorsPaginator")
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main interface for lambda-core service.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/)
|
|
5
|
+
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from boto3.session import Session
|
|
12
|
+
from mypy_boto3_lambda_core import (
|
|
13
|
+
Client,
|
|
14
|
+
LambdaCoreClient,
|
|
15
|
+
ListNetworkConnectorsPaginator,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
session = Session()
|
|
19
|
+
client: LambdaCoreClient = session.client("lambda-core")
|
|
20
|
+
|
|
21
|
+
list_network_connectors_paginator: ListNetworkConnectorsPaginator = client.get_paginator("list_network_connectors")
|
|
22
|
+
```
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
from .client import LambdaCoreClient
|
|
26
|
+
from .paginator import ListNetworkConnectorsPaginator
|
|
27
|
+
|
|
28
|
+
Client = LambdaCoreClient
|
|
29
|
+
|
|
30
|
+
__all__ = ("Client", "LambdaCoreClient", "ListNetworkConnectorsPaginator")
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2026 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 boto3 LambdaCore 1.43.35\n"
|
|
16
|
+
"Version: 1.43.35\n"
|
|
17
|
+
"Builder version: 8.12.0\n"
|
|
18
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core//\n"
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core.html#lambdacore\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("1.43.35\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()
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for lambda-core service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from boto3.session import Session
|
|
12
|
+
from mypy_boto3_lambda_core.client import LambdaCoreClient
|
|
13
|
+
|
|
14
|
+
session = Session()
|
|
15
|
+
client: LambdaCoreClient = session.client("lambda-core")
|
|
16
|
+
```
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
21
|
+
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
23
|
+
from typing import Any
|
|
24
|
+
|
|
25
|
+
from botocore.client import BaseClient, ClientMeta
|
|
26
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
27
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
28
|
+
|
|
29
|
+
from .paginator import ListNetworkConnectorsPaginator
|
|
30
|
+
from .type_defs import (
|
|
31
|
+
CreateNetworkConnectorRequestTypeDef,
|
|
32
|
+
CreateNetworkConnectorResponseTypeDef,
|
|
33
|
+
DeleteNetworkConnectorRequestTypeDef,
|
|
34
|
+
DeleteNetworkConnectorResponseTypeDef,
|
|
35
|
+
GetNetworkConnectorRequestTypeDef,
|
|
36
|
+
GetNetworkConnectorResponseTypeDef,
|
|
37
|
+
ListNetworkConnectorsRequestTypeDef,
|
|
38
|
+
ListNetworkConnectorsResponseTypeDef,
|
|
39
|
+
UpdateNetworkConnectorRequestTypeDef,
|
|
40
|
+
UpdateNetworkConnectorResponseTypeDef,
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
if sys.version_info >= (3, 12):
|
|
44
|
+
from typing import Literal, Unpack
|
|
45
|
+
else:
|
|
46
|
+
from typing_extensions import Literal, Unpack
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
__all__ = ("LambdaCoreClient",)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class Exceptions(BaseClientExceptions):
|
|
53
|
+
ClientError: type[BotocoreClientError]
|
|
54
|
+
InvalidParameterValueException: type[BotocoreClientError]
|
|
55
|
+
NetworkConnectorLimitExceededException: type[BotocoreClientError]
|
|
56
|
+
ResourceConflictException: type[BotocoreClientError]
|
|
57
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
58
|
+
ServiceException: type[BotocoreClientError]
|
|
59
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
class LambdaCoreClient(BaseClient):
|
|
63
|
+
"""
|
|
64
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core.html#LambdaCore.Client)
|
|
65
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/)
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
meta: ClientMeta
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
def exceptions(self) -> Exceptions:
|
|
72
|
+
"""
|
|
73
|
+
LambdaCoreClient exceptions.
|
|
74
|
+
|
|
75
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core.html#LambdaCore.Client)
|
|
76
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#exceptions)
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
80
|
+
"""
|
|
81
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/can_paginate.html)
|
|
82
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#can_paginate)
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
def generate_presigned_url(
|
|
86
|
+
self,
|
|
87
|
+
ClientMethod: str,
|
|
88
|
+
Params: Mapping[str, Any] = ...,
|
|
89
|
+
ExpiresIn: int = 3600,
|
|
90
|
+
HttpMethod: str = ...,
|
|
91
|
+
) -> str:
|
|
92
|
+
"""
|
|
93
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/generate_presigned_url.html)
|
|
94
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#generate_presigned_url)
|
|
95
|
+
"""
|
|
96
|
+
|
|
97
|
+
def create_network_connector(
|
|
98
|
+
self, **kwargs: Unpack[CreateNetworkConnectorRequestTypeDef]
|
|
99
|
+
) -> CreateNetworkConnectorResponseTypeDef:
|
|
100
|
+
"""
|
|
101
|
+
Creates a network connector that enables Lambda compute resources to route
|
|
102
|
+
outbound traffic through your Amazon VPC.
|
|
103
|
+
|
|
104
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/create_network_connector.html)
|
|
105
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#create_network_connector)
|
|
106
|
+
"""
|
|
107
|
+
|
|
108
|
+
def delete_network_connector(
|
|
109
|
+
self, **kwargs: Unpack[DeleteNetworkConnectorRequestTypeDef]
|
|
110
|
+
) -> DeleteNetworkConnectorResponseTypeDef:
|
|
111
|
+
"""
|
|
112
|
+
Initiates deletion of a network connector.
|
|
113
|
+
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/delete_network_connector.html)
|
|
115
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#delete_network_connector)
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
def get_network_connector(
|
|
119
|
+
self, **kwargs: Unpack[GetNetworkConnectorRequestTypeDef]
|
|
120
|
+
) -> GetNetworkConnectorResponseTypeDef:
|
|
121
|
+
"""
|
|
122
|
+
Retrieves the current configuration, state, and metadata of a network connector.
|
|
123
|
+
|
|
124
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/get_network_connector.html)
|
|
125
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#get_network_connector)
|
|
126
|
+
"""
|
|
127
|
+
|
|
128
|
+
def list_network_connectors(
|
|
129
|
+
self, **kwargs: Unpack[ListNetworkConnectorsRequestTypeDef]
|
|
130
|
+
) -> ListNetworkConnectorsResponseTypeDef:
|
|
131
|
+
"""
|
|
132
|
+
Returns a paginated list of network connectors in your account for the current
|
|
133
|
+
Region.
|
|
134
|
+
|
|
135
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/list_network_connectors.html)
|
|
136
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#list_network_connectors)
|
|
137
|
+
"""
|
|
138
|
+
|
|
139
|
+
def update_network_connector(
|
|
140
|
+
self, **kwargs: Unpack[UpdateNetworkConnectorRequestTypeDef]
|
|
141
|
+
) -> UpdateNetworkConnectorResponseTypeDef:
|
|
142
|
+
"""
|
|
143
|
+
Updates the VPC configuration or operator role of an existing network connector.
|
|
144
|
+
|
|
145
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/update_network_connector.html)
|
|
146
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#update_network_connector)
|
|
147
|
+
"""
|
|
148
|
+
|
|
149
|
+
def get_paginator( # type: ignore[override]
|
|
150
|
+
self, operation_name: Literal["list_network_connectors"]
|
|
151
|
+
) -> ListNetworkConnectorsPaginator:
|
|
152
|
+
"""
|
|
153
|
+
Create a paginator for an operation.
|
|
154
|
+
|
|
155
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/get_paginator.html)
|
|
156
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#get_paginator)
|
|
157
|
+
"""
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for lambda-core service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/)
|
|
5
|
+
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
|
+
|
|
8
|
+
Usage::
|
|
9
|
+
|
|
10
|
+
```python
|
|
11
|
+
from boto3.session import Session
|
|
12
|
+
from mypy_boto3_lambda_core.client import LambdaCoreClient
|
|
13
|
+
|
|
14
|
+
session = Session()
|
|
15
|
+
client: LambdaCoreClient = session.client("lambda-core")
|
|
16
|
+
```
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
21
|
+
import sys
|
|
22
|
+
from collections.abc import Mapping
|
|
23
|
+
from typing import Any
|
|
24
|
+
|
|
25
|
+
from botocore.client import BaseClient, ClientMeta
|
|
26
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
27
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
28
|
+
|
|
29
|
+
from .paginator import ListNetworkConnectorsPaginator
|
|
30
|
+
from .type_defs import (
|
|
31
|
+
CreateNetworkConnectorRequestTypeDef,
|
|
32
|
+
CreateNetworkConnectorResponseTypeDef,
|
|
33
|
+
DeleteNetworkConnectorRequestTypeDef,
|
|
34
|
+
DeleteNetworkConnectorResponseTypeDef,
|
|
35
|
+
GetNetworkConnectorRequestTypeDef,
|
|
36
|
+
GetNetworkConnectorResponseTypeDef,
|
|
37
|
+
ListNetworkConnectorsRequestTypeDef,
|
|
38
|
+
ListNetworkConnectorsResponseTypeDef,
|
|
39
|
+
UpdateNetworkConnectorRequestTypeDef,
|
|
40
|
+
UpdateNetworkConnectorResponseTypeDef,
|
|
41
|
+
)
|
|
42
|
+
|
|
43
|
+
if sys.version_info >= (3, 12):
|
|
44
|
+
from typing import Literal, Unpack
|
|
45
|
+
else:
|
|
46
|
+
from typing_extensions import Literal, Unpack
|
|
47
|
+
|
|
48
|
+
__all__ = ("LambdaCoreClient",)
|
|
49
|
+
|
|
50
|
+
class Exceptions(BaseClientExceptions):
|
|
51
|
+
ClientError: type[BotocoreClientError]
|
|
52
|
+
InvalidParameterValueException: type[BotocoreClientError]
|
|
53
|
+
NetworkConnectorLimitExceededException: type[BotocoreClientError]
|
|
54
|
+
ResourceConflictException: type[BotocoreClientError]
|
|
55
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
56
|
+
ServiceException: type[BotocoreClientError]
|
|
57
|
+
TooManyRequestsException: type[BotocoreClientError]
|
|
58
|
+
|
|
59
|
+
class LambdaCoreClient(BaseClient):
|
|
60
|
+
"""
|
|
61
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core.html#LambdaCore.Client)
|
|
62
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/)
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
meta: ClientMeta
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
def exceptions(self) -> Exceptions:
|
|
69
|
+
"""
|
|
70
|
+
LambdaCoreClient exceptions.
|
|
71
|
+
|
|
72
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core.html#LambdaCore.Client)
|
|
73
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#exceptions)
|
|
74
|
+
"""
|
|
75
|
+
|
|
76
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
77
|
+
"""
|
|
78
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/can_paginate.html)
|
|
79
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#can_paginate)
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
def generate_presigned_url(
|
|
83
|
+
self,
|
|
84
|
+
ClientMethod: str,
|
|
85
|
+
Params: Mapping[str, Any] = ...,
|
|
86
|
+
ExpiresIn: int = 3600,
|
|
87
|
+
HttpMethod: str = ...,
|
|
88
|
+
) -> str:
|
|
89
|
+
"""
|
|
90
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/generate_presigned_url.html)
|
|
91
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#generate_presigned_url)
|
|
92
|
+
"""
|
|
93
|
+
|
|
94
|
+
def create_network_connector(
|
|
95
|
+
self, **kwargs: Unpack[CreateNetworkConnectorRequestTypeDef]
|
|
96
|
+
) -> CreateNetworkConnectorResponseTypeDef:
|
|
97
|
+
"""
|
|
98
|
+
Creates a network connector that enables Lambda compute resources to route
|
|
99
|
+
outbound traffic through your Amazon VPC.
|
|
100
|
+
|
|
101
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/create_network_connector.html)
|
|
102
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#create_network_connector)
|
|
103
|
+
"""
|
|
104
|
+
|
|
105
|
+
def delete_network_connector(
|
|
106
|
+
self, **kwargs: Unpack[DeleteNetworkConnectorRequestTypeDef]
|
|
107
|
+
) -> DeleteNetworkConnectorResponseTypeDef:
|
|
108
|
+
"""
|
|
109
|
+
Initiates deletion of a network connector.
|
|
110
|
+
|
|
111
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/delete_network_connector.html)
|
|
112
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#delete_network_connector)
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
def get_network_connector(
|
|
116
|
+
self, **kwargs: Unpack[GetNetworkConnectorRequestTypeDef]
|
|
117
|
+
) -> GetNetworkConnectorResponseTypeDef:
|
|
118
|
+
"""
|
|
119
|
+
Retrieves the current configuration, state, and metadata of a network connector.
|
|
120
|
+
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/get_network_connector.html)
|
|
122
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#get_network_connector)
|
|
123
|
+
"""
|
|
124
|
+
|
|
125
|
+
def list_network_connectors(
|
|
126
|
+
self, **kwargs: Unpack[ListNetworkConnectorsRequestTypeDef]
|
|
127
|
+
) -> ListNetworkConnectorsResponseTypeDef:
|
|
128
|
+
"""
|
|
129
|
+
Returns a paginated list of network connectors in your account for the current
|
|
130
|
+
Region.
|
|
131
|
+
|
|
132
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/list_network_connectors.html)
|
|
133
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#list_network_connectors)
|
|
134
|
+
"""
|
|
135
|
+
|
|
136
|
+
def update_network_connector(
|
|
137
|
+
self, **kwargs: Unpack[UpdateNetworkConnectorRequestTypeDef]
|
|
138
|
+
) -> UpdateNetworkConnectorResponseTypeDef:
|
|
139
|
+
"""
|
|
140
|
+
Updates the VPC configuration or operator role of an existing network connector.
|
|
141
|
+
|
|
142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/update_network_connector.html)
|
|
143
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#update_network_connector)
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
def get_paginator( # type: ignore[override]
|
|
147
|
+
self, operation_name: Literal["list_network_connectors"]
|
|
148
|
+
) -> ListNetworkConnectorsPaginator:
|
|
149
|
+
"""
|
|
150
|
+
Create a paginator for an operation.
|
|
151
|
+
|
|
152
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/lambda-core/client/get_paginator.html)
|
|
153
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_lambda_core/client/#get_paginator)
|
|
154
|
+
"""
|