mypy-boto3-transfer 1.35.0__py3-none-any.whl → 1.35.72__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_transfer/__init__.py +11 -0
- mypy_boto3_transfer/__init__.pyi +10 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +467 -402
- mypy_boto3_transfer/client.pyi +466 -402
- mypy_boto3_transfer/literals.py +35 -8
- mypy_boto3_transfer/literals.pyi +33 -8
- mypy_boto3_transfer/paginator.py +95 -36
- mypy_boto3_transfer/paginator.pyi +89 -47
- mypy_boto3_transfer/type_defs.py +1477 -1618
- mypy_boto3_transfer/type_defs.pyi +1269 -1621
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +20 -7
- mypy_boto3_transfer/waiter.pyi +19 -9
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/METADATA +68 -22
- mypy_boto3_transfer-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -10,11 +10,15 @@ Usage::
|
|
|
10
10
|
|
|
11
11
|
data: As2ConnectorConfigTypeDef = ...
|
|
12
12
|
```
|
|
13
|
+
|
|
14
|
+
Copyright 2024 Vlad Emelianov
|
|
13
15
|
"""
|
|
14
16
|
|
|
15
17
|
import sys
|
|
16
18
|
from datetime import datetime
|
|
17
|
-
from typing import Dict, List, Sequence, Union
|
|
19
|
+
from typing import IO, Any, Dict, List, Sequence, Union
|
|
20
|
+
|
|
21
|
+
from botocore.response import StreamingBody
|
|
18
22
|
|
|
19
23
|
from .literals import (
|
|
20
24
|
AgreementStatusTypeType,
|
|
@@ -44,34 +48,39 @@ from .literals import (
|
|
|
44
48
|
SigningAlgType,
|
|
45
49
|
StateType,
|
|
46
50
|
TlsSessionResumptionModeType,
|
|
51
|
+
TransferTableStatusType,
|
|
47
52
|
WorkflowStepTypeType,
|
|
48
53
|
)
|
|
49
54
|
|
|
50
55
|
if sys.version_info >= (3, 12):
|
|
51
|
-
from typing import Literal
|
|
52
|
-
else:
|
|
53
|
-
from typing_extensions import Literal
|
|
54
|
-
if sys.version_info >= (3, 12):
|
|
55
|
-
from typing import NotRequired
|
|
56
|
+
from typing import Literal, NotRequired, TypedDict
|
|
56
57
|
else:
|
|
57
|
-
from typing_extensions import NotRequired
|
|
58
|
-
|
|
59
|
-
from typing import TypedDict
|
|
60
|
-
else:
|
|
61
|
-
from typing_extensions import TypedDict
|
|
58
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
59
|
+
|
|
62
60
|
|
|
63
61
|
__all__ = (
|
|
64
62
|
"As2ConnectorConfigTypeDef",
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
63
|
+
"BlobTypeDef",
|
|
64
|
+
"ConnectorFileTransferResultTypeDef",
|
|
65
|
+
"CopyStepDetailsTypeDef",
|
|
66
|
+
"CreateAccessRequestRequestTypeDef",
|
|
67
|
+
"CreateAccessResponseTypeDef",
|
|
68
|
+
"CreateAgreementRequestRequestTypeDef",
|
|
69
|
+
"CreateAgreementResponseTypeDef",
|
|
70
|
+
"CreateConnectorRequestRequestTypeDef",
|
|
71
|
+
"CreateConnectorResponseTypeDef",
|
|
72
|
+
"CreateProfileRequestRequestTypeDef",
|
|
73
|
+
"CreateProfileResponseTypeDef",
|
|
74
|
+
"CreateServerRequestRequestTypeDef",
|
|
75
|
+
"CreateServerResponseTypeDef",
|
|
76
|
+
"CreateUserRequestRequestTypeDef",
|
|
77
|
+
"CreateUserResponseTypeDef",
|
|
78
|
+
"CreateWebAppRequestRequestTypeDef",
|
|
79
|
+
"CreateWebAppResponseTypeDef",
|
|
80
|
+
"CreateWorkflowRequestRequestTypeDef",
|
|
81
|
+
"CreateWorkflowResponseTypeDef",
|
|
74
82
|
"CustomStepDetailsTypeDef",
|
|
83
|
+
"DecryptStepDetailsTypeDef",
|
|
75
84
|
"DeleteAccessRequestRequestTypeDef",
|
|
76
85
|
"DeleteAgreementRequestRequestTypeDef",
|
|
77
86
|
"DeleteCertificateRequestRequestTypeDef",
|
|
@@ -82,188 +91,212 @@ __all__ = (
|
|
|
82
91
|
"DeleteSshPublicKeyRequestRequestTypeDef",
|
|
83
92
|
"DeleteStepDetailsTypeDef",
|
|
84
93
|
"DeleteUserRequestRequestTypeDef",
|
|
94
|
+
"DeleteWebAppCustomizationRequestRequestTypeDef",
|
|
95
|
+
"DeleteWebAppRequestRequestTypeDef",
|
|
85
96
|
"DeleteWorkflowRequestRequestTypeDef",
|
|
86
97
|
"DescribeAccessRequestRequestTypeDef",
|
|
98
|
+
"DescribeAccessResponseTypeDef",
|
|
87
99
|
"DescribeAgreementRequestRequestTypeDef",
|
|
100
|
+
"DescribeAgreementResponseTypeDef",
|
|
88
101
|
"DescribeCertificateRequestRequestTypeDef",
|
|
102
|
+
"DescribeCertificateResponseTypeDef",
|
|
89
103
|
"DescribeConnectorRequestRequestTypeDef",
|
|
104
|
+
"DescribeConnectorResponseTypeDef",
|
|
90
105
|
"DescribeExecutionRequestRequestTypeDef",
|
|
106
|
+
"DescribeExecutionResponseTypeDef",
|
|
91
107
|
"DescribeHostKeyRequestRequestTypeDef",
|
|
108
|
+
"DescribeHostKeyResponseTypeDef",
|
|
92
109
|
"DescribeProfileRequestRequestTypeDef",
|
|
110
|
+
"DescribeProfileResponseTypeDef",
|
|
93
111
|
"DescribeSecurityPolicyRequestRequestTypeDef",
|
|
94
|
-
"
|
|
112
|
+
"DescribeSecurityPolicyResponseTypeDef",
|
|
95
113
|
"DescribeServerRequestRequestTypeDef",
|
|
96
|
-
"
|
|
114
|
+
"DescribeServerRequestServerOfflineWaitTypeDef",
|
|
115
|
+
"DescribeServerRequestServerOnlineWaitTypeDef",
|
|
116
|
+
"DescribeServerResponseTypeDef",
|
|
97
117
|
"DescribeUserRequestRequestTypeDef",
|
|
118
|
+
"DescribeUserResponseTypeDef",
|
|
119
|
+
"DescribeWebAppCustomizationRequestRequestTypeDef",
|
|
120
|
+
"DescribeWebAppCustomizationResponseTypeDef",
|
|
121
|
+
"DescribeWebAppRequestRequestTypeDef",
|
|
122
|
+
"DescribeWebAppResponseTypeDef",
|
|
98
123
|
"DescribeWorkflowRequestRequestTypeDef",
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
124
|
+
"DescribeWorkflowResponseTypeDef",
|
|
125
|
+
"DescribedAccessTypeDef",
|
|
126
|
+
"DescribedAgreementTypeDef",
|
|
127
|
+
"DescribedCertificateTypeDef",
|
|
128
|
+
"DescribedConnectorTypeDef",
|
|
129
|
+
"DescribedExecutionTypeDef",
|
|
130
|
+
"DescribedHostKeyTypeDef",
|
|
131
|
+
"DescribedIdentityCenterConfigTypeDef",
|
|
132
|
+
"DescribedProfileTypeDef",
|
|
133
|
+
"DescribedSecurityPolicyTypeDef",
|
|
134
|
+
"DescribedServerTypeDef",
|
|
135
|
+
"DescribedUserTypeDef",
|
|
136
|
+
"DescribedWebAppCustomizationTypeDef",
|
|
137
|
+
"DescribedWebAppIdentityProviderDetailsTypeDef",
|
|
138
|
+
"DescribedWebAppTypeDef",
|
|
139
|
+
"DescribedWorkflowTypeDef",
|
|
105
140
|
"EfsFileLocationTypeDef",
|
|
141
|
+
"EmptyResponseMetadataTypeDef",
|
|
142
|
+
"EndpointDetailsOutputTypeDef",
|
|
143
|
+
"EndpointDetailsTypeDef",
|
|
106
144
|
"ExecutionErrorTypeDef",
|
|
107
|
-
"
|
|
108
|
-
"
|
|
145
|
+
"ExecutionResultsTypeDef",
|
|
146
|
+
"ExecutionStepResultTypeDef",
|
|
147
|
+
"FileLocationTypeDef",
|
|
148
|
+
"HomeDirectoryMapEntryTypeDef",
|
|
149
|
+
"IdentityCenterConfigTypeDef",
|
|
150
|
+
"IdentityProviderDetailsTypeDef",
|
|
151
|
+
"ImportCertificateRequestRequestTypeDef",
|
|
152
|
+
"ImportCertificateResponseTypeDef",
|
|
153
|
+
"ImportHostKeyRequestRequestTypeDef",
|
|
154
|
+
"ImportHostKeyResponseTypeDef",
|
|
109
155
|
"ImportSshPublicKeyRequestRequestTypeDef",
|
|
110
|
-
"
|
|
111
|
-
"
|
|
156
|
+
"ImportSshPublicKeyResponseTypeDef",
|
|
157
|
+
"InputFileLocationTypeDef",
|
|
158
|
+
"ListAccessesRequestListAccessesPaginateTypeDef",
|
|
112
159
|
"ListAccessesRequestRequestTypeDef",
|
|
113
|
-
"
|
|
160
|
+
"ListAccessesResponseTypeDef",
|
|
161
|
+
"ListAgreementsRequestListAgreementsPaginateTypeDef",
|
|
114
162
|
"ListAgreementsRequestRequestTypeDef",
|
|
115
|
-
"
|
|
163
|
+
"ListAgreementsResponseTypeDef",
|
|
164
|
+
"ListCertificatesRequestListCertificatesPaginateTypeDef",
|
|
116
165
|
"ListCertificatesRequestRequestTypeDef",
|
|
117
|
-
"
|
|
166
|
+
"ListCertificatesResponseTypeDef",
|
|
167
|
+
"ListConnectorsRequestListConnectorsPaginateTypeDef",
|
|
118
168
|
"ListConnectorsRequestRequestTypeDef",
|
|
119
|
-
"
|
|
169
|
+
"ListConnectorsResponseTypeDef",
|
|
170
|
+
"ListExecutionsRequestListExecutionsPaginateTypeDef",
|
|
120
171
|
"ListExecutionsRequestRequestTypeDef",
|
|
172
|
+
"ListExecutionsResponseTypeDef",
|
|
173
|
+
"ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
|
|
174
|
+
"ListFileTransferResultsRequestRequestTypeDef",
|
|
175
|
+
"ListFileTransferResultsResponseTypeDef",
|
|
121
176
|
"ListHostKeysRequestRequestTypeDef",
|
|
122
|
-
"
|
|
177
|
+
"ListHostKeysResponseTypeDef",
|
|
178
|
+
"ListProfilesRequestListProfilesPaginateTypeDef",
|
|
123
179
|
"ListProfilesRequestRequestTypeDef",
|
|
124
|
-
"
|
|
180
|
+
"ListProfilesResponseTypeDef",
|
|
181
|
+
"ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
|
|
125
182
|
"ListSecurityPoliciesRequestRequestTypeDef",
|
|
183
|
+
"ListSecurityPoliciesResponseTypeDef",
|
|
184
|
+
"ListServersRequestListServersPaginateTypeDef",
|
|
126
185
|
"ListServersRequestRequestTypeDef",
|
|
127
|
-
"
|
|
186
|
+
"ListServersResponseTypeDef",
|
|
187
|
+
"ListTagsForResourceRequestListTagsForResourcePaginateTypeDef",
|
|
128
188
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
189
|
+
"ListTagsForResourceResponseTypeDef",
|
|
190
|
+
"ListUsersRequestListUsersPaginateTypeDef",
|
|
129
191
|
"ListUsersRequestRequestTypeDef",
|
|
130
|
-
"
|
|
192
|
+
"ListUsersResponseTypeDef",
|
|
193
|
+
"ListWebAppsRequestListWebAppsPaginateTypeDef",
|
|
194
|
+
"ListWebAppsRequestRequestTypeDef",
|
|
195
|
+
"ListWebAppsResponseTypeDef",
|
|
196
|
+
"ListWorkflowsRequestListWorkflowsPaginateTypeDef",
|
|
131
197
|
"ListWorkflowsRequestRequestTypeDef",
|
|
198
|
+
"ListWorkflowsResponseTypeDef",
|
|
199
|
+
"ListedAccessTypeDef",
|
|
200
|
+
"ListedAgreementTypeDef",
|
|
201
|
+
"ListedCertificateTypeDef",
|
|
202
|
+
"ListedConnectorTypeDef",
|
|
203
|
+
"ListedExecutionTypeDef",
|
|
204
|
+
"ListedHostKeyTypeDef",
|
|
205
|
+
"ListedProfileTypeDef",
|
|
206
|
+
"ListedServerTypeDef",
|
|
207
|
+
"ListedUserTypeDef",
|
|
208
|
+
"ListedWebAppTypeDef",
|
|
132
209
|
"ListedWorkflowTypeDef",
|
|
210
|
+
"LoggingConfigurationTypeDef",
|
|
211
|
+
"PaginatorConfigTypeDef",
|
|
212
|
+
"PosixProfileOutputTypeDef",
|
|
213
|
+
"PosixProfileTypeDef",
|
|
214
|
+
"ProtocolDetailsOutputTypeDef",
|
|
215
|
+
"ProtocolDetailsTypeDef",
|
|
216
|
+
"ResponseMetadataTypeDef",
|
|
217
|
+
"S3FileLocationTypeDef",
|
|
218
|
+
"S3InputFileLocationTypeDef",
|
|
219
|
+
"S3StorageOptionsTypeDef",
|
|
133
220
|
"S3TagTypeDef",
|
|
134
221
|
"SendWorkflowStepStateRequestRequestTypeDef",
|
|
135
|
-
"
|
|
222
|
+
"ServiceMetadataTypeDef",
|
|
223
|
+
"SftpConnectorConfigOutputTypeDef",
|
|
224
|
+
"SftpConnectorConfigTypeDef",
|
|
225
|
+
"SshPublicKeyTypeDef",
|
|
136
226
|
"StartDirectoryListingRequestRequestTypeDef",
|
|
227
|
+
"StartDirectoryListingResponseTypeDef",
|
|
137
228
|
"StartFileTransferRequestRequestTypeDef",
|
|
229
|
+
"StartFileTransferResponseTypeDef",
|
|
138
230
|
"StartServerRequestRequestTypeDef",
|
|
139
231
|
"StopServerRequestRequestTypeDef",
|
|
232
|
+
"TagResourceRequestRequestTypeDef",
|
|
233
|
+
"TagStepDetailsOutputTypeDef",
|
|
234
|
+
"TagStepDetailsTypeDef",
|
|
235
|
+
"TagStepDetailsUnionTypeDef",
|
|
236
|
+
"TagTypeDef",
|
|
140
237
|
"TestConnectionRequestRequestTypeDef",
|
|
238
|
+
"TestConnectionResponseTypeDef",
|
|
141
239
|
"TestIdentityProviderRequestRequestTypeDef",
|
|
240
|
+
"TestIdentityProviderResponseTypeDef",
|
|
241
|
+
"TimestampTypeDef",
|
|
142
242
|
"UntagResourceRequestRequestTypeDef",
|
|
143
|
-
"UpdateAgreementRequestRequestTypeDef",
|
|
144
|
-
"UpdateHostKeyRequestRequestTypeDef",
|
|
145
|
-
"UpdateProfileRequestRequestTypeDef",
|
|
146
|
-
"WorkflowDetailTypeDef",
|
|
147
|
-
"CreateAccessRequestRequestTypeDef",
|
|
148
243
|
"UpdateAccessRequestRequestTypeDef",
|
|
149
|
-
"UpdateUserRequestRequestTypeDef",
|
|
150
|
-
"CreateAccessResponseTypeDef",
|
|
151
|
-
"CreateAgreementResponseTypeDef",
|
|
152
|
-
"CreateConnectorResponseTypeDef",
|
|
153
|
-
"CreateProfileResponseTypeDef",
|
|
154
|
-
"CreateServerResponseTypeDef",
|
|
155
|
-
"CreateUserResponseTypeDef",
|
|
156
|
-
"CreateWorkflowResponseTypeDef",
|
|
157
|
-
"EmptyResponseMetadataTypeDef",
|
|
158
|
-
"ImportCertificateResponseTypeDef",
|
|
159
|
-
"ImportHostKeyResponseTypeDef",
|
|
160
|
-
"ImportSshPublicKeyResponseTypeDef",
|
|
161
|
-
"ListSecurityPoliciesResponseTypeDef",
|
|
162
|
-
"StartDirectoryListingResponseTypeDef",
|
|
163
|
-
"StartFileTransferResponseTypeDef",
|
|
164
|
-
"TestConnectionResponseTypeDef",
|
|
165
|
-
"TestIdentityProviderResponseTypeDef",
|
|
166
244
|
"UpdateAccessResponseTypeDef",
|
|
245
|
+
"UpdateAgreementRequestRequestTypeDef",
|
|
167
246
|
"UpdateAgreementResponseTypeDef",
|
|
247
|
+
"UpdateCertificateRequestRequestTypeDef",
|
|
168
248
|
"UpdateCertificateResponseTypeDef",
|
|
249
|
+
"UpdateConnectorRequestRequestTypeDef",
|
|
169
250
|
"UpdateConnectorResponseTypeDef",
|
|
251
|
+
"UpdateHostKeyRequestRequestTypeDef",
|
|
170
252
|
"UpdateHostKeyResponseTypeDef",
|
|
253
|
+
"UpdateProfileRequestRequestTypeDef",
|
|
171
254
|
"UpdateProfileResponseTypeDef",
|
|
255
|
+
"UpdateServerRequestRequestTypeDef",
|
|
172
256
|
"UpdateServerResponseTypeDef",
|
|
257
|
+
"UpdateUserRequestRequestTypeDef",
|
|
173
258
|
"UpdateUserResponseTypeDef",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"UpdateConnectorRequestRequestTypeDef",
|
|
186
|
-
"DescribeSecurityPolicyResponseTypeDef",
|
|
187
|
-
"DescribeServerRequestServerOfflineWaitTypeDef",
|
|
188
|
-
"DescribeServerRequestServerOnlineWaitTypeDef",
|
|
189
|
-
"DescribedAccessTypeDef",
|
|
190
|
-
"PosixProfileUnionTypeDef",
|
|
191
|
-
"DescribedConnectorTypeDef",
|
|
192
|
-
"SftpConnectorConfigUnionTypeDef",
|
|
193
|
-
"EndpointDetailsUnionTypeDef",
|
|
194
|
-
"ProtocolDetailsUnionTypeDef",
|
|
195
|
-
"DescribedUserTypeDef",
|
|
196
|
-
"ExecutionStepResultTypeDef",
|
|
197
|
-
"FileLocationTypeDef",
|
|
198
|
-
"ImportCertificateRequestRequestTypeDef",
|
|
199
|
-
"UpdateCertificateRequestRequestTypeDef",
|
|
200
|
-
"InputFileLocationTypeDef",
|
|
201
|
-
"ListAccessesRequestListAccessesPaginateTypeDef",
|
|
202
|
-
"ListAgreementsRequestListAgreementsPaginateTypeDef",
|
|
203
|
-
"ListCertificatesRequestListCertificatesPaginateTypeDef",
|
|
204
|
-
"ListConnectorsRequestListConnectorsPaginateTypeDef",
|
|
205
|
-
"ListExecutionsRequestListExecutionsPaginateTypeDef",
|
|
206
|
-
"ListProfilesRequestListProfilesPaginateTypeDef",
|
|
207
|
-
"ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
|
|
208
|
-
"ListServersRequestListServersPaginateTypeDef",
|
|
209
|
-
"ListTagsForResourceRequestListTagsForResourcePaginateTypeDef",
|
|
210
|
-
"ListUsersRequestListUsersPaginateTypeDef",
|
|
211
|
-
"ListWorkflowsRequestListWorkflowsPaginateTypeDef",
|
|
212
|
-
"ListAccessesResponseTypeDef",
|
|
213
|
-
"ListAgreementsResponseTypeDef",
|
|
214
|
-
"ListCertificatesResponseTypeDef",
|
|
215
|
-
"ListConnectorsResponseTypeDef",
|
|
216
|
-
"ListHostKeysResponseTypeDef",
|
|
217
|
-
"ListProfilesResponseTypeDef",
|
|
218
|
-
"ListServersResponseTypeDef",
|
|
219
|
-
"ListUsersResponseTypeDef",
|
|
220
|
-
"ListWorkflowsResponseTypeDef",
|
|
221
|
-
"TagStepDetailsOutputTypeDef",
|
|
222
|
-
"TagStepDetailsTypeDef",
|
|
223
|
-
"ServiceMetadataTypeDef",
|
|
259
|
+
"UpdateWebAppCustomizationRequestRequestTypeDef",
|
|
260
|
+
"UpdateWebAppCustomizationResponseTypeDef",
|
|
261
|
+
"UpdateWebAppIdentityCenterConfigTypeDef",
|
|
262
|
+
"UpdateWebAppIdentityProviderDetailsTypeDef",
|
|
263
|
+
"UpdateWebAppRequestRequestTypeDef",
|
|
264
|
+
"UpdateWebAppResponseTypeDef",
|
|
265
|
+
"UserDetailsTypeDef",
|
|
266
|
+
"WaiterConfigTypeDef",
|
|
267
|
+
"WebAppIdentityProviderDetailsTypeDef",
|
|
268
|
+
"WebAppUnitsTypeDef",
|
|
269
|
+
"WorkflowDetailTypeDef",
|
|
224
270
|
"WorkflowDetailsOutputTypeDef",
|
|
225
271
|
"WorkflowDetailsTypeDef",
|
|
226
|
-
"DescribeAgreementResponseTypeDef",
|
|
227
|
-
"DescribeCertificateResponseTypeDef",
|
|
228
|
-
"DescribeHostKeyResponseTypeDef",
|
|
229
|
-
"DescribeProfileResponseTypeDef",
|
|
230
|
-
"DescribeAccessResponseTypeDef",
|
|
231
|
-
"DescribeConnectorResponseTypeDef",
|
|
232
|
-
"DescribeUserResponseTypeDef",
|
|
233
|
-
"ExecutionResultsTypeDef",
|
|
234
|
-
"CopyStepDetailsTypeDef",
|
|
235
|
-
"DecryptStepDetailsTypeDef",
|
|
236
|
-
"ListedExecutionTypeDef",
|
|
237
|
-
"DescribedServerTypeDef",
|
|
238
|
-
"CreateServerRequestRequestTypeDef",
|
|
239
|
-
"UpdateServerRequestRequestTypeDef",
|
|
240
|
-
"WorkflowDetailsUnionTypeDef",
|
|
241
|
-
"DescribedExecutionTypeDef",
|
|
242
272
|
"WorkflowStepOutputTypeDef",
|
|
243
273
|
"WorkflowStepTypeDef",
|
|
244
|
-
"ListExecutionsResponseTypeDef",
|
|
245
|
-
"DescribeServerResponseTypeDef",
|
|
246
|
-
"DescribeExecutionResponseTypeDef",
|
|
247
|
-
"DescribedWorkflowTypeDef",
|
|
248
274
|
"WorkflowStepUnionTypeDef",
|
|
249
|
-
"DescribeWorkflowResponseTypeDef",
|
|
250
|
-
"CreateWorkflowRequestRequestTypeDef",
|
|
251
275
|
)
|
|
252
276
|
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
277
|
+
|
|
278
|
+
class As2ConnectorConfigTypeDef(TypedDict):
|
|
279
|
+
LocalProfileId: NotRequired[str]
|
|
280
|
+
PartnerProfileId: NotRequired[str]
|
|
281
|
+
MessageSubject: NotRequired[str]
|
|
282
|
+
Compression: NotRequired[CompressionEnumType]
|
|
283
|
+
EncryptionAlgorithm: NotRequired[EncryptionAlgType]
|
|
284
|
+
SigningAlgorithm: NotRequired[SigningAlgType]
|
|
285
|
+
MdnSigningAlgorithm: NotRequired[MdnSigningAlgType]
|
|
286
|
+
MdnResponse: NotRequired[MdnResponseType]
|
|
287
|
+
BasicAuthSecretId: NotRequired[str]
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
BlobTypeDef = Union[str, bytes, IO[Any], StreamingBody]
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class ConnectorFileTransferResultTypeDef(TypedDict):
|
|
294
|
+
FilePath: str
|
|
295
|
+
StatusCode: TransferTableStatusType
|
|
296
|
+
FailureCode: NotRequired[str]
|
|
297
|
+
FailureMessage: NotRequired[str]
|
|
298
|
+
|
|
299
|
+
|
|
267
300
|
HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
268
301
|
"HomeDirectoryMapEntryTypeDef",
|
|
269
302
|
{
|
|
@@ -272,207 +305,165 @@ HomeDirectoryMapEntryTypeDef = TypedDict(
|
|
|
272
305
|
"Type": NotRequired[MapTypeType],
|
|
273
306
|
},
|
|
274
307
|
)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
ResponseMetadataTypeDef
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
)
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
)
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
)
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
)
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
)
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
"AgreementId": str,
|
|
435
|
-
"ServerId": str,
|
|
436
|
-
},
|
|
437
|
-
)
|
|
438
|
-
DescribeCertificateRequestRequestTypeDef = TypedDict(
|
|
439
|
-
"DescribeCertificateRequestRequestTypeDef",
|
|
440
|
-
{
|
|
441
|
-
"CertificateId": str,
|
|
442
|
-
},
|
|
443
|
-
)
|
|
444
|
-
DescribeConnectorRequestRequestTypeDef = TypedDict(
|
|
445
|
-
"DescribeConnectorRequestRequestTypeDef",
|
|
446
|
-
{
|
|
447
|
-
"ConnectorId": str,
|
|
448
|
-
},
|
|
449
|
-
)
|
|
450
|
-
DescribeExecutionRequestRequestTypeDef = TypedDict(
|
|
451
|
-
"DescribeExecutionRequestRequestTypeDef",
|
|
452
|
-
{
|
|
453
|
-
"ExecutionId": str,
|
|
454
|
-
"WorkflowId": str,
|
|
455
|
-
},
|
|
456
|
-
)
|
|
457
|
-
DescribeHostKeyRequestRequestTypeDef = TypedDict(
|
|
458
|
-
"DescribeHostKeyRequestRequestTypeDef",
|
|
459
|
-
{
|
|
460
|
-
"ServerId": str,
|
|
461
|
-
"HostKeyId": str,
|
|
462
|
-
},
|
|
463
|
-
)
|
|
464
|
-
DescribeProfileRequestRequestTypeDef = TypedDict(
|
|
465
|
-
"DescribeProfileRequestRequestTypeDef",
|
|
466
|
-
{
|
|
467
|
-
"ProfileId": str,
|
|
468
|
-
},
|
|
469
|
-
)
|
|
470
|
-
DescribeSecurityPolicyRequestRequestTypeDef = TypedDict(
|
|
471
|
-
"DescribeSecurityPolicyRequestRequestTypeDef",
|
|
472
|
-
{
|
|
473
|
-
"SecurityPolicyName": str,
|
|
474
|
-
},
|
|
475
|
-
)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class PosixProfileTypeDef(TypedDict):
|
|
311
|
+
Uid: int
|
|
312
|
+
Gid: int
|
|
313
|
+
SecondaryGids: NotRequired[Sequence[int]]
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
317
|
+
RequestId: str
|
|
318
|
+
HTTPStatusCode: int
|
|
319
|
+
HTTPHeaders: Dict[str, str]
|
|
320
|
+
RetryAttempts: int
|
|
321
|
+
HostId: NotRequired[str]
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
class TagTypeDef(TypedDict):
|
|
325
|
+
Key: str
|
|
326
|
+
Value: str
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
class SftpConnectorConfigTypeDef(TypedDict):
|
|
330
|
+
UserSecretId: NotRequired[str]
|
|
331
|
+
TrustedHostKeys: NotRequired[Sequence[str]]
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
class EndpointDetailsTypeDef(TypedDict):
|
|
335
|
+
AddressAllocationIds: NotRequired[Sequence[str]]
|
|
336
|
+
SubnetIds: NotRequired[Sequence[str]]
|
|
337
|
+
VpcEndpointId: NotRequired[str]
|
|
338
|
+
VpcId: NotRequired[str]
|
|
339
|
+
SecurityGroupIds: NotRequired[Sequence[str]]
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class IdentityProviderDetailsTypeDef(TypedDict):
|
|
343
|
+
Url: NotRequired[str]
|
|
344
|
+
InvocationRole: NotRequired[str]
|
|
345
|
+
DirectoryId: NotRequired[str]
|
|
346
|
+
Function: NotRequired[str]
|
|
347
|
+
SftpAuthenticationMethods: NotRequired[SftpAuthenticationMethodsType]
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class ProtocolDetailsTypeDef(TypedDict):
|
|
351
|
+
PassiveIp: NotRequired[str]
|
|
352
|
+
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
353
|
+
SetStatOption: NotRequired[SetStatOptionType]
|
|
354
|
+
As2Transports: NotRequired[Sequence[Literal["HTTP"]]]
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class S3StorageOptionsTypeDef(TypedDict):
|
|
358
|
+
DirectoryListingOptimization: NotRequired[DirectoryListingOptimizationType]
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
class WebAppUnitsTypeDef(TypedDict):
|
|
362
|
+
Provisioned: NotRequired[int]
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
class CustomStepDetailsTypeDef(TypedDict):
|
|
366
|
+
Name: NotRequired[str]
|
|
367
|
+
Target: NotRequired[str]
|
|
368
|
+
TimeoutSeconds: NotRequired[int]
|
|
369
|
+
SourceFileLocation: NotRequired[str]
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class DeleteAccessRequestRequestTypeDef(TypedDict):
|
|
373
|
+
ServerId: str
|
|
374
|
+
ExternalId: str
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
class DeleteAgreementRequestRequestTypeDef(TypedDict):
|
|
378
|
+
AgreementId: str
|
|
379
|
+
ServerId: str
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
class DeleteCertificateRequestRequestTypeDef(TypedDict):
|
|
383
|
+
CertificateId: str
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class DeleteConnectorRequestRequestTypeDef(TypedDict):
|
|
387
|
+
ConnectorId: str
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
class DeleteHostKeyRequestRequestTypeDef(TypedDict):
|
|
391
|
+
ServerId: str
|
|
392
|
+
HostKeyId: str
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
class DeleteProfileRequestRequestTypeDef(TypedDict):
|
|
396
|
+
ProfileId: str
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
class DeleteServerRequestRequestTypeDef(TypedDict):
|
|
400
|
+
ServerId: str
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class DeleteSshPublicKeyRequestRequestTypeDef(TypedDict):
|
|
404
|
+
ServerId: str
|
|
405
|
+
SshPublicKeyId: str
|
|
406
|
+
UserName: str
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
class DeleteStepDetailsTypeDef(TypedDict):
|
|
410
|
+
Name: NotRequired[str]
|
|
411
|
+
SourceFileLocation: NotRequired[str]
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
class DeleteUserRequestRequestTypeDef(TypedDict):
|
|
415
|
+
ServerId: str
|
|
416
|
+
UserName: str
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
class DeleteWebAppCustomizationRequestRequestTypeDef(TypedDict):
|
|
420
|
+
WebAppId: str
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
class DeleteWebAppRequestRequestTypeDef(TypedDict):
|
|
424
|
+
WebAppId: str
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
class DeleteWorkflowRequestRequestTypeDef(TypedDict):
|
|
428
|
+
WorkflowId: str
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
class DescribeAccessRequestRequestTypeDef(TypedDict):
|
|
432
|
+
ServerId: str
|
|
433
|
+
ExternalId: str
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
class DescribeAgreementRequestRequestTypeDef(TypedDict):
|
|
437
|
+
AgreementId: str
|
|
438
|
+
ServerId: str
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
class DescribeCertificateRequestRequestTypeDef(TypedDict):
|
|
442
|
+
CertificateId: str
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
class DescribeConnectorRequestRequestTypeDef(TypedDict):
|
|
446
|
+
ConnectorId: str
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
class DescribeExecutionRequestRequestTypeDef(TypedDict):
|
|
450
|
+
ExecutionId: str
|
|
451
|
+
WorkflowId: str
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
class DescribeHostKeyRequestRequestTypeDef(TypedDict):
|
|
455
|
+
ServerId: str
|
|
456
|
+
HostKeyId: str
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class DescribeProfileRequestRequestTypeDef(TypedDict):
|
|
460
|
+
ProfileId: str
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
class DescribeSecurityPolicyRequestRequestTypeDef(TypedDict):
|
|
464
|
+
SecurityPolicyName: str
|
|
465
|
+
|
|
466
|
+
|
|
476
467
|
DescribedSecurityPolicyTypeDef = TypedDict(
|
|
477
468
|
"DescribedSecurityPolicyTypeDef",
|
|
478
469
|
{
|
|
@@ -487,216 +478,210 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
487
478
|
"Protocols": NotRequired[List[SecurityPolicyProtocolType]],
|
|
488
479
|
},
|
|
489
480
|
)
|
|
490
|
-
|
|
491
|
-
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
class DescribeServerRequestRequestTypeDef(TypedDict):
|
|
484
|
+
ServerId: str
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
488
|
+
Delay: NotRequired[int]
|
|
489
|
+
MaxAttempts: NotRequired[int]
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
class DescribeUserRequestRequestTypeDef(TypedDict):
|
|
493
|
+
ServerId: str
|
|
494
|
+
UserName: str
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
class DescribeWebAppCustomizationRequestRequestTypeDef(TypedDict):
|
|
498
|
+
WebAppId: str
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
class DescribedWebAppCustomizationTypeDef(TypedDict):
|
|
502
|
+
Arn: str
|
|
503
|
+
WebAppId: str
|
|
504
|
+
Title: NotRequired[str]
|
|
505
|
+
LogoFile: NotRequired[bytes]
|
|
506
|
+
FaviconFile: NotRequired[bytes]
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
class DescribeWebAppRequestRequestTypeDef(TypedDict):
|
|
510
|
+
WebAppId: str
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
class DescribeWorkflowRequestRequestTypeDef(TypedDict):
|
|
514
|
+
WorkflowId: str
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class PosixProfileOutputTypeDef(TypedDict):
|
|
518
|
+
Uid: int
|
|
519
|
+
Gid: int
|
|
520
|
+
SecondaryGids: NotRequired[List[int]]
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
524
|
+
UserSecretId: NotRequired[str]
|
|
525
|
+
TrustedHostKeys: NotRequired[List[str]]
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
class LoggingConfigurationTypeDef(TypedDict):
|
|
529
|
+
LoggingRole: NotRequired[str]
|
|
530
|
+
LogGroupName: NotRequired[str]
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
class DescribedIdentityCenterConfigTypeDef(TypedDict):
|
|
534
|
+
ApplicationArn: NotRequired[str]
|
|
535
|
+
InstanceArn: NotRequired[str]
|
|
536
|
+
Role: NotRequired[str]
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
class EndpointDetailsOutputTypeDef(TypedDict):
|
|
540
|
+
AddressAllocationIds: NotRequired[List[str]]
|
|
541
|
+
SubnetIds: NotRequired[List[str]]
|
|
542
|
+
VpcEndpointId: NotRequired[str]
|
|
543
|
+
VpcId: NotRequired[str]
|
|
544
|
+
SecurityGroupIds: NotRequired[List[str]]
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
class ProtocolDetailsOutputTypeDef(TypedDict):
|
|
548
|
+
PassiveIp: NotRequired[str]
|
|
549
|
+
TlsSessionResumptionMode: NotRequired[TlsSessionResumptionModeType]
|
|
550
|
+
SetStatOption: NotRequired[SetStatOptionType]
|
|
551
|
+
As2Transports: NotRequired[List[Literal["HTTP"]]]
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
class SshPublicKeyTypeDef(TypedDict):
|
|
555
|
+
DateImported: datetime
|
|
556
|
+
SshPublicKeyBody: str
|
|
557
|
+
SshPublicKeyId: str
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
class EfsFileLocationTypeDef(TypedDict):
|
|
561
|
+
FileSystemId: NotRequired[str]
|
|
562
|
+
Path: NotRequired[str]
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
ExecutionErrorTypeDef = TypedDict(
|
|
566
|
+
"ExecutionErrorTypeDef",
|
|
492
567
|
{
|
|
493
|
-
"
|
|
568
|
+
"Type": ExecutionErrorTypeType,
|
|
569
|
+
"Message": str,
|
|
494
570
|
},
|
|
495
571
|
)
|
|
496
|
-
|
|
497
|
-
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
class S3FileLocationTypeDef(TypedDict):
|
|
575
|
+
Bucket: NotRequired[str]
|
|
576
|
+
Key: NotRequired[str]
|
|
577
|
+
VersionId: NotRequired[str]
|
|
578
|
+
Etag: NotRequired[str]
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
class IdentityCenterConfigTypeDef(TypedDict):
|
|
582
|
+
InstanceArn: NotRequired[str]
|
|
583
|
+
Role: NotRequired[str]
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
TimestampTypeDef = Union[datetime, str]
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
class ImportSshPublicKeyRequestRequestTypeDef(TypedDict):
|
|
590
|
+
ServerId: str
|
|
591
|
+
SshPublicKeyBody: str
|
|
592
|
+
UserName: str
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
class S3InputFileLocationTypeDef(TypedDict):
|
|
596
|
+
Bucket: NotRequired[str]
|
|
597
|
+
Key: NotRequired[str]
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
601
|
+
MaxItems: NotRequired[int]
|
|
602
|
+
PageSize: NotRequired[int]
|
|
603
|
+
StartingToken: NotRequired[str]
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class ListAccessesRequestRequestTypeDef(TypedDict):
|
|
607
|
+
ServerId: str
|
|
608
|
+
MaxResults: NotRequired[int]
|
|
609
|
+
NextToken: NotRequired[str]
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class ListedAccessTypeDef(TypedDict):
|
|
613
|
+
HomeDirectory: NotRequired[str]
|
|
614
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
615
|
+
Role: NotRequired[str]
|
|
616
|
+
ExternalId: NotRequired[str]
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
class ListAgreementsRequestRequestTypeDef(TypedDict):
|
|
620
|
+
ServerId: str
|
|
621
|
+
MaxResults: NotRequired[int]
|
|
622
|
+
NextToken: NotRequired[str]
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
class ListedAgreementTypeDef(TypedDict):
|
|
626
|
+
Arn: NotRequired[str]
|
|
627
|
+
AgreementId: NotRequired[str]
|
|
628
|
+
Description: NotRequired[str]
|
|
629
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
630
|
+
ServerId: NotRequired[str]
|
|
631
|
+
LocalProfileId: NotRequired[str]
|
|
632
|
+
PartnerProfileId: NotRequired[str]
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class ListCertificatesRequestRequestTypeDef(TypedDict):
|
|
636
|
+
MaxResults: NotRequired[int]
|
|
637
|
+
NextToken: NotRequired[str]
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
ListedCertificateTypeDef = TypedDict(
|
|
641
|
+
"ListedCertificateTypeDef",
|
|
498
642
|
{
|
|
499
|
-
"
|
|
500
|
-
"
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
"
|
|
507
|
-
"UserName": str,
|
|
508
|
-
},
|
|
509
|
-
)
|
|
510
|
-
DescribeWorkflowRequestRequestTypeDef = TypedDict(
|
|
511
|
-
"DescribeWorkflowRequestRequestTypeDef",
|
|
512
|
-
{
|
|
513
|
-
"WorkflowId": str,
|
|
514
|
-
},
|
|
515
|
-
)
|
|
516
|
-
PosixProfileOutputTypeDef = TypedDict(
|
|
517
|
-
"PosixProfileOutputTypeDef",
|
|
518
|
-
{
|
|
519
|
-
"Uid": int,
|
|
520
|
-
"Gid": int,
|
|
521
|
-
"SecondaryGids": NotRequired[List[int]],
|
|
522
|
-
},
|
|
523
|
-
)
|
|
524
|
-
SftpConnectorConfigOutputTypeDef = TypedDict(
|
|
525
|
-
"SftpConnectorConfigOutputTypeDef",
|
|
526
|
-
{
|
|
527
|
-
"UserSecretId": NotRequired[str],
|
|
528
|
-
"TrustedHostKeys": NotRequired[List[str]],
|
|
529
|
-
},
|
|
530
|
-
)
|
|
531
|
-
LoggingConfigurationTypeDef = TypedDict(
|
|
532
|
-
"LoggingConfigurationTypeDef",
|
|
533
|
-
{
|
|
534
|
-
"LoggingRole": NotRequired[str],
|
|
535
|
-
"LogGroupName": NotRequired[str],
|
|
536
|
-
},
|
|
537
|
-
)
|
|
538
|
-
EndpointDetailsOutputTypeDef = TypedDict(
|
|
539
|
-
"EndpointDetailsOutputTypeDef",
|
|
540
|
-
{
|
|
541
|
-
"AddressAllocationIds": NotRequired[List[str]],
|
|
542
|
-
"SubnetIds": NotRequired[List[str]],
|
|
543
|
-
"VpcEndpointId": NotRequired[str],
|
|
544
|
-
"VpcId": NotRequired[str],
|
|
545
|
-
"SecurityGroupIds": NotRequired[List[str]],
|
|
546
|
-
},
|
|
547
|
-
)
|
|
548
|
-
ProtocolDetailsOutputTypeDef = TypedDict(
|
|
549
|
-
"ProtocolDetailsOutputTypeDef",
|
|
550
|
-
{
|
|
551
|
-
"PassiveIp": NotRequired[str],
|
|
552
|
-
"TlsSessionResumptionMode": NotRequired[TlsSessionResumptionModeType],
|
|
553
|
-
"SetStatOption": NotRequired[SetStatOptionType],
|
|
554
|
-
"As2Transports": NotRequired[List[Literal["HTTP"]]],
|
|
555
|
-
},
|
|
556
|
-
)
|
|
557
|
-
SshPublicKeyTypeDef = TypedDict(
|
|
558
|
-
"SshPublicKeyTypeDef",
|
|
559
|
-
{
|
|
560
|
-
"DateImported": datetime,
|
|
561
|
-
"SshPublicKeyBody": str,
|
|
562
|
-
"SshPublicKeyId": str,
|
|
563
|
-
},
|
|
564
|
-
)
|
|
565
|
-
EfsFileLocationTypeDef = TypedDict(
|
|
566
|
-
"EfsFileLocationTypeDef",
|
|
567
|
-
{
|
|
568
|
-
"FileSystemId": NotRequired[str],
|
|
569
|
-
"Path": NotRequired[str],
|
|
570
|
-
},
|
|
571
|
-
)
|
|
572
|
-
ExecutionErrorTypeDef = TypedDict(
|
|
573
|
-
"ExecutionErrorTypeDef",
|
|
574
|
-
{
|
|
575
|
-
"Type": ExecutionErrorTypeType,
|
|
576
|
-
"Message": str,
|
|
577
|
-
},
|
|
578
|
-
)
|
|
579
|
-
S3FileLocationTypeDef = TypedDict(
|
|
580
|
-
"S3FileLocationTypeDef",
|
|
581
|
-
{
|
|
582
|
-
"Bucket": NotRequired[str],
|
|
583
|
-
"Key": NotRequired[str],
|
|
584
|
-
"VersionId": NotRequired[str],
|
|
585
|
-
"Etag": NotRequired[str],
|
|
586
|
-
},
|
|
587
|
-
)
|
|
588
|
-
TimestampTypeDef = Union[datetime, str]
|
|
589
|
-
ImportSshPublicKeyRequestRequestTypeDef = TypedDict(
|
|
590
|
-
"ImportSshPublicKeyRequestRequestTypeDef",
|
|
591
|
-
{
|
|
592
|
-
"ServerId": str,
|
|
593
|
-
"SshPublicKeyBody": str,
|
|
594
|
-
"UserName": str,
|
|
595
|
-
},
|
|
596
|
-
)
|
|
597
|
-
S3InputFileLocationTypeDef = TypedDict(
|
|
598
|
-
"S3InputFileLocationTypeDef",
|
|
599
|
-
{
|
|
600
|
-
"Bucket": NotRequired[str],
|
|
601
|
-
"Key": NotRequired[str],
|
|
602
|
-
},
|
|
603
|
-
)
|
|
604
|
-
PaginatorConfigTypeDef = TypedDict(
|
|
605
|
-
"PaginatorConfigTypeDef",
|
|
606
|
-
{
|
|
607
|
-
"MaxItems": NotRequired[int],
|
|
608
|
-
"PageSize": NotRequired[int],
|
|
609
|
-
"StartingToken": NotRequired[str],
|
|
610
|
-
},
|
|
611
|
-
)
|
|
612
|
-
ListAccessesRequestRequestTypeDef = TypedDict(
|
|
613
|
-
"ListAccessesRequestRequestTypeDef",
|
|
614
|
-
{
|
|
615
|
-
"ServerId": str,
|
|
616
|
-
"MaxResults": NotRequired[int],
|
|
617
|
-
"NextToken": NotRequired[str],
|
|
618
|
-
},
|
|
619
|
-
)
|
|
620
|
-
ListedAccessTypeDef = TypedDict(
|
|
621
|
-
"ListedAccessTypeDef",
|
|
622
|
-
{
|
|
623
|
-
"HomeDirectory": NotRequired[str],
|
|
624
|
-
"HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
|
|
625
|
-
"Role": NotRequired[str],
|
|
626
|
-
"ExternalId": NotRequired[str],
|
|
627
|
-
},
|
|
628
|
-
)
|
|
629
|
-
ListAgreementsRequestRequestTypeDef = TypedDict(
|
|
630
|
-
"ListAgreementsRequestRequestTypeDef",
|
|
631
|
-
{
|
|
632
|
-
"ServerId": str,
|
|
633
|
-
"MaxResults": NotRequired[int],
|
|
634
|
-
"NextToken": NotRequired[str],
|
|
635
|
-
},
|
|
636
|
-
)
|
|
637
|
-
ListedAgreementTypeDef = TypedDict(
|
|
638
|
-
"ListedAgreementTypeDef",
|
|
639
|
-
{
|
|
640
|
-
"Arn": NotRequired[str],
|
|
641
|
-
"AgreementId": NotRequired[str],
|
|
642
|
-
"Description": NotRequired[str],
|
|
643
|
-
"Status": NotRequired[AgreementStatusTypeType],
|
|
644
|
-
"ServerId": NotRequired[str],
|
|
645
|
-
"LocalProfileId": NotRequired[str],
|
|
646
|
-
"PartnerProfileId": NotRequired[str],
|
|
647
|
-
},
|
|
648
|
-
)
|
|
649
|
-
ListCertificatesRequestRequestTypeDef = TypedDict(
|
|
650
|
-
"ListCertificatesRequestRequestTypeDef",
|
|
651
|
-
{
|
|
652
|
-
"MaxResults": NotRequired[int],
|
|
653
|
-
"NextToken": NotRequired[str],
|
|
654
|
-
},
|
|
655
|
-
)
|
|
656
|
-
ListedCertificateTypeDef = TypedDict(
|
|
657
|
-
"ListedCertificateTypeDef",
|
|
658
|
-
{
|
|
659
|
-
"Arn": NotRequired[str],
|
|
660
|
-
"CertificateId": NotRequired[str],
|
|
661
|
-
"Usage": NotRequired[CertificateUsageTypeType],
|
|
662
|
-
"Status": NotRequired[CertificateStatusTypeType],
|
|
663
|
-
"ActiveDate": NotRequired[datetime],
|
|
664
|
-
"InactiveDate": NotRequired[datetime],
|
|
665
|
-
"Type": NotRequired[CertificateTypeType],
|
|
666
|
-
"Description": NotRequired[str],
|
|
667
|
-
},
|
|
668
|
-
)
|
|
669
|
-
ListConnectorsRequestRequestTypeDef = TypedDict(
|
|
670
|
-
"ListConnectorsRequestRequestTypeDef",
|
|
671
|
-
{
|
|
672
|
-
"MaxResults": NotRequired[int],
|
|
673
|
-
"NextToken": NotRequired[str],
|
|
674
|
-
},
|
|
675
|
-
)
|
|
676
|
-
ListedConnectorTypeDef = TypedDict(
|
|
677
|
-
"ListedConnectorTypeDef",
|
|
678
|
-
{
|
|
679
|
-
"Arn": NotRequired[str],
|
|
680
|
-
"ConnectorId": NotRequired[str],
|
|
681
|
-
"Url": NotRequired[str],
|
|
682
|
-
},
|
|
683
|
-
)
|
|
684
|
-
ListExecutionsRequestRequestTypeDef = TypedDict(
|
|
685
|
-
"ListExecutionsRequestRequestTypeDef",
|
|
686
|
-
{
|
|
687
|
-
"WorkflowId": str,
|
|
688
|
-
"MaxResults": NotRequired[int],
|
|
689
|
-
"NextToken": NotRequired[str],
|
|
690
|
-
},
|
|
691
|
-
)
|
|
692
|
-
ListHostKeysRequestRequestTypeDef = TypedDict(
|
|
693
|
-
"ListHostKeysRequestRequestTypeDef",
|
|
694
|
-
{
|
|
695
|
-
"ServerId": str,
|
|
696
|
-
"MaxResults": NotRequired[int],
|
|
697
|
-
"NextToken": NotRequired[str],
|
|
643
|
+
"Arn": NotRequired[str],
|
|
644
|
+
"CertificateId": NotRequired[str],
|
|
645
|
+
"Usage": NotRequired[CertificateUsageTypeType],
|
|
646
|
+
"Status": NotRequired[CertificateStatusTypeType],
|
|
647
|
+
"ActiveDate": NotRequired[datetime],
|
|
648
|
+
"InactiveDate": NotRequired[datetime],
|
|
649
|
+
"Type": NotRequired[CertificateTypeType],
|
|
650
|
+
"Description": NotRequired[str],
|
|
698
651
|
},
|
|
699
652
|
)
|
|
653
|
+
|
|
654
|
+
|
|
655
|
+
class ListConnectorsRequestRequestTypeDef(TypedDict):
|
|
656
|
+
MaxResults: NotRequired[int]
|
|
657
|
+
NextToken: NotRequired[str]
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
class ListedConnectorTypeDef(TypedDict):
|
|
661
|
+
Arn: NotRequired[str]
|
|
662
|
+
ConnectorId: NotRequired[str]
|
|
663
|
+
Url: NotRequired[str]
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
class ListExecutionsRequestRequestTypeDef(TypedDict):
|
|
667
|
+
WorkflowId: str
|
|
668
|
+
MaxResults: NotRequired[int]
|
|
669
|
+
NextToken: NotRequired[str]
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class ListFileTransferResultsRequestRequestTypeDef(TypedDict):
|
|
673
|
+
ConnectorId: str
|
|
674
|
+
TransferId: str
|
|
675
|
+
NextToken: NotRequired[str]
|
|
676
|
+
MaxResults: NotRequired[int]
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
class ListHostKeysRequestRequestTypeDef(TypedDict):
|
|
680
|
+
ServerId: str
|
|
681
|
+
MaxResults: NotRequired[int]
|
|
682
|
+
NextToken: NotRequired[str]
|
|
683
|
+
|
|
684
|
+
|
|
700
685
|
ListedHostKeyTypeDef = TypedDict(
|
|
701
686
|
"ListedHostKeyTypeDef",
|
|
702
687
|
{
|
|
@@ -708,932 +693,812 @@ ListedHostKeyTypeDef = TypedDict(
|
|
|
708
693
|
"DateImported": NotRequired[datetime],
|
|
709
694
|
},
|
|
710
695
|
)
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
ListedProfileTypeDef
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
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
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
)
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
)
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
)
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
)
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
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
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
},
|
|
1122
|
-
)
|
|
1123
|
-
UpdateUserResponseTypeDef = TypedDict(
|
|
1124
|
-
"UpdateUserResponseTypeDef",
|
|
1125
|
-
{
|
|
1126
|
-
"ServerId": str,
|
|
1127
|
-
"UserName": str,
|
|
1128
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1129
|
-
},
|
|
1130
|
-
)
|
|
1131
|
-
CreateAgreementRequestRequestTypeDef = TypedDict(
|
|
1132
|
-
"CreateAgreementRequestRequestTypeDef",
|
|
1133
|
-
{
|
|
1134
|
-
"ServerId": str,
|
|
1135
|
-
"LocalProfileId": str,
|
|
1136
|
-
"PartnerProfileId": str,
|
|
1137
|
-
"BaseDirectory": str,
|
|
1138
|
-
"AccessRole": str,
|
|
1139
|
-
"Description": NotRequired[str],
|
|
1140
|
-
"Status": NotRequired[AgreementStatusTypeType],
|
|
1141
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1142
|
-
},
|
|
1143
|
-
)
|
|
1144
|
-
CreateProfileRequestRequestTypeDef = TypedDict(
|
|
1145
|
-
"CreateProfileRequestRequestTypeDef",
|
|
1146
|
-
{
|
|
1147
|
-
"As2Id": str,
|
|
1148
|
-
"ProfileType": ProfileTypeType,
|
|
1149
|
-
"CertificateIds": NotRequired[Sequence[str]],
|
|
1150
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1151
|
-
},
|
|
1152
|
-
)
|
|
1153
|
-
CreateUserRequestRequestTypeDef = TypedDict(
|
|
1154
|
-
"CreateUserRequestRequestTypeDef",
|
|
1155
|
-
{
|
|
1156
|
-
"Role": str,
|
|
1157
|
-
"ServerId": str,
|
|
1158
|
-
"UserName": str,
|
|
1159
|
-
"HomeDirectory": NotRequired[str],
|
|
1160
|
-
"HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
|
|
1161
|
-
"HomeDirectoryMappings": NotRequired[Sequence[HomeDirectoryMapEntryTypeDef]],
|
|
1162
|
-
"Policy": NotRequired[str],
|
|
1163
|
-
"PosixProfile": NotRequired[PosixProfileTypeDef],
|
|
1164
|
-
"SshPublicKeyBody": NotRequired[str],
|
|
1165
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1166
|
-
},
|
|
1167
|
-
)
|
|
1168
|
-
DescribedAgreementTypeDef = TypedDict(
|
|
1169
|
-
"DescribedAgreementTypeDef",
|
|
1170
|
-
{
|
|
1171
|
-
"Arn": str,
|
|
1172
|
-
"AgreementId": NotRequired[str],
|
|
1173
|
-
"Description": NotRequired[str],
|
|
1174
|
-
"Status": NotRequired[AgreementStatusTypeType],
|
|
1175
|
-
"ServerId": NotRequired[str],
|
|
1176
|
-
"LocalProfileId": NotRequired[str],
|
|
1177
|
-
"PartnerProfileId": NotRequired[str],
|
|
1178
|
-
"BaseDirectory": NotRequired[str],
|
|
1179
|
-
"AccessRole": NotRequired[str],
|
|
1180
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1181
|
-
},
|
|
1182
|
-
)
|
|
1183
|
-
DescribedCertificateTypeDef = TypedDict(
|
|
1184
|
-
"DescribedCertificateTypeDef",
|
|
1185
|
-
{
|
|
1186
|
-
"Arn": str,
|
|
1187
|
-
"CertificateId": NotRequired[str],
|
|
1188
|
-
"Usage": NotRequired[CertificateUsageTypeType],
|
|
1189
|
-
"Status": NotRequired[CertificateStatusTypeType],
|
|
1190
|
-
"Certificate": NotRequired[str],
|
|
1191
|
-
"CertificateChain": NotRequired[str],
|
|
1192
|
-
"ActiveDate": NotRequired[datetime],
|
|
1193
|
-
"InactiveDate": NotRequired[datetime],
|
|
1194
|
-
"Serial": NotRequired[str],
|
|
1195
|
-
"NotBeforeDate": NotRequired[datetime],
|
|
1196
|
-
"NotAfterDate": NotRequired[datetime],
|
|
1197
|
-
"Type": NotRequired[CertificateTypeType],
|
|
1198
|
-
"Description": NotRequired[str],
|
|
1199
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1200
|
-
},
|
|
1201
|
-
)
|
|
1202
|
-
DescribedHostKeyTypeDef = TypedDict(
|
|
1203
|
-
"DescribedHostKeyTypeDef",
|
|
1204
|
-
{
|
|
1205
|
-
"Arn": str,
|
|
1206
|
-
"HostKeyId": NotRequired[str],
|
|
1207
|
-
"HostKeyFingerprint": NotRequired[str],
|
|
1208
|
-
"Description": NotRequired[str],
|
|
1209
|
-
"Type": NotRequired[str],
|
|
1210
|
-
"DateImported": NotRequired[datetime],
|
|
1211
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1212
|
-
},
|
|
1213
|
-
)
|
|
1214
|
-
DescribedProfileTypeDef = TypedDict(
|
|
1215
|
-
"DescribedProfileTypeDef",
|
|
1216
|
-
{
|
|
1217
|
-
"Arn": str,
|
|
1218
|
-
"ProfileId": NotRequired[str],
|
|
1219
|
-
"ProfileType": NotRequired[ProfileTypeType],
|
|
1220
|
-
"As2Id": NotRequired[str],
|
|
1221
|
-
"CertificateIds": NotRequired[List[str]],
|
|
1222
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1223
|
-
},
|
|
1224
|
-
)
|
|
1225
|
-
ImportHostKeyRequestRequestTypeDef = TypedDict(
|
|
1226
|
-
"ImportHostKeyRequestRequestTypeDef",
|
|
1227
|
-
{
|
|
1228
|
-
"ServerId": str,
|
|
1229
|
-
"HostKeyBody": str,
|
|
1230
|
-
"Description": NotRequired[str],
|
|
1231
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1232
|
-
},
|
|
1233
|
-
)
|
|
1234
|
-
ListTagsForResourceResponseTypeDef = TypedDict(
|
|
1235
|
-
"ListTagsForResourceResponseTypeDef",
|
|
1236
|
-
{
|
|
1237
|
-
"Arn": str,
|
|
1238
|
-
"Tags": List[TagTypeDef],
|
|
1239
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1240
|
-
"NextToken": NotRequired[str],
|
|
1241
|
-
},
|
|
1242
|
-
)
|
|
1243
|
-
TagResourceRequestRequestTypeDef = TypedDict(
|
|
1244
|
-
"TagResourceRequestRequestTypeDef",
|
|
1245
|
-
{
|
|
1246
|
-
"Arn": str,
|
|
1247
|
-
"Tags": Sequence[TagTypeDef],
|
|
1248
|
-
},
|
|
1249
|
-
)
|
|
1250
|
-
CreateConnectorRequestRequestTypeDef = TypedDict(
|
|
1251
|
-
"CreateConnectorRequestRequestTypeDef",
|
|
1252
|
-
{
|
|
1253
|
-
"Url": str,
|
|
1254
|
-
"AccessRole": str,
|
|
1255
|
-
"As2Config": NotRequired[As2ConnectorConfigTypeDef],
|
|
1256
|
-
"LoggingRole": NotRequired[str],
|
|
1257
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1258
|
-
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1259
|
-
"SecurityPolicyName": NotRequired[str],
|
|
1260
|
-
},
|
|
1261
|
-
)
|
|
1262
|
-
UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
1263
|
-
"UpdateConnectorRequestRequestTypeDef",
|
|
1264
|
-
{
|
|
1265
|
-
"ConnectorId": str,
|
|
1266
|
-
"Url": NotRequired[str],
|
|
1267
|
-
"As2Config": NotRequired[As2ConnectorConfigTypeDef],
|
|
1268
|
-
"AccessRole": NotRequired[str],
|
|
1269
|
-
"LoggingRole": NotRequired[str],
|
|
1270
|
-
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1271
|
-
"SecurityPolicyName": NotRequired[str],
|
|
1272
|
-
},
|
|
1273
|
-
)
|
|
1274
|
-
DescribeSecurityPolicyResponseTypeDef = TypedDict(
|
|
1275
|
-
"DescribeSecurityPolicyResponseTypeDef",
|
|
1276
|
-
{
|
|
1277
|
-
"SecurityPolicy": DescribedSecurityPolicyTypeDef,
|
|
1278
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1279
|
-
},
|
|
1280
|
-
)
|
|
1281
|
-
DescribeServerRequestServerOfflineWaitTypeDef = TypedDict(
|
|
1282
|
-
"DescribeServerRequestServerOfflineWaitTypeDef",
|
|
1283
|
-
{
|
|
1284
|
-
"ServerId": str,
|
|
1285
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1286
|
-
},
|
|
1287
|
-
)
|
|
1288
|
-
DescribeServerRequestServerOnlineWaitTypeDef = TypedDict(
|
|
1289
|
-
"DescribeServerRequestServerOnlineWaitTypeDef",
|
|
1290
|
-
{
|
|
1291
|
-
"ServerId": str,
|
|
1292
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1293
|
-
},
|
|
1294
|
-
)
|
|
1295
|
-
DescribedAccessTypeDef = TypedDict(
|
|
1296
|
-
"DescribedAccessTypeDef",
|
|
1297
|
-
{
|
|
1298
|
-
"HomeDirectory": NotRequired[str],
|
|
1299
|
-
"HomeDirectoryMappings": NotRequired[List[HomeDirectoryMapEntryTypeDef]],
|
|
1300
|
-
"HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
|
|
1301
|
-
"Policy": NotRequired[str],
|
|
1302
|
-
"PosixProfile": NotRequired[PosixProfileOutputTypeDef],
|
|
1303
|
-
"Role": NotRequired[str],
|
|
1304
|
-
"ExternalId": NotRequired[str],
|
|
1305
|
-
},
|
|
1306
|
-
)
|
|
1307
|
-
PosixProfileUnionTypeDef = Union[PosixProfileTypeDef, PosixProfileOutputTypeDef]
|
|
1308
|
-
DescribedConnectorTypeDef = TypedDict(
|
|
1309
|
-
"DescribedConnectorTypeDef",
|
|
1310
|
-
{
|
|
1311
|
-
"Arn": str,
|
|
1312
|
-
"ConnectorId": NotRequired[str],
|
|
1313
|
-
"Url": NotRequired[str],
|
|
1314
|
-
"As2Config": NotRequired[As2ConnectorConfigTypeDef],
|
|
1315
|
-
"AccessRole": NotRequired[str],
|
|
1316
|
-
"LoggingRole": NotRequired[str],
|
|
1317
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1318
|
-
"SftpConfig": NotRequired[SftpConnectorConfigOutputTypeDef],
|
|
1319
|
-
"ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1320
|
-
"SecurityPolicyName": NotRequired[str],
|
|
1321
|
-
},
|
|
1322
|
-
)
|
|
1323
|
-
SftpConnectorConfigUnionTypeDef = Union[
|
|
1324
|
-
SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
|
|
1325
|
-
]
|
|
1326
|
-
EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
|
|
1327
|
-
ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutputTypeDef]
|
|
1328
|
-
DescribedUserTypeDef = TypedDict(
|
|
1329
|
-
"DescribedUserTypeDef",
|
|
1330
|
-
{
|
|
1331
|
-
"Arn": str,
|
|
1332
|
-
"HomeDirectory": NotRequired[str],
|
|
1333
|
-
"HomeDirectoryMappings": NotRequired[List[HomeDirectoryMapEntryTypeDef]],
|
|
1334
|
-
"HomeDirectoryType": NotRequired[HomeDirectoryTypeType],
|
|
1335
|
-
"Policy": NotRequired[str],
|
|
1336
|
-
"PosixProfile": NotRequired[PosixProfileOutputTypeDef],
|
|
1337
|
-
"Role": NotRequired[str],
|
|
1338
|
-
"SshPublicKeys": NotRequired[List[SshPublicKeyTypeDef]],
|
|
1339
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1340
|
-
"UserName": NotRequired[str],
|
|
1341
|
-
},
|
|
1342
|
-
)
|
|
1343
|
-
ExecutionStepResultTypeDef = TypedDict(
|
|
1344
|
-
"ExecutionStepResultTypeDef",
|
|
1345
|
-
{
|
|
1346
|
-
"StepType": NotRequired[WorkflowStepTypeType],
|
|
1347
|
-
"Outputs": NotRequired[str],
|
|
1348
|
-
"Error": NotRequired[ExecutionErrorTypeDef],
|
|
1349
|
-
},
|
|
1350
|
-
)
|
|
1351
|
-
FileLocationTypeDef = TypedDict(
|
|
1352
|
-
"FileLocationTypeDef",
|
|
1353
|
-
{
|
|
1354
|
-
"S3FileLocation": NotRequired[S3FileLocationTypeDef],
|
|
1355
|
-
"EfsFileLocation": NotRequired[EfsFileLocationTypeDef],
|
|
1356
|
-
},
|
|
1357
|
-
)
|
|
1358
|
-
ImportCertificateRequestRequestTypeDef = TypedDict(
|
|
1359
|
-
"ImportCertificateRequestRequestTypeDef",
|
|
1360
|
-
{
|
|
1361
|
-
"Usage": CertificateUsageTypeType,
|
|
1362
|
-
"Certificate": str,
|
|
1363
|
-
"CertificateChain": NotRequired[str],
|
|
1364
|
-
"PrivateKey": NotRequired[str],
|
|
1365
|
-
"ActiveDate": NotRequired[TimestampTypeDef],
|
|
1366
|
-
"InactiveDate": NotRequired[TimestampTypeDef],
|
|
1367
|
-
"Description": NotRequired[str],
|
|
1368
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1369
|
-
},
|
|
1370
|
-
)
|
|
1371
|
-
UpdateCertificateRequestRequestTypeDef = TypedDict(
|
|
1372
|
-
"UpdateCertificateRequestRequestTypeDef",
|
|
1373
|
-
{
|
|
1374
|
-
"CertificateId": str,
|
|
1375
|
-
"ActiveDate": NotRequired[TimestampTypeDef],
|
|
1376
|
-
"InactiveDate": NotRequired[TimestampTypeDef],
|
|
1377
|
-
"Description": NotRequired[str],
|
|
1378
|
-
},
|
|
1379
|
-
)
|
|
1380
|
-
InputFileLocationTypeDef = TypedDict(
|
|
1381
|
-
"InputFileLocationTypeDef",
|
|
1382
|
-
{
|
|
1383
|
-
"S3FileLocation": NotRequired[S3InputFileLocationTypeDef],
|
|
1384
|
-
"EfsFileLocation": NotRequired[EfsFileLocationTypeDef],
|
|
1385
|
-
},
|
|
1386
|
-
)
|
|
1387
|
-
ListAccessesRequestListAccessesPaginateTypeDef = TypedDict(
|
|
1388
|
-
"ListAccessesRequestListAccessesPaginateTypeDef",
|
|
1389
|
-
{
|
|
1390
|
-
"ServerId": str,
|
|
1391
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1392
|
-
},
|
|
1393
|
-
)
|
|
1394
|
-
ListAgreementsRequestListAgreementsPaginateTypeDef = TypedDict(
|
|
1395
|
-
"ListAgreementsRequestListAgreementsPaginateTypeDef",
|
|
1396
|
-
{
|
|
1397
|
-
"ServerId": str,
|
|
1398
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1399
|
-
},
|
|
1400
|
-
)
|
|
1401
|
-
ListCertificatesRequestListCertificatesPaginateTypeDef = TypedDict(
|
|
1402
|
-
"ListCertificatesRequestListCertificatesPaginateTypeDef",
|
|
1403
|
-
{
|
|
1404
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1405
|
-
},
|
|
1406
|
-
)
|
|
1407
|
-
ListConnectorsRequestListConnectorsPaginateTypeDef = TypedDict(
|
|
1408
|
-
"ListConnectorsRequestListConnectorsPaginateTypeDef",
|
|
1409
|
-
{
|
|
1410
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1411
|
-
},
|
|
1412
|
-
)
|
|
1413
|
-
ListExecutionsRequestListExecutionsPaginateTypeDef = TypedDict(
|
|
1414
|
-
"ListExecutionsRequestListExecutionsPaginateTypeDef",
|
|
1415
|
-
{
|
|
1416
|
-
"WorkflowId": str,
|
|
1417
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1418
|
-
},
|
|
1419
|
-
)
|
|
1420
|
-
ListProfilesRequestListProfilesPaginateTypeDef = TypedDict(
|
|
1421
|
-
"ListProfilesRequestListProfilesPaginateTypeDef",
|
|
1422
|
-
{
|
|
1423
|
-
"ProfileType": NotRequired[ProfileTypeType],
|
|
1424
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1425
|
-
},
|
|
1426
|
-
)
|
|
1427
|
-
ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef = TypedDict(
|
|
1428
|
-
"ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
|
|
1429
|
-
{
|
|
1430
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1431
|
-
},
|
|
1432
|
-
)
|
|
1433
|
-
ListServersRequestListServersPaginateTypeDef = TypedDict(
|
|
1434
|
-
"ListServersRequestListServersPaginateTypeDef",
|
|
1435
|
-
{
|
|
1436
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1437
|
-
},
|
|
1438
|
-
)
|
|
1439
|
-
ListTagsForResourceRequestListTagsForResourcePaginateTypeDef = TypedDict(
|
|
1440
|
-
"ListTagsForResourceRequestListTagsForResourcePaginateTypeDef",
|
|
1441
|
-
{
|
|
1442
|
-
"Arn": str,
|
|
1443
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1444
|
-
},
|
|
1445
|
-
)
|
|
1446
|
-
ListUsersRequestListUsersPaginateTypeDef = TypedDict(
|
|
1447
|
-
"ListUsersRequestListUsersPaginateTypeDef",
|
|
1448
|
-
{
|
|
1449
|
-
"ServerId": str,
|
|
1450
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1451
|
-
},
|
|
1452
|
-
)
|
|
1453
|
-
ListWorkflowsRequestListWorkflowsPaginateTypeDef = TypedDict(
|
|
1454
|
-
"ListWorkflowsRequestListWorkflowsPaginateTypeDef",
|
|
1455
|
-
{
|
|
1456
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1457
|
-
},
|
|
1458
|
-
)
|
|
1459
|
-
ListAccessesResponseTypeDef = TypedDict(
|
|
1460
|
-
"ListAccessesResponseTypeDef",
|
|
1461
|
-
{
|
|
1462
|
-
"ServerId": str,
|
|
1463
|
-
"Accesses": List[ListedAccessTypeDef],
|
|
1464
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1465
|
-
"NextToken": NotRequired[str],
|
|
1466
|
-
},
|
|
1467
|
-
)
|
|
1468
|
-
ListAgreementsResponseTypeDef = TypedDict(
|
|
1469
|
-
"ListAgreementsResponseTypeDef",
|
|
1470
|
-
{
|
|
1471
|
-
"Agreements": List[ListedAgreementTypeDef],
|
|
1472
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1473
|
-
"NextToken": NotRequired[str],
|
|
1474
|
-
},
|
|
1475
|
-
)
|
|
1476
|
-
ListCertificatesResponseTypeDef = TypedDict(
|
|
1477
|
-
"ListCertificatesResponseTypeDef",
|
|
1478
|
-
{
|
|
1479
|
-
"Certificates": List[ListedCertificateTypeDef],
|
|
1480
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1481
|
-
"NextToken": NotRequired[str],
|
|
1482
|
-
},
|
|
1483
|
-
)
|
|
1484
|
-
ListConnectorsResponseTypeDef = TypedDict(
|
|
1485
|
-
"ListConnectorsResponseTypeDef",
|
|
1486
|
-
{
|
|
1487
|
-
"Connectors": List[ListedConnectorTypeDef],
|
|
1488
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1489
|
-
"NextToken": NotRequired[str],
|
|
1490
|
-
},
|
|
1491
|
-
)
|
|
1492
|
-
ListHostKeysResponseTypeDef = TypedDict(
|
|
1493
|
-
"ListHostKeysResponseTypeDef",
|
|
1494
|
-
{
|
|
1495
|
-
"ServerId": str,
|
|
1496
|
-
"HostKeys": List[ListedHostKeyTypeDef],
|
|
1497
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1498
|
-
"NextToken": NotRequired[str],
|
|
1499
|
-
},
|
|
1500
|
-
)
|
|
1501
|
-
ListProfilesResponseTypeDef = TypedDict(
|
|
1502
|
-
"ListProfilesResponseTypeDef",
|
|
1503
|
-
{
|
|
1504
|
-
"Profiles": List[ListedProfileTypeDef],
|
|
1505
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1506
|
-
"NextToken": NotRequired[str],
|
|
1507
|
-
},
|
|
1508
|
-
)
|
|
1509
|
-
ListServersResponseTypeDef = TypedDict(
|
|
1510
|
-
"ListServersResponseTypeDef",
|
|
1511
|
-
{
|
|
1512
|
-
"Servers": List[ListedServerTypeDef],
|
|
1513
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1514
|
-
"NextToken": NotRequired[str],
|
|
1515
|
-
},
|
|
1516
|
-
)
|
|
1517
|
-
ListUsersResponseTypeDef = TypedDict(
|
|
1518
|
-
"ListUsersResponseTypeDef",
|
|
1519
|
-
{
|
|
1520
|
-
"ServerId": str,
|
|
1521
|
-
"Users": List[ListedUserTypeDef],
|
|
1522
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1523
|
-
"NextToken": NotRequired[str],
|
|
1524
|
-
},
|
|
1525
|
-
)
|
|
1526
|
-
ListWorkflowsResponseTypeDef = TypedDict(
|
|
1527
|
-
"ListWorkflowsResponseTypeDef",
|
|
1528
|
-
{
|
|
1529
|
-
"Workflows": List[ListedWorkflowTypeDef],
|
|
1530
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1531
|
-
"NextToken": NotRequired[str],
|
|
1532
|
-
},
|
|
1533
|
-
)
|
|
1534
|
-
TagStepDetailsOutputTypeDef = TypedDict(
|
|
1535
|
-
"TagStepDetailsOutputTypeDef",
|
|
1536
|
-
{
|
|
1537
|
-
"Name": NotRequired[str],
|
|
1538
|
-
"Tags": NotRequired[List[S3TagTypeDef]],
|
|
1539
|
-
"SourceFileLocation": NotRequired[str],
|
|
1540
|
-
},
|
|
1541
|
-
)
|
|
1542
|
-
TagStepDetailsTypeDef = TypedDict(
|
|
1543
|
-
"TagStepDetailsTypeDef",
|
|
1544
|
-
{
|
|
1545
|
-
"Name": NotRequired[str],
|
|
1546
|
-
"Tags": NotRequired[Sequence[S3TagTypeDef]],
|
|
1547
|
-
"SourceFileLocation": NotRequired[str],
|
|
1548
|
-
},
|
|
1549
|
-
)
|
|
1550
|
-
ServiceMetadataTypeDef = TypedDict(
|
|
1551
|
-
"ServiceMetadataTypeDef",
|
|
1552
|
-
{
|
|
1553
|
-
"UserDetails": UserDetailsTypeDef,
|
|
1554
|
-
},
|
|
1555
|
-
)
|
|
1556
|
-
WorkflowDetailsOutputTypeDef = TypedDict(
|
|
1557
|
-
"WorkflowDetailsOutputTypeDef",
|
|
1558
|
-
{
|
|
1559
|
-
"OnUpload": NotRequired[List[WorkflowDetailTypeDef]],
|
|
1560
|
-
"OnPartialUpload": NotRequired[List[WorkflowDetailTypeDef]],
|
|
1561
|
-
},
|
|
1562
|
-
)
|
|
1563
|
-
WorkflowDetailsTypeDef = TypedDict(
|
|
1564
|
-
"WorkflowDetailsTypeDef",
|
|
1565
|
-
{
|
|
1566
|
-
"OnUpload": NotRequired[Sequence[WorkflowDetailTypeDef]],
|
|
1567
|
-
"OnPartialUpload": NotRequired[Sequence[WorkflowDetailTypeDef]],
|
|
1568
|
-
},
|
|
1569
|
-
)
|
|
1570
|
-
DescribeAgreementResponseTypeDef = TypedDict(
|
|
1571
|
-
"DescribeAgreementResponseTypeDef",
|
|
1572
|
-
{
|
|
1573
|
-
"Agreement": DescribedAgreementTypeDef,
|
|
1574
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1575
|
-
},
|
|
1576
|
-
)
|
|
1577
|
-
DescribeCertificateResponseTypeDef = TypedDict(
|
|
1578
|
-
"DescribeCertificateResponseTypeDef",
|
|
1579
|
-
{
|
|
1580
|
-
"Certificate": DescribedCertificateTypeDef,
|
|
1581
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1582
|
-
},
|
|
1583
|
-
)
|
|
1584
|
-
DescribeHostKeyResponseTypeDef = TypedDict(
|
|
1585
|
-
"DescribeHostKeyResponseTypeDef",
|
|
1586
|
-
{
|
|
1587
|
-
"HostKey": DescribedHostKeyTypeDef,
|
|
1588
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1589
|
-
},
|
|
1590
|
-
)
|
|
1591
|
-
DescribeProfileResponseTypeDef = TypedDict(
|
|
1592
|
-
"DescribeProfileResponseTypeDef",
|
|
1593
|
-
{
|
|
1594
|
-
"Profile": DescribedProfileTypeDef,
|
|
1595
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1596
|
-
},
|
|
1597
|
-
)
|
|
1598
|
-
DescribeAccessResponseTypeDef = TypedDict(
|
|
1599
|
-
"DescribeAccessResponseTypeDef",
|
|
1600
|
-
{
|
|
1601
|
-
"ServerId": str,
|
|
1602
|
-
"Access": DescribedAccessTypeDef,
|
|
1603
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1604
|
-
},
|
|
1605
|
-
)
|
|
1606
|
-
DescribeConnectorResponseTypeDef = TypedDict(
|
|
1607
|
-
"DescribeConnectorResponseTypeDef",
|
|
1608
|
-
{
|
|
1609
|
-
"Connector": DescribedConnectorTypeDef,
|
|
1610
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1611
|
-
},
|
|
1612
|
-
)
|
|
1613
|
-
DescribeUserResponseTypeDef = TypedDict(
|
|
1614
|
-
"DescribeUserResponseTypeDef",
|
|
1615
|
-
{
|
|
1616
|
-
"ServerId": str,
|
|
1617
|
-
"User": DescribedUserTypeDef,
|
|
1618
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1619
|
-
},
|
|
1620
|
-
)
|
|
1621
|
-
ExecutionResultsTypeDef = TypedDict(
|
|
1622
|
-
"ExecutionResultsTypeDef",
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
class ListProfilesRequestRequestTypeDef(TypedDict):
|
|
699
|
+
MaxResults: NotRequired[int]
|
|
700
|
+
NextToken: NotRequired[str]
|
|
701
|
+
ProfileType: NotRequired[ProfileTypeType]
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
class ListedProfileTypeDef(TypedDict):
|
|
705
|
+
Arn: NotRequired[str]
|
|
706
|
+
ProfileId: NotRequired[str]
|
|
707
|
+
As2Id: NotRequired[str]
|
|
708
|
+
ProfileType: NotRequired[ProfileTypeType]
|
|
709
|
+
|
|
710
|
+
|
|
711
|
+
class ListSecurityPoliciesRequestRequestTypeDef(TypedDict):
|
|
712
|
+
MaxResults: NotRequired[int]
|
|
713
|
+
NextToken: NotRequired[str]
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
class ListServersRequestRequestTypeDef(TypedDict):
|
|
717
|
+
MaxResults: NotRequired[int]
|
|
718
|
+
NextToken: NotRequired[str]
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
class ListedServerTypeDef(TypedDict):
|
|
722
|
+
Arn: str
|
|
723
|
+
Domain: NotRequired[DomainType]
|
|
724
|
+
IdentityProviderType: NotRequired[IdentityProviderTypeType]
|
|
725
|
+
EndpointType: NotRequired[EndpointTypeType]
|
|
726
|
+
LoggingRole: NotRequired[str]
|
|
727
|
+
ServerId: NotRequired[str]
|
|
728
|
+
State: NotRequired[StateType]
|
|
729
|
+
UserCount: NotRequired[int]
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
class ListTagsForResourceRequestRequestTypeDef(TypedDict):
|
|
733
|
+
Arn: str
|
|
734
|
+
MaxResults: NotRequired[int]
|
|
735
|
+
NextToken: NotRequired[str]
|
|
736
|
+
|
|
737
|
+
|
|
738
|
+
class ListUsersRequestRequestTypeDef(TypedDict):
|
|
739
|
+
ServerId: str
|
|
740
|
+
MaxResults: NotRequired[int]
|
|
741
|
+
NextToken: NotRequired[str]
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
class ListedUserTypeDef(TypedDict):
|
|
745
|
+
Arn: str
|
|
746
|
+
HomeDirectory: NotRequired[str]
|
|
747
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
748
|
+
Role: NotRequired[str]
|
|
749
|
+
SshPublicKeyCount: NotRequired[int]
|
|
750
|
+
UserName: NotRequired[str]
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
class ListWebAppsRequestRequestTypeDef(TypedDict):
|
|
754
|
+
MaxResults: NotRequired[int]
|
|
755
|
+
NextToken: NotRequired[str]
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
class ListedWebAppTypeDef(TypedDict):
|
|
759
|
+
Arn: str
|
|
760
|
+
WebAppId: str
|
|
761
|
+
AccessEndpoint: NotRequired[str]
|
|
762
|
+
WebAppEndpoint: NotRequired[str]
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
class ListWorkflowsRequestRequestTypeDef(TypedDict):
|
|
766
|
+
MaxResults: NotRequired[int]
|
|
767
|
+
NextToken: NotRequired[str]
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
class ListedWorkflowTypeDef(TypedDict):
|
|
771
|
+
WorkflowId: NotRequired[str]
|
|
772
|
+
Description: NotRequired[str]
|
|
773
|
+
Arn: NotRequired[str]
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
class S3TagTypeDef(TypedDict):
|
|
777
|
+
Key: str
|
|
778
|
+
Value: str
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
class SendWorkflowStepStateRequestRequestTypeDef(TypedDict):
|
|
782
|
+
WorkflowId: str
|
|
783
|
+
ExecutionId: str
|
|
784
|
+
Token: str
|
|
785
|
+
Status: CustomStepStatusType
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
class UserDetailsTypeDef(TypedDict):
|
|
789
|
+
UserName: str
|
|
790
|
+
ServerId: str
|
|
791
|
+
SessionId: NotRequired[str]
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
class StartDirectoryListingRequestRequestTypeDef(TypedDict):
|
|
795
|
+
ConnectorId: str
|
|
796
|
+
RemoteDirectoryPath: str
|
|
797
|
+
OutputDirectoryPath: str
|
|
798
|
+
MaxItems: NotRequired[int]
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class StartFileTransferRequestRequestTypeDef(TypedDict):
|
|
802
|
+
ConnectorId: str
|
|
803
|
+
SendFilePaths: NotRequired[Sequence[str]]
|
|
804
|
+
RetrieveFilePaths: NotRequired[Sequence[str]]
|
|
805
|
+
LocalDirectoryPath: NotRequired[str]
|
|
806
|
+
RemoteDirectoryPath: NotRequired[str]
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
class StartServerRequestRequestTypeDef(TypedDict):
|
|
810
|
+
ServerId: str
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
class StopServerRequestRequestTypeDef(TypedDict):
|
|
814
|
+
ServerId: str
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
class TestConnectionRequestRequestTypeDef(TypedDict):
|
|
818
|
+
ConnectorId: str
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
class TestIdentityProviderRequestRequestTypeDef(TypedDict):
|
|
822
|
+
ServerId: str
|
|
823
|
+
UserName: str
|
|
824
|
+
ServerProtocol: NotRequired[ProtocolType]
|
|
825
|
+
SourceIp: NotRequired[str]
|
|
826
|
+
UserPassword: NotRequired[str]
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
830
|
+
Arn: str
|
|
831
|
+
TagKeys: Sequence[str]
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
class UpdateAgreementRequestRequestTypeDef(TypedDict):
|
|
835
|
+
AgreementId: str
|
|
836
|
+
ServerId: str
|
|
837
|
+
Description: NotRequired[str]
|
|
838
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
839
|
+
LocalProfileId: NotRequired[str]
|
|
840
|
+
PartnerProfileId: NotRequired[str]
|
|
841
|
+
BaseDirectory: NotRequired[str]
|
|
842
|
+
AccessRole: NotRequired[str]
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class UpdateHostKeyRequestRequestTypeDef(TypedDict):
|
|
846
|
+
ServerId: str
|
|
847
|
+
HostKeyId: str
|
|
848
|
+
Description: str
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class UpdateProfileRequestRequestTypeDef(TypedDict):
|
|
852
|
+
ProfileId: str
|
|
853
|
+
CertificateIds: NotRequired[Sequence[str]]
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
class UpdateWebAppIdentityCenterConfigTypeDef(TypedDict):
|
|
857
|
+
Role: NotRequired[str]
|
|
858
|
+
|
|
859
|
+
|
|
860
|
+
class WorkflowDetailTypeDef(TypedDict):
|
|
861
|
+
WorkflowId: str
|
|
862
|
+
ExecutionRole: str
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
class UpdateWebAppCustomizationRequestRequestTypeDef(TypedDict):
|
|
866
|
+
WebAppId: str
|
|
867
|
+
Title: NotRequired[str]
|
|
868
|
+
LogoFile: NotRequired[BlobTypeDef]
|
|
869
|
+
FaviconFile: NotRequired[BlobTypeDef]
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
class CreateAccessRequestRequestTypeDef(TypedDict):
|
|
873
|
+
Role: str
|
|
874
|
+
ServerId: str
|
|
875
|
+
ExternalId: str
|
|
876
|
+
HomeDirectory: NotRequired[str]
|
|
877
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
878
|
+
HomeDirectoryMappings: NotRequired[Sequence[HomeDirectoryMapEntryTypeDef]]
|
|
879
|
+
Policy: NotRequired[str]
|
|
880
|
+
PosixProfile: NotRequired[PosixProfileTypeDef]
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
class UpdateAccessRequestRequestTypeDef(TypedDict):
|
|
884
|
+
ServerId: str
|
|
885
|
+
ExternalId: str
|
|
886
|
+
HomeDirectory: NotRequired[str]
|
|
887
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
888
|
+
HomeDirectoryMappings: NotRequired[Sequence[HomeDirectoryMapEntryTypeDef]]
|
|
889
|
+
Policy: NotRequired[str]
|
|
890
|
+
PosixProfile: NotRequired[PosixProfileTypeDef]
|
|
891
|
+
Role: NotRequired[str]
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class UpdateUserRequestRequestTypeDef(TypedDict):
|
|
895
|
+
ServerId: str
|
|
896
|
+
UserName: str
|
|
897
|
+
HomeDirectory: NotRequired[str]
|
|
898
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
899
|
+
HomeDirectoryMappings: NotRequired[Sequence[HomeDirectoryMapEntryTypeDef]]
|
|
900
|
+
Policy: NotRequired[str]
|
|
901
|
+
PosixProfile: NotRequired[PosixProfileTypeDef]
|
|
902
|
+
Role: NotRequired[str]
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
class CreateAccessResponseTypeDef(TypedDict):
|
|
906
|
+
ServerId: str
|
|
907
|
+
ExternalId: str
|
|
908
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
909
|
+
|
|
910
|
+
|
|
911
|
+
class CreateAgreementResponseTypeDef(TypedDict):
|
|
912
|
+
AgreementId: str
|
|
913
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
class CreateConnectorResponseTypeDef(TypedDict):
|
|
917
|
+
ConnectorId: str
|
|
918
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
class CreateProfileResponseTypeDef(TypedDict):
|
|
922
|
+
ProfileId: str
|
|
923
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
924
|
+
|
|
925
|
+
|
|
926
|
+
class CreateServerResponseTypeDef(TypedDict):
|
|
927
|
+
ServerId: str
|
|
928
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
class CreateUserResponseTypeDef(TypedDict):
|
|
932
|
+
ServerId: str
|
|
933
|
+
UserName: str
|
|
934
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
935
|
+
|
|
936
|
+
|
|
937
|
+
class CreateWebAppResponseTypeDef(TypedDict):
|
|
938
|
+
WebAppId: str
|
|
939
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
class CreateWorkflowResponseTypeDef(TypedDict):
|
|
943
|
+
WorkflowId: str
|
|
944
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
class EmptyResponseMetadataTypeDef(TypedDict):
|
|
948
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
class ImportCertificateResponseTypeDef(TypedDict):
|
|
952
|
+
CertificateId: str
|
|
953
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
class ImportHostKeyResponseTypeDef(TypedDict):
|
|
957
|
+
ServerId: str
|
|
958
|
+
HostKeyId: str
|
|
959
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
960
|
+
|
|
961
|
+
|
|
962
|
+
class ImportSshPublicKeyResponseTypeDef(TypedDict):
|
|
963
|
+
ServerId: str
|
|
964
|
+
SshPublicKeyId: str
|
|
965
|
+
UserName: str
|
|
966
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
967
|
+
|
|
968
|
+
|
|
969
|
+
class ListFileTransferResultsResponseTypeDef(TypedDict):
|
|
970
|
+
FileTransferResults: List[ConnectorFileTransferResultTypeDef]
|
|
971
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
972
|
+
NextToken: NotRequired[str]
|
|
973
|
+
|
|
974
|
+
|
|
975
|
+
class ListSecurityPoliciesResponseTypeDef(TypedDict):
|
|
976
|
+
SecurityPolicyNames: List[str]
|
|
977
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
978
|
+
NextToken: NotRequired[str]
|
|
979
|
+
|
|
980
|
+
|
|
981
|
+
class StartDirectoryListingResponseTypeDef(TypedDict):
|
|
982
|
+
ListingId: str
|
|
983
|
+
OutputFileName: str
|
|
984
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
class StartFileTransferResponseTypeDef(TypedDict):
|
|
988
|
+
TransferId: str
|
|
989
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
class TestConnectionResponseTypeDef(TypedDict):
|
|
993
|
+
ConnectorId: str
|
|
994
|
+
Status: str
|
|
995
|
+
StatusMessage: str
|
|
996
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
class TestIdentityProviderResponseTypeDef(TypedDict):
|
|
1000
|
+
Response: str
|
|
1001
|
+
StatusCode: int
|
|
1002
|
+
Message: str
|
|
1003
|
+
Url: str
|
|
1004
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
|
+
|
|
1006
|
+
|
|
1007
|
+
class UpdateAccessResponseTypeDef(TypedDict):
|
|
1008
|
+
ServerId: str
|
|
1009
|
+
ExternalId: str
|
|
1010
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
class UpdateAgreementResponseTypeDef(TypedDict):
|
|
1014
|
+
AgreementId: str
|
|
1015
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
class UpdateCertificateResponseTypeDef(TypedDict):
|
|
1019
|
+
CertificateId: str
|
|
1020
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
class UpdateConnectorResponseTypeDef(TypedDict):
|
|
1024
|
+
ConnectorId: str
|
|
1025
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1026
|
+
|
|
1027
|
+
|
|
1028
|
+
class UpdateHostKeyResponseTypeDef(TypedDict):
|
|
1029
|
+
ServerId: str
|
|
1030
|
+
HostKeyId: str
|
|
1031
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
class UpdateProfileResponseTypeDef(TypedDict):
|
|
1035
|
+
ProfileId: str
|
|
1036
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
class UpdateServerResponseTypeDef(TypedDict):
|
|
1040
|
+
ServerId: str
|
|
1041
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
class UpdateUserResponseTypeDef(TypedDict):
|
|
1045
|
+
ServerId: str
|
|
1046
|
+
UserName: str
|
|
1047
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1048
|
+
|
|
1049
|
+
|
|
1050
|
+
class UpdateWebAppCustomizationResponseTypeDef(TypedDict):
|
|
1051
|
+
WebAppId: str
|
|
1052
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
class UpdateWebAppResponseTypeDef(TypedDict):
|
|
1056
|
+
WebAppId: str
|
|
1057
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
class CreateAgreementRequestRequestTypeDef(TypedDict):
|
|
1061
|
+
ServerId: str
|
|
1062
|
+
LocalProfileId: str
|
|
1063
|
+
PartnerProfileId: str
|
|
1064
|
+
BaseDirectory: str
|
|
1065
|
+
AccessRole: str
|
|
1066
|
+
Description: NotRequired[str]
|
|
1067
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
1068
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1069
|
+
|
|
1070
|
+
|
|
1071
|
+
class CreateProfileRequestRequestTypeDef(TypedDict):
|
|
1072
|
+
As2Id: str
|
|
1073
|
+
ProfileType: ProfileTypeType
|
|
1074
|
+
CertificateIds: NotRequired[Sequence[str]]
|
|
1075
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
class CreateUserRequestRequestTypeDef(TypedDict):
|
|
1079
|
+
Role: str
|
|
1080
|
+
ServerId: str
|
|
1081
|
+
UserName: str
|
|
1082
|
+
HomeDirectory: NotRequired[str]
|
|
1083
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1084
|
+
HomeDirectoryMappings: NotRequired[Sequence[HomeDirectoryMapEntryTypeDef]]
|
|
1085
|
+
Policy: NotRequired[str]
|
|
1086
|
+
PosixProfile: NotRequired[PosixProfileTypeDef]
|
|
1087
|
+
SshPublicKeyBody: NotRequired[str]
|
|
1088
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1089
|
+
|
|
1090
|
+
|
|
1091
|
+
class DescribedAgreementTypeDef(TypedDict):
|
|
1092
|
+
Arn: str
|
|
1093
|
+
AgreementId: NotRequired[str]
|
|
1094
|
+
Description: NotRequired[str]
|
|
1095
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
1096
|
+
ServerId: NotRequired[str]
|
|
1097
|
+
LocalProfileId: NotRequired[str]
|
|
1098
|
+
PartnerProfileId: NotRequired[str]
|
|
1099
|
+
BaseDirectory: NotRequired[str]
|
|
1100
|
+
AccessRole: NotRequired[str]
|
|
1101
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
DescribedCertificateTypeDef = TypedDict(
|
|
1105
|
+
"DescribedCertificateTypeDef",
|
|
1623
1106
|
{
|
|
1624
|
-
"
|
|
1625
|
-
"
|
|
1107
|
+
"Arn": str,
|
|
1108
|
+
"CertificateId": NotRequired[str],
|
|
1109
|
+
"Usage": NotRequired[CertificateUsageTypeType],
|
|
1110
|
+
"Status": NotRequired[CertificateStatusTypeType],
|
|
1111
|
+
"Certificate": NotRequired[str],
|
|
1112
|
+
"CertificateChain": NotRequired[str],
|
|
1113
|
+
"ActiveDate": NotRequired[datetime],
|
|
1114
|
+
"InactiveDate": NotRequired[datetime],
|
|
1115
|
+
"Serial": NotRequired[str],
|
|
1116
|
+
"NotBeforeDate": NotRequired[datetime],
|
|
1117
|
+
"NotAfterDate": NotRequired[datetime],
|
|
1118
|
+
"Type": NotRequired[CertificateTypeType],
|
|
1119
|
+
"Description": NotRequired[str],
|
|
1120
|
+
"Tags": NotRequired[List[TagTypeDef]],
|
|
1626
1121
|
},
|
|
1627
1122
|
)
|
|
1628
|
-
|
|
1629
|
-
"
|
|
1123
|
+
DescribedHostKeyTypeDef = TypedDict(
|
|
1124
|
+
"DescribedHostKeyTypeDef",
|
|
1630
1125
|
{
|
|
1631
|
-
"
|
|
1632
|
-
"
|
|
1633
|
-
"
|
|
1634
|
-
"
|
|
1126
|
+
"Arn": str,
|
|
1127
|
+
"HostKeyId": NotRequired[str],
|
|
1128
|
+
"HostKeyFingerprint": NotRequired[str],
|
|
1129
|
+
"Description": NotRequired[str],
|
|
1130
|
+
"Type": NotRequired[str],
|
|
1131
|
+
"DateImported": NotRequired[datetime],
|
|
1132
|
+
"Tags": NotRequired[List[TagTypeDef]],
|
|
1635
1133
|
},
|
|
1636
1134
|
)
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
class DescribedProfileTypeDef(TypedDict):
|
|
1138
|
+
Arn: str
|
|
1139
|
+
ProfileId: NotRequired[str]
|
|
1140
|
+
ProfileType: NotRequired[ProfileTypeType]
|
|
1141
|
+
As2Id: NotRequired[str]
|
|
1142
|
+
CertificateIds: NotRequired[List[str]]
|
|
1143
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
class ImportHostKeyRequestRequestTypeDef(TypedDict):
|
|
1147
|
+
ServerId: str
|
|
1148
|
+
HostKeyBody: str
|
|
1149
|
+
Description: NotRequired[str]
|
|
1150
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1151
|
+
|
|
1152
|
+
|
|
1153
|
+
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1154
|
+
Arn: str
|
|
1155
|
+
Tags: List[TagTypeDef]
|
|
1156
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1157
|
+
NextToken: NotRequired[str]
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
class TagResourceRequestRequestTypeDef(TypedDict):
|
|
1161
|
+
Arn: str
|
|
1162
|
+
Tags: Sequence[TagTypeDef]
|
|
1163
|
+
|
|
1164
|
+
|
|
1165
|
+
class CreateConnectorRequestRequestTypeDef(TypedDict):
|
|
1166
|
+
Url: str
|
|
1167
|
+
AccessRole: str
|
|
1168
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1169
|
+
LoggingRole: NotRequired[str]
|
|
1170
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1171
|
+
SftpConfig: NotRequired[SftpConnectorConfigTypeDef]
|
|
1172
|
+
SecurityPolicyName: NotRequired[str]
|
|
1173
|
+
|
|
1174
|
+
|
|
1175
|
+
class UpdateConnectorRequestRequestTypeDef(TypedDict):
|
|
1176
|
+
ConnectorId: str
|
|
1177
|
+
Url: NotRequired[str]
|
|
1178
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1179
|
+
AccessRole: NotRequired[str]
|
|
1180
|
+
LoggingRole: NotRequired[str]
|
|
1181
|
+
SftpConfig: NotRequired[SftpConnectorConfigTypeDef]
|
|
1182
|
+
SecurityPolicyName: NotRequired[str]
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
class DescribeSecurityPolicyResponseTypeDef(TypedDict):
|
|
1186
|
+
SecurityPolicy: DescribedSecurityPolicyTypeDef
|
|
1187
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1188
|
+
|
|
1189
|
+
|
|
1190
|
+
class DescribeServerRequestServerOfflineWaitTypeDef(TypedDict):
|
|
1191
|
+
ServerId: str
|
|
1192
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
class DescribeServerRequestServerOnlineWaitTypeDef(TypedDict):
|
|
1196
|
+
ServerId: str
|
|
1197
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1198
|
+
|
|
1199
|
+
|
|
1200
|
+
class DescribeWebAppCustomizationResponseTypeDef(TypedDict):
|
|
1201
|
+
WebAppCustomization: DescribedWebAppCustomizationTypeDef
|
|
1202
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1203
|
+
|
|
1204
|
+
|
|
1205
|
+
class DescribedAccessTypeDef(TypedDict):
|
|
1206
|
+
HomeDirectory: NotRequired[str]
|
|
1207
|
+
HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
|
|
1208
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1209
|
+
Policy: NotRequired[str]
|
|
1210
|
+
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1211
|
+
Role: NotRequired[str]
|
|
1212
|
+
ExternalId: NotRequired[str]
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
class DescribedConnectorTypeDef(TypedDict):
|
|
1216
|
+
Arn: str
|
|
1217
|
+
ConnectorId: NotRequired[str]
|
|
1218
|
+
Url: NotRequired[str]
|
|
1219
|
+
As2Config: NotRequired[As2ConnectorConfigTypeDef]
|
|
1220
|
+
AccessRole: NotRequired[str]
|
|
1221
|
+
LoggingRole: NotRequired[str]
|
|
1222
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1223
|
+
SftpConfig: NotRequired[SftpConnectorConfigOutputTypeDef]
|
|
1224
|
+
ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1225
|
+
SecurityPolicyName: NotRequired[str]
|
|
1226
|
+
|
|
1227
|
+
|
|
1228
|
+
class DescribedWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1229
|
+
IdentityCenterConfig: NotRequired[DescribedIdentityCenterConfigTypeDef]
|
|
1230
|
+
|
|
1231
|
+
|
|
1232
|
+
class DescribedUserTypeDef(TypedDict):
|
|
1233
|
+
Arn: str
|
|
1234
|
+
HomeDirectory: NotRequired[str]
|
|
1235
|
+
HomeDirectoryMappings: NotRequired[List[HomeDirectoryMapEntryTypeDef]]
|
|
1236
|
+
HomeDirectoryType: NotRequired[HomeDirectoryTypeType]
|
|
1237
|
+
Policy: NotRequired[str]
|
|
1238
|
+
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1239
|
+
Role: NotRequired[str]
|
|
1240
|
+
SshPublicKeys: NotRequired[List[SshPublicKeyTypeDef]]
|
|
1241
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1242
|
+
UserName: NotRequired[str]
|
|
1243
|
+
|
|
1244
|
+
|
|
1245
|
+
class ExecutionStepResultTypeDef(TypedDict):
|
|
1246
|
+
StepType: NotRequired[WorkflowStepTypeType]
|
|
1247
|
+
Outputs: NotRequired[str]
|
|
1248
|
+
Error: NotRequired[ExecutionErrorTypeDef]
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
class FileLocationTypeDef(TypedDict):
|
|
1252
|
+
S3FileLocation: NotRequired[S3FileLocationTypeDef]
|
|
1253
|
+
EfsFileLocation: NotRequired[EfsFileLocationTypeDef]
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
class WebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1257
|
+
IdentityCenterConfig: NotRequired[IdentityCenterConfigTypeDef]
|
|
1258
|
+
|
|
1259
|
+
|
|
1260
|
+
class ImportCertificateRequestRequestTypeDef(TypedDict):
|
|
1261
|
+
Usage: CertificateUsageTypeType
|
|
1262
|
+
Certificate: str
|
|
1263
|
+
CertificateChain: NotRequired[str]
|
|
1264
|
+
PrivateKey: NotRequired[str]
|
|
1265
|
+
ActiveDate: NotRequired[TimestampTypeDef]
|
|
1266
|
+
InactiveDate: NotRequired[TimestampTypeDef]
|
|
1267
|
+
Description: NotRequired[str]
|
|
1268
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
class UpdateCertificateRequestRequestTypeDef(TypedDict):
|
|
1272
|
+
CertificateId: str
|
|
1273
|
+
ActiveDate: NotRequired[TimestampTypeDef]
|
|
1274
|
+
InactiveDate: NotRequired[TimestampTypeDef]
|
|
1275
|
+
Description: NotRequired[str]
|
|
1276
|
+
|
|
1277
|
+
|
|
1278
|
+
class InputFileLocationTypeDef(TypedDict):
|
|
1279
|
+
S3FileLocation: NotRequired[S3InputFileLocationTypeDef]
|
|
1280
|
+
EfsFileLocation: NotRequired[EfsFileLocationTypeDef]
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
class ListAccessesRequestListAccessesPaginateTypeDef(TypedDict):
|
|
1284
|
+
ServerId: str
|
|
1285
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
class ListAgreementsRequestListAgreementsPaginateTypeDef(TypedDict):
|
|
1289
|
+
ServerId: str
|
|
1290
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
class ListCertificatesRequestListCertificatesPaginateTypeDef(TypedDict):
|
|
1294
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1295
|
+
|
|
1296
|
+
|
|
1297
|
+
class ListConnectorsRequestListConnectorsPaginateTypeDef(TypedDict):
|
|
1298
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1299
|
+
|
|
1300
|
+
|
|
1301
|
+
class ListExecutionsRequestListExecutionsPaginateTypeDef(TypedDict):
|
|
1302
|
+
WorkflowId: str
|
|
1303
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1304
|
+
|
|
1305
|
+
|
|
1306
|
+
class ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef(TypedDict):
|
|
1307
|
+
ConnectorId: str
|
|
1308
|
+
TransferId: str
|
|
1309
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1310
|
+
|
|
1311
|
+
|
|
1312
|
+
class ListProfilesRequestListProfilesPaginateTypeDef(TypedDict):
|
|
1313
|
+
ProfileType: NotRequired[ProfileTypeType]
|
|
1314
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
class ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef(TypedDict):
|
|
1318
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1319
|
+
|
|
1320
|
+
|
|
1321
|
+
class ListServersRequestListServersPaginateTypeDef(TypedDict):
|
|
1322
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1323
|
+
|
|
1324
|
+
|
|
1325
|
+
class ListTagsForResourceRequestListTagsForResourcePaginateTypeDef(TypedDict):
|
|
1326
|
+
Arn: str
|
|
1327
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1328
|
+
|
|
1329
|
+
|
|
1330
|
+
class ListUsersRequestListUsersPaginateTypeDef(TypedDict):
|
|
1331
|
+
ServerId: str
|
|
1332
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1333
|
+
|
|
1334
|
+
|
|
1335
|
+
class ListWebAppsRequestListWebAppsPaginateTypeDef(TypedDict):
|
|
1336
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
class ListWorkflowsRequestListWorkflowsPaginateTypeDef(TypedDict):
|
|
1340
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
class ListAccessesResponseTypeDef(TypedDict):
|
|
1344
|
+
ServerId: str
|
|
1345
|
+
Accesses: List[ListedAccessTypeDef]
|
|
1346
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1347
|
+
NextToken: NotRequired[str]
|
|
1348
|
+
|
|
1349
|
+
|
|
1350
|
+
class ListAgreementsResponseTypeDef(TypedDict):
|
|
1351
|
+
Agreements: List[ListedAgreementTypeDef]
|
|
1352
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1353
|
+
NextToken: NotRequired[str]
|
|
1354
|
+
|
|
1355
|
+
|
|
1356
|
+
class ListCertificatesResponseTypeDef(TypedDict):
|
|
1357
|
+
Certificates: List[ListedCertificateTypeDef]
|
|
1358
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1359
|
+
NextToken: NotRequired[str]
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
class ListConnectorsResponseTypeDef(TypedDict):
|
|
1363
|
+
Connectors: List[ListedConnectorTypeDef]
|
|
1364
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1365
|
+
NextToken: NotRequired[str]
|
|
1366
|
+
|
|
1367
|
+
|
|
1368
|
+
class ListHostKeysResponseTypeDef(TypedDict):
|
|
1369
|
+
ServerId: str
|
|
1370
|
+
HostKeys: List[ListedHostKeyTypeDef]
|
|
1371
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1372
|
+
NextToken: NotRequired[str]
|
|
1373
|
+
|
|
1374
|
+
|
|
1375
|
+
class ListProfilesResponseTypeDef(TypedDict):
|
|
1376
|
+
Profiles: List[ListedProfileTypeDef]
|
|
1377
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1378
|
+
NextToken: NotRequired[str]
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
class ListServersResponseTypeDef(TypedDict):
|
|
1382
|
+
Servers: List[ListedServerTypeDef]
|
|
1383
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1384
|
+
NextToken: NotRequired[str]
|
|
1385
|
+
|
|
1386
|
+
|
|
1387
|
+
class ListUsersResponseTypeDef(TypedDict):
|
|
1388
|
+
ServerId: str
|
|
1389
|
+
Users: List[ListedUserTypeDef]
|
|
1390
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1391
|
+
NextToken: NotRequired[str]
|
|
1392
|
+
|
|
1393
|
+
|
|
1394
|
+
class ListWebAppsResponseTypeDef(TypedDict):
|
|
1395
|
+
WebApps: List[ListedWebAppTypeDef]
|
|
1396
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1397
|
+
NextToken: NotRequired[str]
|
|
1398
|
+
|
|
1399
|
+
|
|
1400
|
+
class ListWorkflowsResponseTypeDef(TypedDict):
|
|
1401
|
+
Workflows: List[ListedWorkflowTypeDef]
|
|
1402
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1403
|
+
NextToken: NotRequired[str]
|
|
1404
|
+
|
|
1405
|
+
|
|
1406
|
+
class TagStepDetailsOutputTypeDef(TypedDict):
|
|
1407
|
+
Name: NotRequired[str]
|
|
1408
|
+
Tags: NotRequired[List[S3TagTypeDef]]
|
|
1409
|
+
SourceFileLocation: NotRequired[str]
|
|
1410
|
+
|
|
1411
|
+
|
|
1412
|
+
class TagStepDetailsTypeDef(TypedDict):
|
|
1413
|
+
Name: NotRequired[str]
|
|
1414
|
+
Tags: NotRequired[Sequence[S3TagTypeDef]]
|
|
1415
|
+
SourceFileLocation: NotRequired[str]
|
|
1416
|
+
|
|
1417
|
+
|
|
1418
|
+
class ServiceMetadataTypeDef(TypedDict):
|
|
1419
|
+
UserDetails: UserDetailsTypeDef
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1423
|
+
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1424
|
+
|
|
1425
|
+
|
|
1426
|
+
class WorkflowDetailsOutputTypeDef(TypedDict):
|
|
1427
|
+
OnUpload: NotRequired[List[WorkflowDetailTypeDef]]
|
|
1428
|
+
OnPartialUpload: NotRequired[List[WorkflowDetailTypeDef]]
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
class WorkflowDetailsTypeDef(TypedDict):
|
|
1432
|
+
OnUpload: NotRequired[Sequence[WorkflowDetailTypeDef]]
|
|
1433
|
+
OnPartialUpload: NotRequired[Sequence[WorkflowDetailTypeDef]]
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
class DescribeAgreementResponseTypeDef(TypedDict):
|
|
1437
|
+
Agreement: DescribedAgreementTypeDef
|
|
1438
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1439
|
+
|
|
1440
|
+
|
|
1441
|
+
class DescribeCertificateResponseTypeDef(TypedDict):
|
|
1442
|
+
Certificate: DescribedCertificateTypeDef
|
|
1443
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class DescribeHostKeyResponseTypeDef(TypedDict):
|
|
1447
|
+
HostKey: DescribedHostKeyTypeDef
|
|
1448
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
class DescribeProfileResponseTypeDef(TypedDict):
|
|
1452
|
+
Profile: DescribedProfileTypeDef
|
|
1453
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
class DescribeAccessResponseTypeDef(TypedDict):
|
|
1457
|
+
ServerId: str
|
|
1458
|
+
Access: DescribedAccessTypeDef
|
|
1459
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1460
|
+
|
|
1461
|
+
|
|
1462
|
+
class DescribeConnectorResponseTypeDef(TypedDict):
|
|
1463
|
+
Connector: DescribedConnectorTypeDef
|
|
1464
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1465
|
+
|
|
1466
|
+
|
|
1467
|
+
class DescribedWebAppTypeDef(TypedDict):
|
|
1468
|
+
Arn: str
|
|
1469
|
+
WebAppId: str
|
|
1470
|
+
DescribedIdentityProviderDetails: NotRequired[DescribedWebAppIdentityProviderDetailsTypeDef]
|
|
1471
|
+
AccessEndpoint: NotRequired[str]
|
|
1472
|
+
WebAppEndpoint: NotRequired[str]
|
|
1473
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1474
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1475
|
+
|
|
1476
|
+
|
|
1477
|
+
class DescribeUserResponseTypeDef(TypedDict):
|
|
1478
|
+
ServerId: str
|
|
1479
|
+
User: DescribedUserTypeDef
|
|
1480
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
class ExecutionResultsTypeDef(TypedDict):
|
|
1484
|
+
Steps: NotRequired[List[ExecutionStepResultTypeDef]]
|
|
1485
|
+
OnExceptionSteps: NotRequired[List[ExecutionStepResultTypeDef]]
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
class CreateWebAppRequestRequestTypeDef(TypedDict):
|
|
1489
|
+
IdentityProviderDetails: WebAppIdentityProviderDetailsTypeDef
|
|
1490
|
+
AccessEndpoint: NotRequired[str]
|
|
1491
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1492
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1493
|
+
|
|
1494
|
+
|
|
1495
|
+
class CopyStepDetailsTypeDef(TypedDict):
|
|
1496
|
+
Name: NotRequired[str]
|
|
1497
|
+
DestinationFileLocation: NotRequired[InputFileLocationTypeDef]
|
|
1498
|
+
OverwriteExisting: NotRequired[OverwriteExistingType]
|
|
1499
|
+
SourceFileLocation: NotRequired[str]
|
|
1500
|
+
|
|
1501
|
+
|
|
1637
1502
|
DecryptStepDetailsTypeDef = TypedDict(
|
|
1638
1503
|
"DecryptStepDetailsTypeDef",
|
|
1639
1504
|
{
|
|
@@ -1644,98 +1509,102 @@ DecryptStepDetailsTypeDef = TypedDict(
|
|
|
1644
1509
|
"OverwriteExisting": NotRequired[OverwriteExistingType],
|
|
1645
1510
|
},
|
|
1646
1511
|
)
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1512
|
+
TagStepDetailsUnionTypeDef = Union[TagStepDetailsTypeDef, TagStepDetailsOutputTypeDef]
|
|
1513
|
+
|
|
1514
|
+
|
|
1515
|
+
class ListedExecutionTypeDef(TypedDict):
|
|
1516
|
+
ExecutionId: NotRequired[str]
|
|
1517
|
+
InitialFileLocation: NotRequired[FileLocationTypeDef]
|
|
1518
|
+
ServiceMetadata: NotRequired[ServiceMetadataTypeDef]
|
|
1519
|
+
Status: NotRequired[ExecutionStatusType]
|
|
1520
|
+
|
|
1521
|
+
|
|
1522
|
+
class UpdateWebAppRequestRequestTypeDef(TypedDict):
|
|
1523
|
+
WebAppId: str
|
|
1524
|
+
IdentityProviderDetails: NotRequired[UpdateWebAppIdentityProviderDetailsTypeDef]
|
|
1525
|
+
AccessEndpoint: NotRequired[str]
|
|
1526
|
+
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1527
|
+
|
|
1528
|
+
|
|
1529
|
+
class DescribedServerTypeDef(TypedDict):
|
|
1530
|
+
Arn: str
|
|
1531
|
+
Certificate: NotRequired[str]
|
|
1532
|
+
ProtocolDetails: NotRequired[ProtocolDetailsOutputTypeDef]
|
|
1533
|
+
Domain: NotRequired[DomainType]
|
|
1534
|
+
EndpointDetails: NotRequired[EndpointDetailsOutputTypeDef]
|
|
1535
|
+
EndpointType: NotRequired[EndpointTypeType]
|
|
1536
|
+
HostKeyFingerprint: NotRequired[str]
|
|
1537
|
+
IdentityProviderDetails: NotRequired[IdentityProviderDetailsTypeDef]
|
|
1538
|
+
IdentityProviderType: NotRequired[IdentityProviderTypeType]
|
|
1539
|
+
LoggingRole: NotRequired[str]
|
|
1540
|
+
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1541
|
+
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1542
|
+
Protocols: NotRequired[List[ProtocolType]]
|
|
1543
|
+
SecurityPolicyName: NotRequired[str]
|
|
1544
|
+
ServerId: NotRequired[str]
|
|
1545
|
+
State: NotRequired[StateType]
|
|
1546
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1547
|
+
UserCount: NotRequired[int]
|
|
1548
|
+
WorkflowDetails: NotRequired[WorkflowDetailsOutputTypeDef]
|
|
1549
|
+
StructuredLogDestinations: NotRequired[List[str]]
|
|
1550
|
+
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1551
|
+
As2ServiceManagedEgressIpAddresses: NotRequired[List[str]]
|
|
1552
|
+
|
|
1553
|
+
|
|
1554
|
+
class CreateServerRequestRequestTypeDef(TypedDict):
|
|
1555
|
+
Certificate: NotRequired[str]
|
|
1556
|
+
Domain: NotRequired[DomainType]
|
|
1557
|
+
EndpointDetails: NotRequired[EndpointDetailsTypeDef]
|
|
1558
|
+
EndpointType: NotRequired[EndpointTypeType]
|
|
1559
|
+
HostKey: NotRequired[str]
|
|
1560
|
+
IdentityProviderDetails: NotRequired[IdentityProviderDetailsTypeDef]
|
|
1561
|
+
IdentityProviderType: NotRequired[IdentityProviderTypeType]
|
|
1562
|
+
LoggingRole: NotRequired[str]
|
|
1563
|
+
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1564
|
+
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1565
|
+
Protocols: NotRequired[Sequence[ProtocolType]]
|
|
1566
|
+
ProtocolDetails: NotRequired[ProtocolDetailsTypeDef]
|
|
1567
|
+
SecurityPolicyName: NotRequired[str]
|
|
1568
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1569
|
+
WorkflowDetails: NotRequired[WorkflowDetailsTypeDef]
|
|
1570
|
+
StructuredLogDestinations: NotRequired[Sequence[str]]
|
|
1571
|
+
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
|
+
class UpdateServerRequestRequestTypeDef(TypedDict):
|
|
1575
|
+
ServerId: str
|
|
1576
|
+
Certificate: NotRequired[str]
|
|
1577
|
+
ProtocolDetails: NotRequired[ProtocolDetailsTypeDef]
|
|
1578
|
+
EndpointDetails: NotRequired[EndpointDetailsTypeDef]
|
|
1579
|
+
EndpointType: NotRequired[EndpointTypeType]
|
|
1580
|
+
HostKey: NotRequired[str]
|
|
1581
|
+
IdentityProviderDetails: NotRequired[IdentityProviderDetailsTypeDef]
|
|
1582
|
+
LoggingRole: NotRequired[str]
|
|
1583
|
+
PostAuthenticationLoginBanner: NotRequired[str]
|
|
1584
|
+
PreAuthenticationLoginBanner: NotRequired[str]
|
|
1585
|
+
Protocols: NotRequired[Sequence[ProtocolType]]
|
|
1586
|
+
SecurityPolicyName: NotRequired[str]
|
|
1587
|
+
WorkflowDetails: NotRequired[WorkflowDetailsTypeDef]
|
|
1588
|
+
StructuredLogDestinations: NotRequired[Sequence[str]]
|
|
1589
|
+
S3StorageOptions: NotRequired[S3StorageOptionsTypeDef]
|
|
1590
|
+
|
|
1591
|
+
|
|
1592
|
+
class DescribeWebAppResponseTypeDef(TypedDict):
|
|
1593
|
+
WebApp: DescribedWebAppTypeDef
|
|
1594
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
class DescribedExecutionTypeDef(TypedDict):
|
|
1598
|
+
ExecutionId: NotRequired[str]
|
|
1599
|
+
InitialFileLocation: NotRequired[FileLocationTypeDef]
|
|
1600
|
+
ServiceMetadata: NotRequired[ServiceMetadataTypeDef]
|
|
1601
|
+
ExecutionRole: NotRequired[str]
|
|
1602
|
+
LoggingConfiguration: NotRequired[LoggingConfigurationTypeDef]
|
|
1603
|
+
PosixProfile: NotRequired[PosixProfileOutputTypeDef]
|
|
1604
|
+
Status: NotRequired[ExecutionStatusType]
|
|
1605
|
+
Results: NotRequired[ExecutionResultsTypeDef]
|
|
1606
|
+
|
|
1607
|
+
|
|
1739
1608
|
WorkflowStepOutputTypeDef = TypedDict(
|
|
1740
1609
|
"WorkflowStepOutputTypeDef",
|
|
1741
1610
|
{
|
|
@@ -1754,59 +1623,49 @@ WorkflowStepTypeDef = TypedDict(
|
|
|
1754
1623
|
"CopyStepDetails": NotRequired[CopyStepDetailsTypeDef],
|
|
1755
1624
|
"CustomStepDetails": NotRequired[CustomStepDetailsTypeDef],
|
|
1756
1625
|
"DeleteStepDetails": NotRequired[DeleteStepDetailsTypeDef],
|
|
1757
|
-
"TagStepDetails": NotRequired[
|
|
1626
|
+
"TagStepDetails": NotRequired[TagStepDetailsUnionTypeDef],
|
|
1758
1627
|
"DecryptStepDetails": NotRequired[DecryptStepDetailsTypeDef],
|
|
1759
1628
|
},
|
|
1760
1629
|
)
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
DescribeServerResponseTypeDef
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
"Steps": NotRequired[List[WorkflowStepOutputTypeDef]],
|
|
1791
|
-
"OnExceptionSteps": NotRequired[List[WorkflowStepOutputTypeDef]],
|
|
1792
|
-
"WorkflowId": NotRequired[str],
|
|
1793
|
-
"Tags": NotRequired[List[TagTypeDef]],
|
|
1794
|
-
},
|
|
1795
|
-
)
|
|
1630
|
+
|
|
1631
|
+
|
|
1632
|
+
class ListExecutionsResponseTypeDef(TypedDict):
|
|
1633
|
+
WorkflowId: str
|
|
1634
|
+
Executions: List[ListedExecutionTypeDef]
|
|
1635
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1636
|
+
NextToken: NotRequired[str]
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
class DescribeServerResponseTypeDef(TypedDict):
|
|
1640
|
+
Server: DescribedServerTypeDef
|
|
1641
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1642
|
+
|
|
1643
|
+
|
|
1644
|
+
class DescribeExecutionResponseTypeDef(TypedDict):
|
|
1645
|
+
WorkflowId: str
|
|
1646
|
+
Execution: DescribedExecutionTypeDef
|
|
1647
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
class DescribedWorkflowTypeDef(TypedDict):
|
|
1651
|
+
Arn: str
|
|
1652
|
+
Description: NotRequired[str]
|
|
1653
|
+
Steps: NotRequired[List[WorkflowStepOutputTypeDef]]
|
|
1654
|
+
OnExceptionSteps: NotRequired[List[WorkflowStepOutputTypeDef]]
|
|
1655
|
+
WorkflowId: NotRequired[str]
|
|
1656
|
+
Tags: NotRequired[List[TagTypeDef]]
|
|
1657
|
+
|
|
1658
|
+
|
|
1796
1659
|
WorkflowStepUnionTypeDef = Union[WorkflowStepTypeDef, WorkflowStepOutputTypeDef]
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
CreateWorkflowRequestRequestTypeDef
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
"OnExceptionSteps": NotRequired[Sequence[WorkflowStepUnionTypeDef]],
|
|
1810
|
-
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1811
|
-
},
|
|
1812
|
-
)
|
|
1660
|
+
|
|
1661
|
+
|
|
1662
|
+
class DescribeWorkflowResponseTypeDef(TypedDict):
|
|
1663
|
+
Workflow: DescribedWorkflowTypeDef
|
|
1664
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1665
|
+
|
|
1666
|
+
|
|
1667
|
+
class CreateWorkflowRequestRequestTypeDef(TypedDict):
|
|
1668
|
+
Steps: Sequence[WorkflowStepUnionTypeDef]
|
|
1669
|
+
Description: NotRequired[str]
|
|
1670
|
+
OnExceptionSteps: NotRequired[Sequence[WorkflowStepTypeDef]]
|
|
1671
|
+
Tags: NotRequired[Sequence[TagTypeDef]]
|