localstack-core 4.10.1.dev7__py3-none-any.whl → 4.11.2.dev14__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.
Potentially problematic release.
This version of localstack-core might be problematic. Click here for more details.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +604 -561
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1201 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +10062 -8826
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +866 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +341 -336
- localstack/aws/api/lambda_/__init__.py +974 -621
- localstack/aws/api/logs/__init__.py +988 -675
- localstack/aws/api/opensearch/__init__.py +903 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1257 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +103 -67
- localstack/aws/api/route53/__init__.py +296 -254
- localstack/aws/api/route53resolver/__init__.py +397 -396
- localstack/aws/api/s3/__init__.py +1412 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +221 -216
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +375 -333
- localstack/aws/api/sts/__init__.py +142 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/logging.py +8 -4
- localstack/aws/handlers/service.py +22 -3
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/protocol/serializer.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/deprecations.py +0 -6
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/acm/provider.py +4 -0
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +60 -24
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/template_preparer.py +6 -2
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +12 -0
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/cloudwatch/provider.py +10 -3
- localstack/services/cloudwatch/provider_v2.py +6 -3
- localstack/services/configservice/provider.py +5 -1
- localstack/services/dynamodb/provider.py +1 -0
- localstack/services/dynamodb/v2/provider.py +1 -0
- localstack/services/dynamodbstreams/provider.py +6 -0
- localstack/services/dynamodbstreams/v2/provider.py +6 -0
- localstack/services/ec2/provider.py +6 -0
- localstack/services/es/provider.py +6 -0
- localstack/services/events/provider.py +4 -0
- localstack/services/events/v1/provider.py +9 -0
- localstack/services/firehose/provider.py +5 -0
- localstack/services/iam/provider.py +4 -0
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +44 -24
- localstack/services/kms/provider.py +97 -16
- localstack/services/lambda_/api_utils.py +40 -21
- localstack/services/lambda_/event_source_mapping/pollers/stream_poller.py +1 -1
- localstack/services/lambda_/invocation/assignment.py +4 -1
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +27 -2
- localstack/services/lambda_/invocation/lambda_service.py +51 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +240 -96
- localstack/services/lambda_/resource_providers/aws_lambda_function.py +33 -1
- localstack/services/lambda_/runtimes.py +10 -3
- localstack/services/logs/provider.py +45 -19
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/s3/provider.py +29 -16
- localstack/services/s3/utils.py +35 -14
- localstack/services/s3control/provider.py +101 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/sns/constants.py +3 -1
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +30 -1
- localstack/services/sns/v2/provider.py +794 -31
- localstack/services/sns/v2/utils.py +20 -0
- localstack/services/sqs/models.py +37 -10
- localstack/services/stepfunctions/asl/component/common/path/result_path.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/execute_state.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/lambda_eval_utils.py +8 -8
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/{mock_eval_utils.py → local_mock_eval_utils.py} +13 -9
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service.py +6 -6
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +4 -0
- localstack/services/stepfunctions/asl/component/test_state/state/base_mock.py +118 -0
- localstack/services/stepfunctions/asl/component/test_state/state/common.py +82 -0
- localstack/services/stepfunctions/asl/component/test_state/state/execution.py +139 -0
- localstack/services/stepfunctions/asl/component/test_state/state/map.py +77 -0
- localstack/services/stepfunctions/asl/component/test_state/state/task.py +44 -0
- localstack/services/stepfunctions/asl/eval/environment.py +30 -22
- localstack/services/stepfunctions/asl/eval/states.py +1 -1
- localstack/services/stepfunctions/asl/eval/test_state/environment.py +49 -9
- localstack/services/stepfunctions/asl/eval/test_state/program_state.py +22 -0
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -1
- localstack/services/stepfunctions/asl/parse/preprocessor.py +67 -24
- localstack/services/stepfunctions/asl/parse/test_state/asl_parser.py +5 -4
- localstack/services/stepfunctions/asl/parse/test_state/preprocessor.py +222 -31
- localstack/services/stepfunctions/asl/static_analyser/test_state/test_state_analyser.py +170 -22
- localstack/services/stepfunctions/backend/execution.py +6 -6
- localstack/services/stepfunctions/backend/execution_worker.py +5 -5
- localstack/services/stepfunctions/backend/test_state/execution.py +36 -0
- localstack/services/stepfunctions/backend/test_state/execution_worker.py +33 -1
- localstack/services/stepfunctions/backend/test_state/test_state_mock.py +127 -0
- localstack/services/stepfunctions/local_mocking/__init__.py +9 -0
- localstack/services/stepfunctions/{mocking → local_mocking}/mock_config.py +24 -17
- localstack/services/stepfunctions/provider.py +78 -27
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/testing/pytest/fixtures.py +28 -0
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/publisher.py +37 -155
- localstack/utils/analytics/service_request_aggregator.py +6 -4
- localstack/utils/aws/arns.py +7 -0
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/batching.py +258 -0
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/collections.py +23 -11
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/METADATA +7 -6
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/RECORD +149 -141
- localstack_core-4.11.2.dev14.dist-info/plux.json +1 -0
- localstack/services/stepfunctions/mocking/__init__.py +0 -0
- localstack/utils/batch_policy.py +0 -124
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- /localstack/services/stepfunctions/{mocking → local_mocking}/mock_config_file.py +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -13,6 +13,8 @@ ContextKeyNameType = str
|
|
|
13
13
|
ContextKeyValueType = str
|
|
14
14
|
DeletionTaskIdType = str
|
|
15
15
|
EvalDecisionSourceType = str
|
|
16
|
+
FeatureDisabledMessage = str
|
|
17
|
+
FeatureEnabledMessage = str
|
|
16
18
|
LineNumber = int
|
|
17
19
|
OpenIDConnectProviderUrlType = str
|
|
18
20
|
OrganizationIdType = str
|
|
@@ -27,6 +29,7 @@ SAMLProviderNameType = str
|
|
|
27
29
|
accessKeyIdType = str
|
|
28
30
|
accessKeySecretType = str
|
|
29
31
|
accountAliasType = str
|
|
32
|
+
accountIdType = str
|
|
30
33
|
allUsers = bool
|
|
31
34
|
arnType = str
|
|
32
35
|
attachmentCountType = int
|
|
@@ -37,11 +40,14 @@ certificateBodyType = str
|
|
|
37
40
|
certificateChainType = str
|
|
38
41
|
certificateIdType = str
|
|
39
42
|
clientIDType = str
|
|
43
|
+
consoleDeepLinkType = str
|
|
40
44
|
credentialAgeDays = int
|
|
41
45
|
credentialReportExpiredExceptionMessage = str
|
|
42
46
|
credentialReportNotPresentExceptionMessage = str
|
|
43
47
|
credentialReportNotReadyExceptionMessage = str
|
|
44
48
|
customSuffixType = str
|
|
49
|
+
delegationRequestDescriptionType = str
|
|
50
|
+
delegationRequestIdType = str
|
|
45
51
|
deleteConflictMessage = str
|
|
46
52
|
duplicateCertificateMessage = str
|
|
47
53
|
duplicateSSHPublicKeyMessage = str
|
|
@@ -61,6 +67,7 @@ invalidUserTypeMessage = str
|
|
|
61
67
|
jobIDType = str
|
|
62
68
|
keyPairMismatchMessage = str
|
|
63
69
|
limitExceededMessage = str
|
|
70
|
+
localeType = str
|
|
64
71
|
malformedCertificateMessage = str
|
|
65
72
|
malformedPolicyDocumentMessage = str
|
|
66
73
|
markerType = str
|
|
@@ -68,19 +75,25 @@ maxItemsType = int
|
|
|
68
75
|
maxPasswordAgeType = int
|
|
69
76
|
minimumPasswordLengthType = int
|
|
70
77
|
noSuchEntityMessage = str
|
|
78
|
+
notesType = str
|
|
79
|
+
notificationChannelType = str
|
|
71
80
|
openIdIdpCommunicationErrorExceptionMessage = str
|
|
72
81
|
organizationsEntityPathType = str
|
|
73
82
|
organizationsPolicyIdType = str
|
|
83
|
+
ownerIdType = str
|
|
74
84
|
passwordPolicyViolationMessage = str
|
|
75
85
|
passwordReusePreventionType = int
|
|
76
86
|
passwordType = str
|
|
77
87
|
pathPrefixType = str
|
|
78
88
|
pathType = str
|
|
89
|
+
permissionType = str
|
|
79
90
|
policyDescriptionType = str
|
|
80
91
|
policyDocumentType = str
|
|
81
92
|
policyEvaluationErrorMessage = str
|
|
82
93
|
policyNameType = str
|
|
83
94
|
policyNotAttachableMessage = str
|
|
95
|
+
policyParameterNameType = str
|
|
96
|
+
policyParameterValueType = str
|
|
84
97
|
policyPathType = str
|
|
85
98
|
policyVersionIdType = str
|
|
86
99
|
privateKeyIdType = str
|
|
@@ -88,7 +101,11 @@ privateKeyType = str
|
|
|
88
101
|
publicKeyFingerprintType = str
|
|
89
102
|
publicKeyIdType = str
|
|
90
103
|
publicKeyMaterialType = str
|
|
104
|
+
redirectUrlType = str
|
|
91
105
|
reportGenerationLimitExceededMessage = str
|
|
106
|
+
requestMessageType = str
|
|
107
|
+
requestorNameType = str
|
|
108
|
+
requestorWorkflowIdType = str
|
|
92
109
|
responseMarkerType = str
|
|
93
110
|
roleDescriptionType = str
|
|
94
111
|
roleMaxSessionDurationType = int
|
|
@@ -105,7 +122,9 @@ serviceNotSupportedMessage = str
|
|
|
105
122
|
servicePassword = str
|
|
106
123
|
serviceSpecificCredentialId = str
|
|
107
124
|
serviceUserName = str
|
|
125
|
+
sessionDurationType = int
|
|
108
126
|
stringType = str
|
|
127
|
+
summaryContentType = str
|
|
109
128
|
summaryValueType = int
|
|
110
129
|
tagKeyType = str
|
|
111
130
|
tagValueType = str
|
|
@@ -166,6 +185,11 @@ class PolicyEvaluationDecisionType(StrEnum):
|
|
|
166
185
|
implicitDeny = "implicitDeny"
|
|
167
186
|
|
|
168
187
|
|
|
188
|
+
class PolicyParameterTypeEnum(StrEnum):
|
|
189
|
+
string = "string"
|
|
190
|
+
stringList = "stringList"
|
|
191
|
+
|
|
192
|
+
|
|
169
193
|
class PolicySourceType(StrEnum):
|
|
170
194
|
user = "user"
|
|
171
195
|
group = "group"
|
|
@@ -218,6 +242,18 @@ class jobStatusType(StrEnum):
|
|
|
218
242
|
FAILED = "FAILED"
|
|
219
243
|
|
|
220
244
|
|
|
245
|
+
class permissionCheckResultType(StrEnum):
|
|
246
|
+
ALLOWED = "ALLOWED"
|
|
247
|
+
DENIED = "DENIED"
|
|
248
|
+
UNSURE = "UNSURE"
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
class permissionCheckStatusType(StrEnum):
|
|
252
|
+
COMPLETE = "COMPLETE"
|
|
253
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
254
|
+
FAILED = "FAILED"
|
|
255
|
+
|
|
256
|
+
|
|
221
257
|
class policyOwnerEntityType(StrEnum):
|
|
222
258
|
USER = "USER"
|
|
223
259
|
ROLE = "ROLE"
|
|
@@ -242,6 +278,16 @@ class sortKeyType(StrEnum):
|
|
|
242
278
|
LAST_AUTHENTICATED_TIME_DESCENDING = "LAST_AUTHENTICATED_TIME_DESCENDING"
|
|
243
279
|
|
|
244
280
|
|
|
281
|
+
class stateType(StrEnum):
|
|
282
|
+
UNASSIGNED = "UNASSIGNED"
|
|
283
|
+
ASSIGNED = "ASSIGNED"
|
|
284
|
+
PENDING_APPROVAL = "PENDING_APPROVAL"
|
|
285
|
+
FINALIZED = "FINALIZED"
|
|
286
|
+
ACCEPTED = "ACCEPTED"
|
|
287
|
+
REJECTED = "REJECTED"
|
|
288
|
+
EXPIRED = "EXPIRED"
|
|
289
|
+
|
|
290
|
+
|
|
245
291
|
class statusType(StrEnum):
|
|
246
292
|
Active = "Active"
|
|
247
293
|
Inactive = "Inactive"
|
|
@@ -285,6 +331,13 @@ class summaryKeyType(StrEnum):
|
|
|
285
331
|
RolesQuota = "RolesQuota"
|
|
286
332
|
|
|
287
333
|
|
|
334
|
+
class summaryStateType(StrEnum):
|
|
335
|
+
AVAILABLE = "AVAILABLE"
|
|
336
|
+
NOT_AVAILABLE = "NOT_AVAILABLE"
|
|
337
|
+
NOT_SUPPORTED = "NOT_SUPPORTED"
|
|
338
|
+
FAILED = "FAILED"
|
|
339
|
+
|
|
340
|
+
|
|
288
341
|
class AccountNotManagementOrDelegatedAdministratorException(ServiceException):
|
|
289
342
|
code: str = "AccountNotManagementOrDelegatedAdministratorException"
|
|
290
343
|
sender_fault: bool = False
|
|
@@ -351,6 +404,18 @@ class EntityTemporarilyUnmodifiableException(ServiceException):
|
|
|
351
404
|
status_code: int = 409
|
|
352
405
|
|
|
353
406
|
|
|
407
|
+
class FeatureDisabledException(ServiceException):
|
|
408
|
+
code: str = "FeatureDisabled"
|
|
409
|
+
sender_fault: bool = True
|
|
410
|
+
status_code: int = 404
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class FeatureEnabledException(ServiceException):
|
|
414
|
+
code: str = "FeatureEnabled"
|
|
415
|
+
sender_fault: bool = True
|
|
416
|
+
status_code: int = 409
|
|
417
|
+
|
|
418
|
+
|
|
354
419
|
class InvalidAuthenticationCodeException(ServiceException):
|
|
355
420
|
code: str = "InvalidAuthenticationCode"
|
|
356
421
|
sender_fault: bool = True
|
|
@@ -483,19 +548,23 @@ class UnrecognizedPublicKeyEncodingException(ServiceException):
|
|
|
483
548
|
status_code: int = 400
|
|
484
549
|
|
|
485
550
|
|
|
551
|
+
class AcceptDelegationRequestRequest(ServiceRequest):
|
|
552
|
+
DelegationRequestId: delegationRequestIdType
|
|
553
|
+
|
|
554
|
+
|
|
486
555
|
dateType = datetime
|
|
487
556
|
|
|
488
557
|
|
|
489
558
|
class AccessDetail(TypedDict, total=False):
|
|
490
559
|
ServiceName: serviceNameType
|
|
491
560
|
ServiceNamespace: serviceNamespaceType
|
|
492
|
-
Region:
|
|
493
|
-
EntityPath:
|
|
494
|
-
LastAuthenticatedTime:
|
|
495
|
-
TotalAuthenticatedEntities:
|
|
561
|
+
Region: stringType | None
|
|
562
|
+
EntityPath: organizationsEntityPathType | None
|
|
563
|
+
LastAuthenticatedTime: dateType | None
|
|
564
|
+
TotalAuthenticatedEntities: integerType | None
|
|
496
565
|
|
|
497
566
|
|
|
498
|
-
AccessDetails =
|
|
567
|
+
AccessDetails = list[AccessDetail]
|
|
499
568
|
|
|
500
569
|
|
|
501
570
|
class AccessKey(TypedDict, total=False):
|
|
@@ -503,23 +572,23 @@ class AccessKey(TypedDict, total=False):
|
|
|
503
572
|
AccessKeyId: accessKeyIdType
|
|
504
573
|
Status: statusType
|
|
505
574
|
SecretAccessKey: accessKeySecretType
|
|
506
|
-
CreateDate:
|
|
575
|
+
CreateDate: dateType | None
|
|
507
576
|
|
|
508
577
|
|
|
509
578
|
class AccessKeyLastUsed(TypedDict, total=False):
|
|
510
|
-
LastUsedDate:
|
|
579
|
+
LastUsedDate: dateType | None
|
|
511
580
|
ServiceName: stringType
|
|
512
581
|
Region: stringType
|
|
513
582
|
|
|
514
583
|
|
|
515
584
|
class AccessKeyMetadata(TypedDict, total=False):
|
|
516
|
-
UserName:
|
|
517
|
-
AccessKeyId:
|
|
518
|
-
Status:
|
|
519
|
-
CreateDate:
|
|
585
|
+
UserName: userNameType | None
|
|
586
|
+
AccessKeyId: accessKeyIdType | None
|
|
587
|
+
Status: statusType | None
|
|
588
|
+
CreateDate: dateType | None
|
|
520
589
|
|
|
521
590
|
|
|
522
|
-
ActionNameListType =
|
|
591
|
+
ActionNameListType = list[ActionNameType]
|
|
523
592
|
|
|
524
593
|
|
|
525
594
|
class AddClientIDToOpenIDConnectProviderRequest(ServiceRequest):
|
|
@@ -537,7 +606,11 @@ class AddUserToGroupRequest(ServiceRequest):
|
|
|
537
606
|
UserName: existingUserNameType
|
|
538
607
|
|
|
539
608
|
|
|
540
|
-
ArnListType =
|
|
609
|
+
ArnListType = list[arnType]
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class AssociateDelegationRequestRequest(ServiceRequest):
|
|
613
|
+
DelegationRequestId: delegationRequestIdType
|
|
541
614
|
|
|
542
615
|
|
|
543
616
|
class AttachGroupPolicyRequest(ServiceRequest):
|
|
@@ -556,17 +629,17 @@ class AttachUserPolicyRequest(ServiceRequest):
|
|
|
556
629
|
|
|
557
630
|
|
|
558
631
|
class AttachedPermissionsBoundary(TypedDict, total=False):
|
|
559
|
-
PermissionsBoundaryType:
|
|
560
|
-
PermissionsBoundaryArn:
|
|
632
|
+
PermissionsBoundaryType: PermissionsBoundaryAttachmentType | None
|
|
633
|
+
PermissionsBoundaryArn: arnType | None
|
|
561
634
|
|
|
562
635
|
|
|
563
636
|
class AttachedPolicy(TypedDict, total=False):
|
|
564
|
-
PolicyName:
|
|
565
|
-
PolicyArn:
|
|
637
|
+
PolicyName: policyNameType | None
|
|
638
|
+
PolicyArn: arnType | None
|
|
566
639
|
|
|
567
640
|
|
|
568
641
|
BootstrapDatum = bytes
|
|
569
|
-
CertificationMapType =
|
|
642
|
+
CertificationMapType = dict[CertificationKeyType, CertificationValueType]
|
|
570
643
|
|
|
571
644
|
|
|
572
645
|
class ChangePasswordRequest(ServiceRequest):
|
|
@@ -574,21 +647,21 @@ class ChangePasswordRequest(ServiceRequest):
|
|
|
574
647
|
NewPassword: passwordType
|
|
575
648
|
|
|
576
649
|
|
|
577
|
-
ContextKeyValueListType =
|
|
650
|
+
ContextKeyValueListType = list[ContextKeyValueType]
|
|
578
651
|
|
|
579
652
|
|
|
580
653
|
class ContextEntry(TypedDict, total=False):
|
|
581
|
-
ContextKeyName:
|
|
582
|
-
ContextKeyValues:
|
|
583
|
-
ContextKeyType:
|
|
654
|
+
ContextKeyName: ContextKeyNameType | None
|
|
655
|
+
ContextKeyValues: ContextKeyValueListType | None
|
|
656
|
+
ContextKeyType: ContextKeyTypeEnum | None
|
|
584
657
|
|
|
585
658
|
|
|
586
|
-
ContextEntryListType =
|
|
587
|
-
ContextKeyNamesResultListType =
|
|
659
|
+
ContextEntryListType = list[ContextEntry]
|
|
660
|
+
ContextKeyNamesResultListType = list[ContextKeyNameType]
|
|
588
661
|
|
|
589
662
|
|
|
590
663
|
class CreateAccessKeyRequest(ServiceRequest):
|
|
591
|
-
UserName:
|
|
664
|
+
UserName: existingUserNameType | None
|
|
592
665
|
|
|
593
666
|
|
|
594
667
|
class CreateAccessKeyResponse(TypedDict, total=False):
|
|
@@ -599,8 +672,42 @@ class CreateAccountAliasRequest(ServiceRequest):
|
|
|
599
672
|
AccountAlias: accountAliasType
|
|
600
673
|
|
|
601
674
|
|
|
675
|
+
policyParameterValuesListType = list[policyParameterValueType]
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
class PolicyParameter(TypedDict, total=False):
|
|
679
|
+
Name: policyParameterNameType | None
|
|
680
|
+
Values: policyParameterValuesListType | None
|
|
681
|
+
Type: PolicyParameterTypeEnum | None
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
policyParameterListType = list[PolicyParameter]
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
class DelegationPermission(TypedDict, total=False):
|
|
688
|
+
PolicyTemplateArn: arnType | None
|
|
689
|
+
Parameters: policyParameterListType | None
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
class CreateDelegationRequestRequest(ServiceRequest):
|
|
693
|
+
OwnerAccountId: accountIdType | None
|
|
694
|
+
Description: delegationRequestDescriptionType
|
|
695
|
+
Permissions: DelegationPermission
|
|
696
|
+
RequestMessage: requestMessageType | None
|
|
697
|
+
RequestorWorkflowId: requestorWorkflowIdType
|
|
698
|
+
RedirectUrl: redirectUrlType | None
|
|
699
|
+
NotificationChannel: notificationChannelType
|
|
700
|
+
SessionDuration: sessionDurationType
|
|
701
|
+
OnlySendByOwner: booleanType | None
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
class CreateDelegationRequestResponse(TypedDict, total=False):
|
|
705
|
+
ConsoleDeepLink: consoleDeepLinkType | None
|
|
706
|
+
DelegationRequestId: delegationRequestIdType | None
|
|
707
|
+
|
|
708
|
+
|
|
602
709
|
class CreateGroupRequest(ServiceRequest):
|
|
603
|
-
Path:
|
|
710
|
+
Path: pathType | None
|
|
604
711
|
GroupName: groupNameType
|
|
605
712
|
|
|
606
713
|
|
|
@@ -621,18 +728,18 @@ class Tag(TypedDict, total=False):
|
|
|
621
728
|
Value: tagValueType
|
|
622
729
|
|
|
623
730
|
|
|
624
|
-
tagListType =
|
|
731
|
+
tagListType = list[Tag]
|
|
625
732
|
|
|
626
733
|
|
|
627
734
|
class CreateInstanceProfileRequest(ServiceRequest):
|
|
628
735
|
InstanceProfileName: instanceProfileNameType
|
|
629
|
-
Path:
|
|
630
|
-
Tags:
|
|
736
|
+
Path: pathType | None
|
|
737
|
+
Tags: tagListType | None
|
|
631
738
|
|
|
632
739
|
|
|
633
740
|
class RoleLastUsed(TypedDict, total=False):
|
|
634
|
-
LastUsedDate:
|
|
635
|
-
Region:
|
|
741
|
+
LastUsedDate: dateType | None
|
|
742
|
+
Region: stringType | None
|
|
636
743
|
|
|
637
744
|
|
|
638
745
|
class Role(TypedDict, total=False):
|
|
@@ -641,15 +748,15 @@ class Role(TypedDict, total=False):
|
|
|
641
748
|
RoleId: idType
|
|
642
749
|
Arn: arnType
|
|
643
750
|
CreateDate: dateType
|
|
644
|
-
AssumeRolePolicyDocument:
|
|
645
|
-
Description:
|
|
646
|
-
MaxSessionDuration:
|
|
647
|
-
PermissionsBoundary:
|
|
648
|
-
Tags:
|
|
649
|
-
RoleLastUsed:
|
|
751
|
+
AssumeRolePolicyDocument: policyDocumentType | None
|
|
752
|
+
Description: roleDescriptionType | None
|
|
753
|
+
MaxSessionDuration: roleMaxSessionDurationType | None
|
|
754
|
+
PermissionsBoundary: AttachedPermissionsBoundary | None
|
|
755
|
+
Tags: tagListType | None
|
|
756
|
+
RoleLastUsed: RoleLastUsed | None
|
|
650
757
|
|
|
651
758
|
|
|
652
|
-
roleListType =
|
|
759
|
+
roleListType = list[Role]
|
|
653
760
|
|
|
654
761
|
|
|
655
762
|
class InstanceProfile(TypedDict, total=False):
|
|
@@ -659,7 +766,7 @@ class InstanceProfile(TypedDict, total=False):
|
|
|
659
766
|
Arn: arnType
|
|
660
767
|
CreateDate: dateType
|
|
661
768
|
Roles: roleListType
|
|
662
|
-
Tags:
|
|
769
|
+
Tags: tagListType | None
|
|
663
770
|
|
|
664
771
|
|
|
665
772
|
class CreateInstanceProfileResponse(TypedDict, total=False):
|
|
@@ -667,89 +774,89 @@ class CreateInstanceProfileResponse(TypedDict, total=False):
|
|
|
667
774
|
|
|
668
775
|
|
|
669
776
|
class CreateLoginProfileRequest(ServiceRequest):
|
|
670
|
-
UserName:
|
|
671
|
-
Password:
|
|
672
|
-
PasswordResetRequired:
|
|
777
|
+
UserName: userNameType | None
|
|
778
|
+
Password: passwordType | None
|
|
779
|
+
PasswordResetRequired: booleanType | None
|
|
673
780
|
|
|
674
781
|
|
|
675
782
|
class LoginProfile(TypedDict, total=False):
|
|
676
783
|
UserName: userNameType
|
|
677
784
|
CreateDate: dateType
|
|
678
|
-
PasswordResetRequired:
|
|
785
|
+
PasswordResetRequired: booleanType | None
|
|
679
786
|
|
|
680
787
|
|
|
681
788
|
class CreateLoginProfileResponse(TypedDict, total=False):
|
|
682
789
|
LoginProfile: LoginProfile
|
|
683
790
|
|
|
684
791
|
|
|
685
|
-
thumbprintListType =
|
|
686
|
-
clientIDListType =
|
|
792
|
+
thumbprintListType = list[thumbprintType]
|
|
793
|
+
clientIDListType = list[clientIDType]
|
|
687
794
|
|
|
688
795
|
|
|
689
796
|
class CreateOpenIDConnectProviderRequest(ServiceRequest):
|
|
690
797
|
Url: OpenIDConnectProviderUrlType
|
|
691
|
-
ClientIDList:
|
|
692
|
-
ThumbprintList:
|
|
693
|
-
Tags:
|
|
798
|
+
ClientIDList: clientIDListType | None
|
|
799
|
+
ThumbprintList: thumbprintListType | None
|
|
800
|
+
Tags: tagListType | None
|
|
694
801
|
|
|
695
802
|
|
|
696
803
|
class CreateOpenIDConnectProviderResponse(TypedDict, total=False):
|
|
697
|
-
OpenIDConnectProviderArn:
|
|
698
|
-
Tags:
|
|
804
|
+
OpenIDConnectProviderArn: arnType | None
|
|
805
|
+
Tags: tagListType | None
|
|
699
806
|
|
|
700
807
|
|
|
701
808
|
class CreatePolicyRequest(ServiceRequest):
|
|
702
809
|
PolicyName: policyNameType
|
|
703
|
-
Path:
|
|
810
|
+
Path: policyPathType | None
|
|
704
811
|
PolicyDocument: policyDocumentType
|
|
705
|
-
Description:
|
|
706
|
-
Tags:
|
|
812
|
+
Description: policyDescriptionType | None
|
|
813
|
+
Tags: tagListType | None
|
|
707
814
|
|
|
708
815
|
|
|
709
816
|
class Policy(TypedDict, total=False):
|
|
710
|
-
PolicyName:
|
|
711
|
-
PolicyId:
|
|
712
|
-
Arn:
|
|
713
|
-
Path:
|
|
714
|
-
DefaultVersionId:
|
|
715
|
-
AttachmentCount:
|
|
716
|
-
PermissionsBoundaryUsageCount:
|
|
717
|
-
IsAttachable:
|
|
718
|
-
Description:
|
|
719
|
-
CreateDate:
|
|
720
|
-
UpdateDate:
|
|
721
|
-
Tags:
|
|
817
|
+
PolicyName: policyNameType | None
|
|
818
|
+
PolicyId: idType | None
|
|
819
|
+
Arn: arnType | None
|
|
820
|
+
Path: policyPathType | None
|
|
821
|
+
DefaultVersionId: policyVersionIdType | None
|
|
822
|
+
AttachmentCount: attachmentCountType | None
|
|
823
|
+
PermissionsBoundaryUsageCount: attachmentCountType | None
|
|
824
|
+
IsAttachable: booleanType | None
|
|
825
|
+
Description: policyDescriptionType | None
|
|
826
|
+
CreateDate: dateType | None
|
|
827
|
+
UpdateDate: dateType | None
|
|
828
|
+
Tags: tagListType | None
|
|
722
829
|
|
|
723
830
|
|
|
724
831
|
class CreatePolicyResponse(TypedDict, total=False):
|
|
725
|
-
Policy:
|
|
832
|
+
Policy: Policy | None
|
|
726
833
|
|
|
727
834
|
|
|
728
835
|
class CreatePolicyVersionRequest(ServiceRequest):
|
|
729
836
|
PolicyArn: arnType
|
|
730
837
|
PolicyDocument: policyDocumentType
|
|
731
|
-
SetAsDefault:
|
|
838
|
+
SetAsDefault: booleanType | None
|
|
732
839
|
|
|
733
840
|
|
|
734
841
|
class PolicyVersion(TypedDict, total=False):
|
|
735
|
-
Document:
|
|
736
|
-
VersionId:
|
|
737
|
-
IsDefaultVersion:
|
|
738
|
-
CreateDate:
|
|
842
|
+
Document: policyDocumentType | None
|
|
843
|
+
VersionId: policyVersionIdType | None
|
|
844
|
+
IsDefaultVersion: booleanType | None
|
|
845
|
+
CreateDate: dateType | None
|
|
739
846
|
|
|
740
847
|
|
|
741
848
|
class CreatePolicyVersionResponse(TypedDict, total=False):
|
|
742
|
-
PolicyVersion:
|
|
849
|
+
PolicyVersion: PolicyVersion | None
|
|
743
850
|
|
|
744
851
|
|
|
745
852
|
class CreateRoleRequest(ServiceRequest):
|
|
746
|
-
Path:
|
|
853
|
+
Path: pathType | None
|
|
747
854
|
RoleName: roleNameType
|
|
748
855
|
AssumeRolePolicyDocument: policyDocumentType
|
|
749
|
-
Description:
|
|
750
|
-
MaxSessionDuration:
|
|
751
|
-
PermissionsBoundary:
|
|
752
|
-
Tags:
|
|
856
|
+
Description: roleDescriptionType | None
|
|
857
|
+
MaxSessionDuration: roleMaxSessionDurationType | None
|
|
858
|
+
PermissionsBoundary: arnType | None
|
|
859
|
+
Tags: tagListType | None
|
|
753
860
|
|
|
754
861
|
|
|
755
862
|
class CreateRoleResponse(TypedDict, total=False):
|
|
@@ -759,54 +866,54 @@ class CreateRoleResponse(TypedDict, total=False):
|
|
|
759
866
|
class CreateSAMLProviderRequest(ServiceRequest):
|
|
760
867
|
SAMLMetadataDocument: SAMLMetadataDocumentType
|
|
761
868
|
Name: SAMLProviderNameType
|
|
762
|
-
Tags:
|
|
763
|
-
AssertionEncryptionMode:
|
|
764
|
-
AddPrivateKey:
|
|
869
|
+
Tags: tagListType | None
|
|
870
|
+
AssertionEncryptionMode: assertionEncryptionModeType | None
|
|
871
|
+
AddPrivateKey: privateKeyType | None
|
|
765
872
|
|
|
766
873
|
|
|
767
874
|
class CreateSAMLProviderResponse(TypedDict, total=False):
|
|
768
|
-
SAMLProviderArn:
|
|
769
|
-
Tags:
|
|
875
|
+
SAMLProviderArn: arnType | None
|
|
876
|
+
Tags: tagListType | None
|
|
770
877
|
|
|
771
878
|
|
|
772
879
|
class CreateServiceLinkedRoleRequest(ServiceRequest):
|
|
773
880
|
AWSServiceName: groupNameType
|
|
774
|
-
Description:
|
|
775
|
-
CustomSuffix:
|
|
881
|
+
Description: roleDescriptionType | None
|
|
882
|
+
CustomSuffix: customSuffixType | None
|
|
776
883
|
|
|
777
884
|
|
|
778
885
|
class CreateServiceLinkedRoleResponse(TypedDict, total=False):
|
|
779
|
-
Role:
|
|
886
|
+
Role: Role | None
|
|
780
887
|
|
|
781
888
|
|
|
782
889
|
class CreateServiceSpecificCredentialRequest(ServiceRequest):
|
|
783
890
|
UserName: userNameType
|
|
784
891
|
ServiceName: serviceName
|
|
785
|
-
CredentialAgeDays:
|
|
892
|
+
CredentialAgeDays: credentialAgeDays | None
|
|
786
893
|
|
|
787
894
|
|
|
788
895
|
class ServiceSpecificCredential(TypedDict, total=False):
|
|
789
896
|
CreateDate: dateType
|
|
790
|
-
ExpirationDate:
|
|
897
|
+
ExpirationDate: dateType | None
|
|
791
898
|
ServiceName: serviceName
|
|
792
|
-
ServiceUserName:
|
|
793
|
-
ServicePassword:
|
|
794
|
-
ServiceCredentialAlias:
|
|
795
|
-
ServiceCredentialSecret:
|
|
899
|
+
ServiceUserName: serviceUserName | None
|
|
900
|
+
ServicePassword: servicePassword | None
|
|
901
|
+
ServiceCredentialAlias: serviceCredentialAlias | None
|
|
902
|
+
ServiceCredentialSecret: serviceCredentialSecret | None
|
|
796
903
|
ServiceSpecificCredentialId: serviceSpecificCredentialId
|
|
797
904
|
UserName: userNameType
|
|
798
905
|
Status: statusType
|
|
799
906
|
|
|
800
907
|
|
|
801
908
|
class CreateServiceSpecificCredentialResponse(TypedDict, total=False):
|
|
802
|
-
ServiceSpecificCredential:
|
|
909
|
+
ServiceSpecificCredential: ServiceSpecificCredential | None
|
|
803
910
|
|
|
804
911
|
|
|
805
912
|
class CreateUserRequest(ServiceRequest):
|
|
806
|
-
Path:
|
|
913
|
+
Path: pathType | None
|
|
807
914
|
UserName: userNameType
|
|
808
|
-
PermissionsBoundary:
|
|
809
|
-
Tags:
|
|
915
|
+
PermissionsBoundary: arnType | None
|
|
916
|
+
Tags: tagListType | None
|
|
810
917
|
|
|
811
918
|
|
|
812
919
|
class User(TypedDict, total=False):
|
|
@@ -815,28 +922,28 @@ class User(TypedDict, total=False):
|
|
|
815
922
|
UserId: idType
|
|
816
923
|
Arn: arnType
|
|
817
924
|
CreateDate: dateType
|
|
818
|
-
PasswordLastUsed:
|
|
819
|
-
PermissionsBoundary:
|
|
820
|
-
Tags:
|
|
925
|
+
PasswordLastUsed: dateType | None
|
|
926
|
+
PermissionsBoundary: AttachedPermissionsBoundary | None
|
|
927
|
+
Tags: tagListType | None
|
|
821
928
|
|
|
822
929
|
|
|
823
930
|
class CreateUserResponse(TypedDict, total=False):
|
|
824
|
-
User:
|
|
931
|
+
User: User | None
|
|
825
932
|
|
|
826
933
|
|
|
827
934
|
class CreateVirtualMFADeviceRequest(ServiceRequest):
|
|
828
|
-
Path:
|
|
935
|
+
Path: pathType | None
|
|
829
936
|
VirtualMFADeviceName: virtualMFADeviceName
|
|
830
|
-
Tags:
|
|
937
|
+
Tags: tagListType | None
|
|
831
938
|
|
|
832
939
|
|
|
833
940
|
class VirtualMFADevice(TypedDict, total=False):
|
|
834
941
|
SerialNumber: serialNumberType
|
|
835
|
-
Base32StringSeed:
|
|
836
|
-
QRCodePNG:
|
|
837
|
-
User:
|
|
838
|
-
EnableDate:
|
|
839
|
-
Tags:
|
|
942
|
+
Base32StringSeed: BootstrapDatum | None
|
|
943
|
+
QRCodePNG: BootstrapDatum | None
|
|
944
|
+
User: User | None
|
|
945
|
+
EnableDate: dateType | None
|
|
946
|
+
Tags: tagListType | None
|
|
840
947
|
|
|
841
948
|
|
|
842
949
|
class CreateVirtualMFADeviceResponse(TypedDict, total=False):
|
|
@@ -844,12 +951,37 @@ class CreateVirtualMFADeviceResponse(TypedDict, total=False):
|
|
|
844
951
|
|
|
845
952
|
|
|
846
953
|
class DeactivateMFADeviceRequest(ServiceRequest):
|
|
847
|
-
UserName:
|
|
954
|
+
UserName: existingUserNameType | None
|
|
848
955
|
SerialNumber: serialNumberType
|
|
849
956
|
|
|
850
957
|
|
|
958
|
+
rolePermissionRestrictionArnListType = list[arnType]
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
class DelegationRequest(TypedDict, total=False):
|
|
962
|
+
DelegationRequestId: delegationRequestIdType | None
|
|
963
|
+
OwnerAccountId: accountIdType | None
|
|
964
|
+
Description: delegationRequestDescriptionType | None
|
|
965
|
+
RequestMessage: requestMessageType | None
|
|
966
|
+
Permissions: DelegationPermission | None
|
|
967
|
+
PermissionPolicy: permissionType | None
|
|
968
|
+
RolePermissionRestrictionArns: rolePermissionRestrictionArnListType | None
|
|
969
|
+
OwnerId: ownerIdType | None
|
|
970
|
+
ApproverId: arnType | None
|
|
971
|
+
State: stateType | None
|
|
972
|
+
RequestorId: accountIdType | None
|
|
973
|
+
RequestorName: requestorNameType | None
|
|
974
|
+
CreateDate: dateType | None
|
|
975
|
+
SessionDuration: sessionDurationType | None
|
|
976
|
+
RedirectUrl: redirectUrlType | None
|
|
977
|
+
Notes: notesType | None
|
|
978
|
+
RejectionReason: notesType | None
|
|
979
|
+
OnlySendByOwner: booleanType | None
|
|
980
|
+
UpdatedTime: dateType | None
|
|
981
|
+
|
|
982
|
+
|
|
851
983
|
class DeleteAccessKeyRequest(ServiceRequest):
|
|
852
|
-
UserName:
|
|
984
|
+
UserName: existingUserNameType | None
|
|
853
985
|
AccessKeyId: accessKeyIdType
|
|
854
986
|
|
|
855
987
|
|
|
@@ -871,7 +1003,7 @@ class DeleteInstanceProfileRequest(ServiceRequest):
|
|
|
871
1003
|
|
|
872
1004
|
|
|
873
1005
|
class DeleteLoginProfileRequest(ServiceRequest):
|
|
874
|
-
UserName:
|
|
1006
|
+
UserName: userNameType | None
|
|
875
1007
|
|
|
876
1008
|
|
|
877
1009
|
class DeleteOpenIDConnectProviderRequest(ServiceRequest):
|
|
@@ -922,12 +1054,12 @@ class DeleteServiceLinkedRoleResponse(TypedDict, total=False):
|
|
|
922
1054
|
|
|
923
1055
|
|
|
924
1056
|
class DeleteServiceSpecificCredentialRequest(ServiceRequest):
|
|
925
|
-
UserName:
|
|
1057
|
+
UserName: userNameType | None
|
|
926
1058
|
ServiceSpecificCredentialId: serviceSpecificCredentialId
|
|
927
1059
|
|
|
928
1060
|
|
|
929
1061
|
class DeleteSigningCertificateRequest(ServiceRequest):
|
|
930
|
-
UserName:
|
|
1062
|
+
UserName: existingUserNameType | None
|
|
931
1063
|
CertificateId: certificateIdType
|
|
932
1064
|
|
|
933
1065
|
|
|
@@ -949,16 +1081,16 @@ class DeleteVirtualMFADeviceRequest(ServiceRequest):
|
|
|
949
1081
|
|
|
950
1082
|
|
|
951
1083
|
class RoleUsageType(TypedDict, total=False):
|
|
952
|
-
Region:
|
|
953
|
-
Resources:
|
|
1084
|
+
Region: RegionNameType | None
|
|
1085
|
+
Resources: ArnListType | None
|
|
954
1086
|
|
|
955
1087
|
|
|
956
|
-
RoleUsageListType =
|
|
1088
|
+
RoleUsageListType = list[RoleUsageType]
|
|
957
1089
|
|
|
958
1090
|
|
|
959
1091
|
class DeletionTaskFailureReasonType(TypedDict, total=False):
|
|
960
|
-
Reason:
|
|
961
|
-
RoleUsageList:
|
|
1092
|
+
Reason: ReasonType | None
|
|
1093
|
+
RoleUsageList: RoleUsageListType | None
|
|
962
1094
|
|
|
963
1095
|
|
|
964
1096
|
class DetachGroupPolicyRequest(ServiceRequest):
|
|
@@ -980,12 +1112,12 @@ class DisableOrganizationsRootCredentialsManagementRequest(ServiceRequest):
|
|
|
980
1112
|
pass
|
|
981
1113
|
|
|
982
1114
|
|
|
983
|
-
FeaturesListType =
|
|
1115
|
+
FeaturesListType = list[FeatureType]
|
|
984
1116
|
|
|
985
1117
|
|
|
986
1118
|
class DisableOrganizationsRootCredentialsManagementResponse(TypedDict, total=False):
|
|
987
|
-
OrganizationId:
|
|
988
|
-
EnabledFeatures:
|
|
1119
|
+
OrganizationId: OrganizationIdType | None
|
|
1120
|
+
EnabledFeatures: FeaturesListType | None
|
|
989
1121
|
|
|
990
1122
|
|
|
991
1123
|
class DisableOrganizationsRootSessionsRequest(ServiceRequest):
|
|
@@ -993,8 +1125,8 @@ class DisableOrganizationsRootSessionsRequest(ServiceRequest):
|
|
|
993
1125
|
|
|
994
1126
|
|
|
995
1127
|
class DisableOrganizationsRootSessionsResponse(TypedDict, total=False):
|
|
996
|
-
OrganizationId:
|
|
997
|
-
EnabledFeatures:
|
|
1128
|
+
OrganizationId: OrganizationIdType | None
|
|
1129
|
+
EnabledFeatures: FeaturesListType | None
|
|
998
1130
|
|
|
999
1131
|
|
|
1000
1132
|
class EnableMFADeviceRequest(ServiceRequest):
|
|
@@ -1009,8 +1141,8 @@ class EnableOrganizationsRootCredentialsManagementRequest(ServiceRequest):
|
|
|
1009
1141
|
|
|
1010
1142
|
|
|
1011
1143
|
class EnableOrganizationsRootCredentialsManagementResponse(TypedDict, total=False):
|
|
1012
|
-
OrganizationId:
|
|
1013
|
-
EnabledFeatures:
|
|
1144
|
+
OrganizationId: OrganizationIdType | None
|
|
1145
|
+
EnabledFeatures: FeaturesListType | None
|
|
1014
1146
|
|
|
1015
1147
|
|
|
1016
1148
|
class EnableOrganizationsRootSessionsRequest(ServiceRequest):
|
|
@@ -1018,8 +1150,12 @@ class EnableOrganizationsRootSessionsRequest(ServiceRequest):
|
|
|
1018
1150
|
|
|
1019
1151
|
|
|
1020
1152
|
class EnableOrganizationsRootSessionsResponse(TypedDict, total=False):
|
|
1021
|
-
OrganizationId:
|
|
1022
|
-
EnabledFeatures:
|
|
1153
|
+
OrganizationId: OrganizationIdType | None
|
|
1154
|
+
EnabledFeatures: FeaturesListType | None
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
class EnableOutboundWebIdentityFederationResponse(TypedDict, total=False):
|
|
1158
|
+
IssuerIdentifier: stringType | None
|
|
1023
1159
|
|
|
1024
1160
|
|
|
1025
1161
|
class EntityInfo(TypedDict, total=False):
|
|
@@ -1027,12 +1163,12 @@ class EntityInfo(TypedDict, total=False):
|
|
|
1027
1163
|
Name: userNameType
|
|
1028
1164
|
Type: policyOwnerEntityType
|
|
1029
1165
|
Id: idType
|
|
1030
|
-
Path:
|
|
1166
|
+
Path: pathType | None
|
|
1031
1167
|
|
|
1032
1168
|
|
|
1033
1169
|
class EntityDetails(TypedDict, total=False):
|
|
1034
1170
|
EntityInfo: EntityInfo
|
|
1035
|
-
LastAuthenticated:
|
|
1171
|
+
LastAuthenticated: dateType | None
|
|
1036
1172
|
|
|
1037
1173
|
|
|
1038
1174
|
class ErrorDetails(TypedDict, total=False):
|
|
@@ -1040,80 +1176,80 @@ class ErrorDetails(TypedDict, total=False):
|
|
|
1040
1176
|
Code: stringType
|
|
1041
1177
|
|
|
1042
1178
|
|
|
1043
|
-
EvalDecisionDetailsType =
|
|
1179
|
+
EvalDecisionDetailsType = dict[EvalDecisionSourceType, PolicyEvaluationDecisionType]
|
|
1044
1180
|
|
|
1045
1181
|
|
|
1046
1182
|
class PermissionsBoundaryDecisionDetail(TypedDict, total=False):
|
|
1047
|
-
AllowedByPermissionsBoundary:
|
|
1183
|
+
AllowedByPermissionsBoundary: booleanType | None
|
|
1048
1184
|
|
|
1049
1185
|
|
|
1050
1186
|
class Position(TypedDict, total=False):
|
|
1051
|
-
Line:
|
|
1052
|
-
Column:
|
|
1187
|
+
Line: LineNumber | None
|
|
1188
|
+
Column: ColumnNumber | None
|
|
1053
1189
|
|
|
1054
1190
|
|
|
1055
1191
|
class Statement(TypedDict, total=False):
|
|
1056
|
-
SourcePolicyId:
|
|
1057
|
-
SourcePolicyType:
|
|
1058
|
-
StartPosition:
|
|
1059
|
-
EndPosition:
|
|
1192
|
+
SourcePolicyId: PolicyIdentifierType | None
|
|
1193
|
+
SourcePolicyType: PolicySourceType | None
|
|
1194
|
+
StartPosition: Position | None
|
|
1195
|
+
EndPosition: Position | None
|
|
1060
1196
|
|
|
1061
1197
|
|
|
1062
|
-
StatementListType =
|
|
1198
|
+
StatementListType = list[Statement]
|
|
1063
1199
|
|
|
1064
1200
|
|
|
1065
1201
|
class ResourceSpecificResult(TypedDict, total=False):
|
|
1066
1202
|
EvalResourceName: ResourceNameType
|
|
1067
1203
|
EvalResourceDecision: PolicyEvaluationDecisionType
|
|
1068
|
-
MatchedStatements:
|
|
1069
|
-
MissingContextValues:
|
|
1070
|
-
EvalDecisionDetails:
|
|
1071
|
-
PermissionsBoundaryDecisionDetail:
|
|
1204
|
+
MatchedStatements: StatementListType | None
|
|
1205
|
+
MissingContextValues: ContextKeyNamesResultListType | None
|
|
1206
|
+
EvalDecisionDetails: EvalDecisionDetailsType | None
|
|
1207
|
+
PermissionsBoundaryDecisionDetail: PermissionsBoundaryDecisionDetail | None
|
|
1072
1208
|
|
|
1073
1209
|
|
|
1074
|
-
ResourceSpecificResultListType =
|
|
1210
|
+
ResourceSpecificResultListType = list[ResourceSpecificResult]
|
|
1075
1211
|
|
|
1076
1212
|
|
|
1077
1213
|
class OrganizationsDecisionDetail(TypedDict, total=False):
|
|
1078
|
-
AllowedByOrganizations:
|
|
1214
|
+
AllowedByOrganizations: booleanType | None
|
|
1079
1215
|
|
|
1080
1216
|
|
|
1081
1217
|
class EvaluationResult(TypedDict, total=False):
|
|
1082
1218
|
EvalActionName: ActionNameType
|
|
1083
|
-
EvalResourceName:
|
|
1219
|
+
EvalResourceName: ResourceNameType | None
|
|
1084
1220
|
EvalDecision: PolicyEvaluationDecisionType
|
|
1085
|
-
MatchedStatements:
|
|
1086
|
-
MissingContextValues:
|
|
1087
|
-
OrganizationsDecisionDetail:
|
|
1088
|
-
PermissionsBoundaryDecisionDetail:
|
|
1089
|
-
EvalDecisionDetails:
|
|
1090
|
-
ResourceSpecificResults:
|
|
1221
|
+
MatchedStatements: StatementListType | None
|
|
1222
|
+
MissingContextValues: ContextKeyNamesResultListType | None
|
|
1223
|
+
OrganizationsDecisionDetail: OrganizationsDecisionDetail | None
|
|
1224
|
+
PermissionsBoundaryDecisionDetail: PermissionsBoundaryDecisionDetail | None
|
|
1225
|
+
EvalDecisionDetails: EvalDecisionDetailsType | None
|
|
1226
|
+
ResourceSpecificResults: ResourceSpecificResultListType | None
|
|
1091
1227
|
|
|
1092
1228
|
|
|
1093
|
-
EvaluationResultsListType =
|
|
1229
|
+
EvaluationResultsListType = list[EvaluationResult]
|
|
1094
1230
|
|
|
1095
1231
|
|
|
1096
1232
|
class GenerateCredentialReportResponse(TypedDict, total=False):
|
|
1097
|
-
State:
|
|
1098
|
-
Description:
|
|
1233
|
+
State: ReportStateType | None
|
|
1234
|
+
Description: ReportStateDescriptionType | None
|
|
1099
1235
|
|
|
1100
1236
|
|
|
1101
1237
|
class GenerateOrganizationsAccessReportRequest(ServiceRequest):
|
|
1102
1238
|
EntityPath: organizationsEntityPathType
|
|
1103
|
-
OrganizationsPolicyId:
|
|
1239
|
+
OrganizationsPolicyId: organizationsPolicyIdType | None
|
|
1104
1240
|
|
|
1105
1241
|
|
|
1106
1242
|
class GenerateOrganizationsAccessReportResponse(TypedDict, total=False):
|
|
1107
|
-
JobId:
|
|
1243
|
+
JobId: jobIDType | None
|
|
1108
1244
|
|
|
1109
1245
|
|
|
1110
1246
|
class GenerateServiceLastAccessedDetailsRequest(ServiceRequest):
|
|
1111
1247
|
Arn: arnType
|
|
1112
|
-
Granularity:
|
|
1248
|
+
Granularity: AccessAdvisorUsageGranularityType | None
|
|
1113
1249
|
|
|
1114
1250
|
|
|
1115
1251
|
class GenerateServiceLastAccessedDetailsResponse(TypedDict, total=False):
|
|
1116
|
-
JobId:
|
|
1252
|
+
JobId: jobIDType | None
|
|
1117
1253
|
|
|
1118
1254
|
|
|
1119
1255
|
class GetAccessKeyLastUsedRequest(ServiceRequest):
|
|
@@ -1121,132 +1257,132 @@ class GetAccessKeyLastUsedRequest(ServiceRequest):
|
|
|
1121
1257
|
|
|
1122
1258
|
|
|
1123
1259
|
class GetAccessKeyLastUsedResponse(TypedDict, total=False):
|
|
1124
|
-
UserName:
|
|
1125
|
-
AccessKeyLastUsed:
|
|
1260
|
+
UserName: existingUserNameType | None
|
|
1261
|
+
AccessKeyLastUsed: AccessKeyLastUsed | None
|
|
1126
1262
|
|
|
1127
1263
|
|
|
1128
|
-
entityListType =
|
|
1264
|
+
entityListType = list[EntityType]
|
|
1129
1265
|
|
|
1130
1266
|
|
|
1131
1267
|
class GetAccountAuthorizationDetailsRequest(ServiceRequest):
|
|
1132
|
-
Filter:
|
|
1133
|
-
MaxItems:
|
|
1134
|
-
Marker:
|
|
1268
|
+
Filter: entityListType | None
|
|
1269
|
+
MaxItems: maxItemsType | None
|
|
1270
|
+
Marker: markerType | None
|
|
1135
1271
|
|
|
1136
1272
|
|
|
1137
|
-
policyDocumentVersionListType =
|
|
1273
|
+
policyDocumentVersionListType = list[PolicyVersion]
|
|
1138
1274
|
|
|
1139
1275
|
|
|
1140
1276
|
class ManagedPolicyDetail(TypedDict, total=False):
|
|
1141
|
-
PolicyName:
|
|
1142
|
-
PolicyId:
|
|
1143
|
-
Arn:
|
|
1144
|
-
Path:
|
|
1145
|
-
DefaultVersionId:
|
|
1146
|
-
AttachmentCount:
|
|
1147
|
-
PermissionsBoundaryUsageCount:
|
|
1148
|
-
IsAttachable:
|
|
1149
|
-
Description:
|
|
1150
|
-
CreateDate:
|
|
1151
|
-
UpdateDate:
|
|
1152
|
-
PolicyVersionList:
|
|
1277
|
+
PolicyName: policyNameType | None
|
|
1278
|
+
PolicyId: idType | None
|
|
1279
|
+
Arn: arnType | None
|
|
1280
|
+
Path: policyPathType | None
|
|
1281
|
+
DefaultVersionId: policyVersionIdType | None
|
|
1282
|
+
AttachmentCount: attachmentCountType | None
|
|
1283
|
+
PermissionsBoundaryUsageCount: attachmentCountType | None
|
|
1284
|
+
IsAttachable: booleanType | None
|
|
1285
|
+
Description: policyDescriptionType | None
|
|
1286
|
+
CreateDate: dateType | None
|
|
1287
|
+
UpdateDate: dateType | None
|
|
1288
|
+
PolicyVersionList: policyDocumentVersionListType | None
|
|
1153
1289
|
|
|
1154
1290
|
|
|
1155
|
-
ManagedPolicyDetailListType =
|
|
1156
|
-
attachedPoliciesListType =
|
|
1291
|
+
ManagedPolicyDetailListType = list[ManagedPolicyDetail]
|
|
1292
|
+
attachedPoliciesListType = list[AttachedPolicy]
|
|
1157
1293
|
|
|
1158
1294
|
|
|
1159
1295
|
class PolicyDetail(TypedDict, total=False):
|
|
1160
|
-
PolicyName:
|
|
1161
|
-
PolicyDocument:
|
|
1296
|
+
PolicyName: policyNameType | None
|
|
1297
|
+
PolicyDocument: policyDocumentType | None
|
|
1162
1298
|
|
|
1163
1299
|
|
|
1164
|
-
policyDetailListType =
|
|
1165
|
-
instanceProfileListType =
|
|
1300
|
+
policyDetailListType = list[PolicyDetail]
|
|
1301
|
+
instanceProfileListType = list[InstanceProfile]
|
|
1166
1302
|
|
|
1167
1303
|
|
|
1168
1304
|
class RoleDetail(TypedDict, total=False):
|
|
1169
|
-
Path:
|
|
1170
|
-
RoleName:
|
|
1171
|
-
RoleId:
|
|
1172
|
-
Arn:
|
|
1173
|
-
CreateDate:
|
|
1174
|
-
AssumeRolePolicyDocument:
|
|
1175
|
-
InstanceProfileList:
|
|
1176
|
-
RolePolicyList:
|
|
1177
|
-
AttachedManagedPolicies:
|
|
1178
|
-
PermissionsBoundary:
|
|
1179
|
-
Tags:
|
|
1180
|
-
RoleLastUsed:
|
|
1305
|
+
Path: pathType | None
|
|
1306
|
+
RoleName: roleNameType | None
|
|
1307
|
+
RoleId: idType | None
|
|
1308
|
+
Arn: arnType | None
|
|
1309
|
+
CreateDate: dateType | None
|
|
1310
|
+
AssumeRolePolicyDocument: policyDocumentType | None
|
|
1311
|
+
InstanceProfileList: instanceProfileListType | None
|
|
1312
|
+
RolePolicyList: policyDetailListType | None
|
|
1313
|
+
AttachedManagedPolicies: attachedPoliciesListType | None
|
|
1314
|
+
PermissionsBoundary: AttachedPermissionsBoundary | None
|
|
1315
|
+
Tags: tagListType | None
|
|
1316
|
+
RoleLastUsed: RoleLastUsed | None
|
|
1181
1317
|
|
|
1182
1318
|
|
|
1183
|
-
roleDetailListType =
|
|
1319
|
+
roleDetailListType = list[RoleDetail]
|
|
1184
1320
|
|
|
1185
1321
|
|
|
1186
1322
|
class GroupDetail(TypedDict, total=False):
|
|
1187
|
-
Path:
|
|
1188
|
-
GroupName:
|
|
1189
|
-
GroupId:
|
|
1190
|
-
Arn:
|
|
1191
|
-
CreateDate:
|
|
1192
|
-
GroupPolicyList:
|
|
1193
|
-
AttachedManagedPolicies:
|
|
1323
|
+
Path: pathType | None
|
|
1324
|
+
GroupName: groupNameType | None
|
|
1325
|
+
GroupId: idType | None
|
|
1326
|
+
Arn: arnType | None
|
|
1327
|
+
CreateDate: dateType | None
|
|
1328
|
+
GroupPolicyList: policyDetailListType | None
|
|
1329
|
+
AttachedManagedPolicies: attachedPoliciesListType | None
|
|
1194
1330
|
|
|
1195
1331
|
|
|
1196
|
-
groupDetailListType =
|
|
1197
|
-
groupNameListType =
|
|
1332
|
+
groupDetailListType = list[GroupDetail]
|
|
1333
|
+
groupNameListType = list[groupNameType]
|
|
1198
1334
|
|
|
1199
1335
|
|
|
1200
1336
|
class UserDetail(TypedDict, total=False):
|
|
1201
|
-
Path:
|
|
1202
|
-
UserName:
|
|
1203
|
-
UserId:
|
|
1204
|
-
Arn:
|
|
1205
|
-
CreateDate:
|
|
1206
|
-
UserPolicyList:
|
|
1207
|
-
GroupList:
|
|
1208
|
-
AttachedManagedPolicies:
|
|
1209
|
-
PermissionsBoundary:
|
|
1210
|
-
Tags:
|
|
1337
|
+
Path: pathType | None
|
|
1338
|
+
UserName: userNameType | None
|
|
1339
|
+
UserId: idType | None
|
|
1340
|
+
Arn: arnType | None
|
|
1341
|
+
CreateDate: dateType | None
|
|
1342
|
+
UserPolicyList: policyDetailListType | None
|
|
1343
|
+
GroupList: groupNameListType | None
|
|
1344
|
+
AttachedManagedPolicies: attachedPoliciesListType | None
|
|
1345
|
+
PermissionsBoundary: AttachedPermissionsBoundary | None
|
|
1346
|
+
Tags: tagListType | None
|
|
1211
1347
|
|
|
1212
1348
|
|
|
1213
|
-
userDetailListType =
|
|
1349
|
+
userDetailListType = list[UserDetail]
|
|
1214
1350
|
|
|
1215
1351
|
|
|
1216
1352
|
class GetAccountAuthorizationDetailsResponse(TypedDict, total=False):
|
|
1217
|
-
UserDetailList:
|
|
1218
|
-
GroupDetailList:
|
|
1219
|
-
RoleDetailList:
|
|
1220
|
-
Policies:
|
|
1221
|
-
IsTruncated:
|
|
1222
|
-
Marker:
|
|
1353
|
+
UserDetailList: userDetailListType | None
|
|
1354
|
+
GroupDetailList: groupDetailListType | None
|
|
1355
|
+
RoleDetailList: roleDetailListType | None
|
|
1356
|
+
Policies: ManagedPolicyDetailListType | None
|
|
1357
|
+
IsTruncated: booleanType | None
|
|
1358
|
+
Marker: responseMarkerType | None
|
|
1223
1359
|
|
|
1224
1360
|
|
|
1225
1361
|
class PasswordPolicy(TypedDict, total=False):
|
|
1226
|
-
MinimumPasswordLength:
|
|
1227
|
-
RequireSymbols:
|
|
1228
|
-
RequireNumbers:
|
|
1229
|
-
RequireUppercaseCharacters:
|
|
1230
|
-
RequireLowercaseCharacters:
|
|
1231
|
-
AllowUsersToChangePassword:
|
|
1232
|
-
ExpirePasswords:
|
|
1233
|
-
MaxPasswordAge:
|
|
1234
|
-
PasswordReusePrevention:
|
|
1235
|
-
HardExpiry:
|
|
1362
|
+
MinimumPasswordLength: minimumPasswordLengthType | None
|
|
1363
|
+
RequireSymbols: booleanType | None
|
|
1364
|
+
RequireNumbers: booleanType | None
|
|
1365
|
+
RequireUppercaseCharacters: booleanType | None
|
|
1366
|
+
RequireLowercaseCharacters: booleanType | None
|
|
1367
|
+
AllowUsersToChangePassword: booleanType | None
|
|
1368
|
+
ExpirePasswords: booleanType | None
|
|
1369
|
+
MaxPasswordAge: maxPasswordAgeType | None
|
|
1370
|
+
PasswordReusePrevention: passwordReusePreventionType | None
|
|
1371
|
+
HardExpiry: booleanObjectType | None
|
|
1236
1372
|
|
|
1237
1373
|
|
|
1238
1374
|
class GetAccountPasswordPolicyResponse(TypedDict, total=False):
|
|
1239
1375
|
PasswordPolicy: PasswordPolicy
|
|
1240
1376
|
|
|
1241
1377
|
|
|
1242
|
-
summaryMapType =
|
|
1378
|
+
summaryMapType = dict[summaryKeyType, summaryValueType]
|
|
1243
1379
|
|
|
1244
1380
|
|
|
1245
1381
|
class GetAccountSummaryResponse(TypedDict, total=False):
|
|
1246
|
-
SummaryMap:
|
|
1382
|
+
SummaryMap: summaryMapType | None
|
|
1247
1383
|
|
|
1248
1384
|
|
|
1249
|
-
SimulationPolicyListType =
|
|
1385
|
+
SimulationPolicyListType = list[policyDocumentType]
|
|
1250
1386
|
|
|
1251
1387
|
|
|
1252
1388
|
class GetContextKeysForCustomPolicyRequest(ServiceRequest):
|
|
@@ -1254,21 +1390,32 @@ class GetContextKeysForCustomPolicyRequest(ServiceRequest):
|
|
|
1254
1390
|
|
|
1255
1391
|
|
|
1256
1392
|
class GetContextKeysForPolicyResponse(TypedDict, total=False):
|
|
1257
|
-
ContextKeyNames:
|
|
1393
|
+
ContextKeyNames: ContextKeyNamesResultListType | None
|
|
1258
1394
|
|
|
1259
1395
|
|
|
1260
1396
|
class GetContextKeysForPrincipalPolicyRequest(ServiceRequest):
|
|
1261
1397
|
PolicySourceArn: arnType
|
|
1262
|
-
PolicyInputList:
|
|
1398
|
+
PolicyInputList: SimulationPolicyListType | None
|
|
1263
1399
|
|
|
1264
1400
|
|
|
1265
1401
|
ReportContentType = bytes
|
|
1266
1402
|
|
|
1267
1403
|
|
|
1268
1404
|
class GetCredentialReportResponse(TypedDict, total=False):
|
|
1269
|
-
Content:
|
|
1270
|
-
ReportFormat:
|
|
1271
|
-
GeneratedTime:
|
|
1405
|
+
Content: ReportContentType | None
|
|
1406
|
+
ReportFormat: ReportFormatType | None
|
|
1407
|
+
GeneratedTime: dateType | None
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
class GetDelegationRequestRequest(ServiceRequest):
|
|
1411
|
+
DelegationRequestId: delegationRequestIdType
|
|
1412
|
+
DelegationPermissionCheck: booleanType | None
|
|
1413
|
+
|
|
1414
|
+
|
|
1415
|
+
class GetDelegationRequestResponse(TypedDict, total=False):
|
|
1416
|
+
DelegationRequest: DelegationRequest | None
|
|
1417
|
+
PermissionCheckStatus: permissionCheckStatusType | None
|
|
1418
|
+
PermissionCheckResult: permissionCheckResultType | None
|
|
1272
1419
|
|
|
1273
1420
|
|
|
1274
1421
|
class GetGroupPolicyRequest(ServiceRequest):
|
|
@@ -1284,18 +1431,29 @@ class GetGroupPolicyResponse(TypedDict, total=False):
|
|
|
1284
1431
|
|
|
1285
1432
|
class GetGroupRequest(ServiceRequest):
|
|
1286
1433
|
GroupName: groupNameType
|
|
1287
|
-
Marker:
|
|
1288
|
-
MaxItems:
|
|
1434
|
+
Marker: markerType | None
|
|
1435
|
+
MaxItems: maxItemsType | None
|
|
1289
1436
|
|
|
1290
1437
|
|
|
1291
|
-
userListType =
|
|
1438
|
+
userListType = list[User]
|
|
1292
1439
|
|
|
1293
1440
|
|
|
1294
1441
|
class GetGroupResponse(TypedDict, total=False):
|
|
1295
1442
|
Group: Group
|
|
1296
1443
|
Users: userListType
|
|
1297
|
-
IsTruncated:
|
|
1298
|
-
Marker:
|
|
1444
|
+
IsTruncated: booleanType | None
|
|
1445
|
+
Marker: responseMarkerType | None
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class GetHumanReadableSummaryRequest(ServiceRequest):
|
|
1449
|
+
EntityArn: arnType
|
|
1450
|
+
Locale: localeType | None
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
class GetHumanReadableSummaryResponse(TypedDict, total=False):
|
|
1454
|
+
SummaryContent: summaryContentType | None
|
|
1455
|
+
Locale: localeType | None
|
|
1456
|
+
SummaryState: summaryStateType | None
|
|
1299
1457
|
|
|
1300
1458
|
|
|
1301
1459
|
class GetInstanceProfileRequest(ServiceRequest):
|
|
@@ -1307,7 +1465,7 @@ class GetInstanceProfileResponse(TypedDict, total=False):
|
|
|
1307
1465
|
|
|
1308
1466
|
|
|
1309
1467
|
class GetLoginProfileRequest(ServiceRequest):
|
|
1310
|
-
UserName:
|
|
1468
|
+
UserName: userNameType | None
|
|
1311
1469
|
|
|
1312
1470
|
|
|
1313
1471
|
class GetLoginProfileResponse(TypedDict, total=False):
|
|
@@ -1316,14 +1474,14 @@ class GetLoginProfileResponse(TypedDict, total=False):
|
|
|
1316
1474
|
|
|
1317
1475
|
class GetMFADeviceRequest(ServiceRequest):
|
|
1318
1476
|
SerialNumber: serialNumberType
|
|
1319
|
-
UserName:
|
|
1477
|
+
UserName: userNameType | None
|
|
1320
1478
|
|
|
1321
1479
|
|
|
1322
1480
|
class GetMFADeviceResponse(TypedDict, total=False):
|
|
1323
|
-
UserName:
|
|
1481
|
+
UserName: userNameType | None
|
|
1324
1482
|
SerialNumber: serialNumberType
|
|
1325
|
-
EnableDate:
|
|
1326
|
-
Certifications:
|
|
1483
|
+
EnableDate: dateType | None
|
|
1484
|
+
Certifications: CertificationMapType | None
|
|
1327
1485
|
|
|
1328
1486
|
|
|
1329
1487
|
class GetOpenIDConnectProviderRequest(ServiceRequest):
|
|
@@ -1331,30 +1489,35 @@ class GetOpenIDConnectProviderRequest(ServiceRequest):
|
|
|
1331
1489
|
|
|
1332
1490
|
|
|
1333
1491
|
class GetOpenIDConnectProviderResponse(TypedDict, total=False):
|
|
1334
|
-
Url:
|
|
1335
|
-
ClientIDList:
|
|
1336
|
-
ThumbprintList:
|
|
1337
|
-
CreateDate:
|
|
1338
|
-
Tags:
|
|
1492
|
+
Url: OpenIDConnectProviderUrlType | None
|
|
1493
|
+
ClientIDList: clientIDListType | None
|
|
1494
|
+
ThumbprintList: thumbprintListType | None
|
|
1495
|
+
CreateDate: dateType | None
|
|
1496
|
+
Tags: tagListType | None
|
|
1339
1497
|
|
|
1340
1498
|
|
|
1341
1499
|
class GetOrganizationsAccessReportRequest(ServiceRequest):
|
|
1342
1500
|
JobId: jobIDType
|
|
1343
|
-
MaxItems:
|
|
1344
|
-
Marker:
|
|
1345
|
-
SortKey:
|
|
1501
|
+
MaxItems: maxItemsType | None
|
|
1502
|
+
Marker: markerType | None
|
|
1503
|
+
SortKey: sortKeyType | None
|
|
1346
1504
|
|
|
1347
1505
|
|
|
1348
1506
|
class GetOrganizationsAccessReportResponse(TypedDict, total=False):
|
|
1349
1507
|
JobStatus: jobStatusType
|
|
1350
1508
|
JobCreationDate: dateType
|
|
1351
|
-
JobCompletionDate:
|
|
1352
|
-
NumberOfServicesAccessible:
|
|
1353
|
-
NumberOfServicesNotAccessed:
|
|
1354
|
-
AccessDetails:
|
|
1355
|
-
IsTruncated:
|
|
1356
|
-
Marker:
|
|
1357
|
-
ErrorDetails:
|
|
1509
|
+
JobCompletionDate: dateType | None
|
|
1510
|
+
NumberOfServicesAccessible: integerType | None
|
|
1511
|
+
NumberOfServicesNotAccessed: integerType | None
|
|
1512
|
+
AccessDetails: AccessDetails | None
|
|
1513
|
+
IsTruncated: booleanType | None
|
|
1514
|
+
Marker: markerType | None
|
|
1515
|
+
ErrorDetails: ErrorDetails | None
|
|
1516
|
+
|
|
1517
|
+
|
|
1518
|
+
class GetOutboundWebIdentityFederationInfoResponse(TypedDict, total=False):
|
|
1519
|
+
IssuerIdentifier: stringType | None
|
|
1520
|
+
JwtVendingEnabled: booleanType | None
|
|
1358
1521
|
|
|
1359
1522
|
|
|
1360
1523
|
class GetPolicyRequest(ServiceRequest):
|
|
@@ -1362,7 +1525,7 @@ class GetPolicyRequest(ServiceRequest):
|
|
|
1362
1525
|
|
|
1363
1526
|
|
|
1364
1527
|
class GetPolicyResponse(TypedDict, total=False):
|
|
1365
|
-
Policy:
|
|
1528
|
+
Policy: Policy | None
|
|
1366
1529
|
|
|
1367
1530
|
|
|
1368
1531
|
class GetPolicyVersionRequest(ServiceRequest):
|
|
@@ -1371,7 +1534,7 @@ class GetPolicyVersionRequest(ServiceRequest):
|
|
|
1371
1534
|
|
|
1372
1535
|
|
|
1373
1536
|
class GetPolicyVersionResponse(TypedDict, total=False):
|
|
1374
|
-
PolicyVersion:
|
|
1537
|
+
PolicyVersion: PolicyVersion | None
|
|
1375
1538
|
|
|
1376
1539
|
|
|
1377
1540
|
class GetRolePolicyRequest(ServiceRequest):
|
|
@@ -1398,21 +1561,21 @@ class GetSAMLProviderRequest(ServiceRequest):
|
|
|
1398
1561
|
|
|
1399
1562
|
|
|
1400
1563
|
class SAMLPrivateKey(TypedDict, total=False):
|
|
1401
|
-
KeyId:
|
|
1402
|
-
Timestamp:
|
|
1564
|
+
KeyId: privateKeyIdType | None
|
|
1565
|
+
Timestamp: dateType | None
|
|
1403
1566
|
|
|
1404
1567
|
|
|
1405
|
-
privateKeyList =
|
|
1568
|
+
privateKeyList = list[SAMLPrivateKey]
|
|
1406
1569
|
|
|
1407
1570
|
|
|
1408
1571
|
class GetSAMLProviderResponse(TypedDict, total=False):
|
|
1409
|
-
SAMLProviderUUID:
|
|
1410
|
-
SAMLMetadataDocument:
|
|
1411
|
-
CreateDate:
|
|
1412
|
-
ValidUntil:
|
|
1413
|
-
Tags:
|
|
1414
|
-
AssertionEncryptionMode:
|
|
1415
|
-
PrivateKeyList:
|
|
1572
|
+
SAMLProviderUUID: privateKeyIdType | None
|
|
1573
|
+
SAMLMetadataDocument: SAMLMetadataDocumentType | None
|
|
1574
|
+
CreateDate: dateType | None
|
|
1575
|
+
ValidUntil: dateType | None
|
|
1576
|
+
Tags: tagListType | None
|
|
1577
|
+
AssertionEncryptionMode: assertionEncryptionModeType | None
|
|
1578
|
+
PrivateKeyList: privateKeyList | None
|
|
1416
1579
|
|
|
1417
1580
|
|
|
1418
1581
|
class GetSSHPublicKeyRequest(ServiceRequest):
|
|
@@ -1427,11 +1590,11 @@ class SSHPublicKey(TypedDict, total=False):
|
|
|
1427
1590
|
Fingerprint: publicKeyFingerprintType
|
|
1428
1591
|
SSHPublicKeyBody: publicKeyMaterialType
|
|
1429
1592
|
Status: statusType
|
|
1430
|
-
UploadDate:
|
|
1593
|
+
UploadDate: dateType | None
|
|
1431
1594
|
|
|
1432
1595
|
|
|
1433
1596
|
class GetSSHPublicKeyResponse(TypedDict, total=False):
|
|
1434
|
-
SSHPublicKey:
|
|
1597
|
+
SSHPublicKey: SSHPublicKey | None
|
|
1435
1598
|
|
|
1436
1599
|
|
|
1437
1600
|
class GetServerCertificateRequest(ServiceRequest):
|
|
@@ -1443,15 +1606,15 @@ class ServerCertificateMetadata(TypedDict, total=False):
|
|
|
1443
1606
|
ServerCertificateName: serverCertificateNameType
|
|
1444
1607
|
ServerCertificateId: idType
|
|
1445
1608
|
Arn: arnType
|
|
1446
|
-
UploadDate:
|
|
1447
|
-
Expiration:
|
|
1609
|
+
UploadDate: dateType | None
|
|
1610
|
+
Expiration: dateType | None
|
|
1448
1611
|
|
|
1449
1612
|
|
|
1450
1613
|
class ServerCertificate(TypedDict, total=False):
|
|
1451
1614
|
ServerCertificateMetadata: ServerCertificateMetadata
|
|
1452
1615
|
CertificateBody: certificateBodyType
|
|
1453
|
-
CertificateChain:
|
|
1454
|
-
Tags:
|
|
1616
|
+
CertificateChain: certificateChainType | None
|
|
1617
|
+
Tags: tagListType | None
|
|
1455
1618
|
|
|
1456
1619
|
|
|
1457
1620
|
class GetServerCertificateResponse(TypedDict, total=False):
|
|
@@ -1460,52 +1623,52 @@ class GetServerCertificateResponse(TypedDict, total=False):
|
|
|
1460
1623
|
|
|
1461
1624
|
class GetServiceLastAccessedDetailsRequest(ServiceRequest):
|
|
1462
1625
|
JobId: jobIDType
|
|
1463
|
-
MaxItems:
|
|
1464
|
-
Marker:
|
|
1626
|
+
MaxItems: maxItemsType | None
|
|
1627
|
+
Marker: markerType | None
|
|
1465
1628
|
|
|
1466
1629
|
|
|
1467
1630
|
class TrackedActionLastAccessed(TypedDict, total=False):
|
|
1468
|
-
ActionName:
|
|
1469
|
-
LastAccessedEntity:
|
|
1470
|
-
LastAccessedTime:
|
|
1471
|
-
LastAccessedRegion:
|
|
1631
|
+
ActionName: stringType | None
|
|
1632
|
+
LastAccessedEntity: arnType | None
|
|
1633
|
+
LastAccessedTime: dateType | None
|
|
1634
|
+
LastAccessedRegion: stringType | None
|
|
1472
1635
|
|
|
1473
1636
|
|
|
1474
|
-
TrackedActionsLastAccessed =
|
|
1637
|
+
TrackedActionsLastAccessed = list[TrackedActionLastAccessed]
|
|
1475
1638
|
|
|
1476
1639
|
|
|
1477
1640
|
class ServiceLastAccessed(TypedDict, total=False):
|
|
1478
1641
|
ServiceName: serviceNameType
|
|
1479
|
-
LastAuthenticated:
|
|
1642
|
+
LastAuthenticated: dateType | None
|
|
1480
1643
|
ServiceNamespace: serviceNamespaceType
|
|
1481
|
-
LastAuthenticatedEntity:
|
|
1482
|
-
LastAuthenticatedRegion:
|
|
1483
|
-
TotalAuthenticatedEntities:
|
|
1484
|
-
TrackedActionsLastAccessed:
|
|
1644
|
+
LastAuthenticatedEntity: arnType | None
|
|
1645
|
+
LastAuthenticatedRegion: stringType | None
|
|
1646
|
+
TotalAuthenticatedEntities: integerType | None
|
|
1647
|
+
TrackedActionsLastAccessed: TrackedActionsLastAccessed | None
|
|
1485
1648
|
|
|
1486
1649
|
|
|
1487
|
-
ServicesLastAccessed =
|
|
1650
|
+
ServicesLastAccessed = list[ServiceLastAccessed]
|
|
1488
1651
|
|
|
1489
1652
|
|
|
1490
1653
|
class GetServiceLastAccessedDetailsResponse(TypedDict, total=False):
|
|
1491
1654
|
JobStatus: jobStatusType
|
|
1492
|
-
JobType:
|
|
1655
|
+
JobType: AccessAdvisorUsageGranularityType | None
|
|
1493
1656
|
JobCreationDate: dateType
|
|
1494
1657
|
ServicesLastAccessed: ServicesLastAccessed
|
|
1495
1658
|
JobCompletionDate: dateType
|
|
1496
|
-
IsTruncated:
|
|
1497
|
-
Marker:
|
|
1498
|
-
Error:
|
|
1659
|
+
IsTruncated: booleanType | None
|
|
1660
|
+
Marker: responseMarkerType | None
|
|
1661
|
+
Error: ErrorDetails | None
|
|
1499
1662
|
|
|
1500
1663
|
|
|
1501
1664
|
class GetServiceLastAccessedDetailsWithEntitiesRequest(ServiceRequest):
|
|
1502
1665
|
JobId: jobIDType
|
|
1503
1666
|
ServiceNamespace: serviceNamespaceType
|
|
1504
|
-
MaxItems:
|
|
1505
|
-
Marker:
|
|
1667
|
+
MaxItems: maxItemsType | None
|
|
1668
|
+
Marker: markerType | None
|
|
1506
1669
|
|
|
1507
1670
|
|
|
1508
|
-
entityDetailsListType =
|
|
1671
|
+
entityDetailsListType = list[EntityDetails]
|
|
1509
1672
|
|
|
1510
1673
|
|
|
1511
1674
|
class GetServiceLastAccessedDetailsWithEntitiesResponse(TypedDict, total=False):
|
|
@@ -1513,9 +1676,9 @@ class GetServiceLastAccessedDetailsWithEntitiesResponse(TypedDict, total=False):
|
|
|
1513
1676
|
JobCreationDate: dateType
|
|
1514
1677
|
JobCompletionDate: dateType
|
|
1515
1678
|
EntityDetailsList: entityDetailsListType
|
|
1516
|
-
IsTruncated:
|
|
1517
|
-
Marker:
|
|
1518
|
-
Error:
|
|
1679
|
+
IsTruncated: booleanType | None
|
|
1680
|
+
Marker: responseMarkerType | None
|
|
1681
|
+
Error: ErrorDetails | None
|
|
1519
1682
|
|
|
1520
1683
|
|
|
1521
1684
|
class GetServiceLinkedRoleDeletionStatusRequest(ServiceRequest):
|
|
@@ -1524,7 +1687,7 @@ class GetServiceLinkedRoleDeletionStatusRequest(ServiceRequest):
|
|
|
1524
1687
|
|
|
1525
1688
|
class GetServiceLinkedRoleDeletionStatusResponse(TypedDict, total=False):
|
|
1526
1689
|
Status: DeletionTaskStatusType
|
|
1527
|
-
Reason:
|
|
1690
|
+
Reason: DeletionTaskFailureReasonType | None
|
|
1528
1691
|
|
|
1529
1692
|
|
|
1530
1693
|
class GetUserPolicyRequest(ServiceRequest):
|
|
@@ -1539,7 +1702,7 @@ class GetUserPolicyResponse(TypedDict, total=False):
|
|
|
1539
1702
|
|
|
1540
1703
|
|
|
1541
1704
|
class GetUserRequest(ServiceRequest):
|
|
1542
|
-
UserName:
|
|
1705
|
+
UserName: existingUserNameType | None
|
|
1543
1706
|
|
|
1544
1707
|
|
|
1545
1708
|
class GetUserResponse(TypedDict, total=False):
|
|
@@ -1547,208 +1710,223 @@ class GetUserResponse(TypedDict, total=False):
|
|
|
1547
1710
|
|
|
1548
1711
|
|
|
1549
1712
|
class ListAccessKeysRequest(ServiceRequest):
|
|
1550
|
-
UserName:
|
|
1551
|
-
Marker:
|
|
1552
|
-
MaxItems:
|
|
1713
|
+
UserName: existingUserNameType | None
|
|
1714
|
+
Marker: markerType | None
|
|
1715
|
+
MaxItems: maxItemsType | None
|
|
1553
1716
|
|
|
1554
1717
|
|
|
1555
|
-
accessKeyMetadataListType =
|
|
1718
|
+
accessKeyMetadataListType = list[AccessKeyMetadata]
|
|
1556
1719
|
|
|
1557
1720
|
|
|
1558
1721
|
class ListAccessKeysResponse(TypedDict, total=False):
|
|
1559
1722
|
AccessKeyMetadata: accessKeyMetadataListType
|
|
1560
|
-
IsTruncated:
|
|
1561
|
-
Marker:
|
|
1723
|
+
IsTruncated: booleanType | None
|
|
1724
|
+
Marker: responseMarkerType | None
|
|
1562
1725
|
|
|
1563
1726
|
|
|
1564
1727
|
class ListAccountAliasesRequest(ServiceRequest):
|
|
1565
|
-
Marker:
|
|
1566
|
-
MaxItems:
|
|
1728
|
+
Marker: markerType | None
|
|
1729
|
+
MaxItems: maxItemsType | None
|
|
1567
1730
|
|
|
1568
1731
|
|
|
1569
|
-
accountAliasListType =
|
|
1732
|
+
accountAliasListType = list[accountAliasType]
|
|
1570
1733
|
|
|
1571
1734
|
|
|
1572
1735
|
class ListAccountAliasesResponse(TypedDict, total=False):
|
|
1573
1736
|
AccountAliases: accountAliasListType
|
|
1574
|
-
IsTruncated:
|
|
1575
|
-
Marker:
|
|
1737
|
+
IsTruncated: booleanType | None
|
|
1738
|
+
Marker: responseMarkerType | None
|
|
1576
1739
|
|
|
1577
1740
|
|
|
1578
1741
|
class ListAttachedGroupPoliciesRequest(ServiceRequest):
|
|
1579
1742
|
GroupName: groupNameType
|
|
1580
|
-
PathPrefix:
|
|
1581
|
-
Marker:
|
|
1582
|
-
MaxItems:
|
|
1743
|
+
PathPrefix: policyPathType | None
|
|
1744
|
+
Marker: markerType | None
|
|
1745
|
+
MaxItems: maxItemsType | None
|
|
1583
1746
|
|
|
1584
1747
|
|
|
1585
1748
|
class ListAttachedGroupPoliciesResponse(TypedDict, total=False):
|
|
1586
|
-
AttachedPolicies:
|
|
1587
|
-
IsTruncated:
|
|
1588
|
-
Marker:
|
|
1749
|
+
AttachedPolicies: attachedPoliciesListType | None
|
|
1750
|
+
IsTruncated: booleanType | None
|
|
1751
|
+
Marker: responseMarkerType | None
|
|
1589
1752
|
|
|
1590
1753
|
|
|
1591
1754
|
class ListAttachedRolePoliciesRequest(ServiceRequest):
|
|
1592
1755
|
RoleName: roleNameType
|
|
1593
|
-
PathPrefix:
|
|
1594
|
-
Marker:
|
|
1595
|
-
MaxItems:
|
|
1756
|
+
PathPrefix: policyPathType | None
|
|
1757
|
+
Marker: markerType | None
|
|
1758
|
+
MaxItems: maxItemsType | None
|
|
1596
1759
|
|
|
1597
1760
|
|
|
1598
1761
|
class ListAttachedRolePoliciesResponse(TypedDict, total=False):
|
|
1599
|
-
AttachedPolicies:
|
|
1600
|
-
IsTruncated:
|
|
1601
|
-
Marker:
|
|
1762
|
+
AttachedPolicies: attachedPoliciesListType | None
|
|
1763
|
+
IsTruncated: booleanType | None
|
|
1764
|
+
Marker: responseMarkerType | None
|
|
1602
1765
|
|
|
1603
1766
|
|
|
1604
1767
|
class ListAttachedUserPoliciesRequest(ServiceRequest):
|
|
1605
1768
|
UserName: userNameType
|
|
1606
|
-
PathPrefix:
|
|
1607
|
-
Marker:
|
|
1608
|
-
MaxItems:
|
|
1769
|
+
PathPrefix: policyPathType | None
|
|
1770
|
+
Marker: markerType | None
|
|
1771
|
+
MaxItems: maxItemsType | None
|
|
1609
1772
|
|
|
1610
1773
|
|
|
1611
1774
|
class ListAttachedUserPoliciesResponse(TypedDict, total=False):
|
|
1612
|
-
AttachedPolicies:
|
|
1613
|
-
IsTruncated:
|
|
1614
|
-
Marker:
|
|
1775
|
+
AttachedPolicies: attachedPoliciesListType | None
|
|
1776
|
+
IsTruncated: booleanType | None
|
|
1777
|
+
Marker: responseMarkerType | None
|
|
1778
|
+
|
|
1779
|
+
|
|
1780
|
+
class ListDelegationRequestsRequest(ServiceRequest):
|
|
1781
|
+
OwnerId: ownerIdType | None
|
|
1782
|
+
Marker: markerType | None
|
|
1783
|
+
MaxItems: maxItemsType | None
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
delegationRequestsListType = list[DelegationRequest]
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
class ListDelegationRequestsResponse(TypedDict, total=False):
|
|
1790
|
+
DelegationRequests: delegationRequestsListType | None
|
|
1791
|
+
Marker: markerType | None
|
|
1792
|
+
isTruncated: booleanType | None
|
|
1615
1793
|
|
|
1616
1794
|
|
|
1617
1795
|
class ListEntitiesForPolicyRequest(ServiceRequest):
|
|
1618
1796
|
PolicyArn: arnType
|
|
1619
|
-
EntityFilter:
|
|
1620
|
-
PathPrefix:
|
|
1621
|
-
PolicyUsageFilter:
|
|
1622
|
-
Marker:
|
|
1623
|
-
MaxItems:
|
|
1797
|
+
EntityFilter: EntityType | None
|
|
1798
|
+
PathPrefix: pathType | None
|
|
1799
|
+
PolicyUsageFilter: PolicyUsageType | None
|
|
1800
|
+
Marker: markerType | None
|
|
1801
|
+
MaxItems: maxItemsType | None
|
|
1624
1802
|
|
|
1625
1803
|
|
|
1626
1804
|
class PolicyRole(TypedDict, total=False):
|
|
1627
|
-
RoleName:
|
|
1628
|
-
RoleId:
|
|
1805
|
+
RoleName: roleNameType | None
|
|
1806
|
+
RoleId: idType | None
|
|
1629
1807
|
|
|
1630
1808
|
|
|
1631
|
-
PolicyRoleListType =
|
|
1809
|
+
PolicyRoleListType = list[PolicyRole]
|
|
1632
1810
|
|
|
1633
1811
|
|
|
1634
1812
|
class PolicyUser(TypedDict, total=False):
|
|
1635
|
-
UserName:
|
|
1636
|
-
UserId:
|
|
1813
|
+
UserName: userNameType | None
|
|
1814
|
+
UserId: idType | None
|
|
1637
1815
|
|
|
1638
1816
|
|
|
1639
|
-
PolicyUserListType =
|
|
1817
|
+
PolicyUserListType = list[PolicyUser]
|
|
1640
1818
|
|
|
1641
1819
|
|
|
1642
1820
|
class PolicyGroup(TypedDict, total=False):
|
|
1643
|
-
GroupName:
|
|
1644
|
-
GroupId:
|
|
1821
|
+
GroupName: groupNameType | None
|
|
1822
|
+
GroupId: idType | None
|
|
1645
1823
|
|
|
1646
1824
|
|
|
1647
|
-
PolicyGroupListType =
|
|
1825
|
+
PolicyGroupListType = list[PolicyGroup]
|
|
1648
1826
|
|
|
1649
1827
|
|
|
1650
1828
|
class ListEntitiesForPolicyResponse(TypedDict, total=False):
|
|
1651
|
-
PolicyGroups:
|
|
1652
|
-
PolicyUsers:
|
|
1653
|
-
PolicyRoles:
|
|
1654
|
-
IsTruncated:
|
|
1655
|
-
Marker:
|
|
1829
|
+
PolicyGroups: PolicyGroupListType | None
|
|
1830
|
+
PolicyUsers: PolicyUserListType | None
|
|
1831
|
+
PolicyRoles: PolicyRoleListType | None
|
|
1832
|
+
IsTruncated: booleanType | None
|
|
1833
|
+
Marker: responseMarkerType | None
|
|
1656
1834
|
|
|
1657
1835
|
|
|
1658
1836
|
class ListGroupPoliciesRequest(ServiceRequest):
|
|
1659
1837
|
GroupName: groupNameType
|
|
1660
|
-
Marker:
|
|
1661
|
-
MaxItems:
|
|
1838
|
+
Marker: markerType | None
|
|
1839
|
+
MaxItems: maxItemsType | None
|
|
1662
1840
|
|
|
1663
1841
|
|
|
1664
|
-
policyNameListType =
|
|
1842
|
+
policyNameListType = list[policyNameType]
|
|
1665
1843
|
|
|
1666
1844
|
|
|
1667
1845
|
class ListGroupPoliciesResponse(TypedDict, total=False):
|
|
1668
1846
|
PolicyNames: policyNameListType
|
|
1669
|
-
IsTruncated:
|
|
1670
|
-
Marker:
|
|
1847
|
+
IsTruncated: booleanType | None
|
|
1848
|
+
Marker: responseMarkerType | None
|
|
1671
1849
|
|
|
1672
1850
|
|
|
1673
1851
|
class ListGroupsForUserRequest(ServiceRequest):
|
|
1674
1852
|
UserName: existingUserNameType
|
|
1675
|
-
Marker:
|
|
1676
|
-
MaxItems:
|
|
1853
|
+
Marker: markerType | None
|
|
1854
|
+
MaxItems: maxItemsType | None
|
|
1677
1855
|
|
|
1678
1856
|
|
|
1679
|
-
groupListType =
|
|
1857
|
+
groupListType = list[Group]
|
|
1680
1858
|
|
|
1681
1859
|
|
|
1682
1860
|
class ListGroupsForUserResponse(TypedDict, total=False):
|
|
1683
1861
|
Groups: groupListType
|
|
1684
|
-
IsTruncated:
|
|
1685
|
-
Marker:
|
|
1862
|
+
IsTruncated: booleanType | None
|
|
1863
|
+
Marker: responseMarkerType | None
|
|
1686
1864
|
|
|
1687
1865
|
|
|
1688
1866
|
class ListGroupsRequest(ServiceRequest):
|
|
1689
|
-
PathPrefix:
|
|
1690
|
-
Marker:
|
|
1691
|
-
MaxItems:
|
|
1867
|
+
PathPrefix: pathPrefixType | None
|
|
1868
|
+
Marker: markerType | None
|
|
1869
|
+
MaxItems: maxItemsType | None
|
|
1692
1870
|
|
|
1693
1871
|
|
|
1694
1872
|
class ListGroupsResponse(TypedDict, total=False):
|
|
1695
1873
|
Groups: groupListType
|
|
1696
|
-
IsTruncated:
|
|
1697
|
-
Marker:
|
|
1874
|
+
IsTruncated: booleanType | None
|
|
1875
|
+
Marker: responseMarkerType | None
|
|
1698
1876
|
|
|
1699
1877
|
|
|
1700
1878
|
class ListInstanceProfileTagsRequest(ServiceRequest):
|
|
1701
1879
|
InstanceProfileName: instanceProfileNameType
|
|
1702
|
-
Marker:
|
|
1703
|
-
MaxItems:
|
|
1880
|
+
Marker: markerType | None
|
|
1881
|
+
MaxItems: maxItemsType | None
|
|
1704
1882
|
|
|
1705
1883
|
|
|
1706
1884
|
class ListInstanceProfileTagsResponse(TypedDict, total=False):
|
|
1707
1885
|
Tags: tagListType
|
|
1708
|
-
IsTruncated:
|
|
1709
|
-
Marker:
|
|
1886
|
+
IsTruncated: booleanType | None
|
|
1887
|
+
Marker: responseMarkerType | None
|
|
1710
1888
|
|
|
1711
1889
|
|
|
1712
1890
|
class ListInstanceProfilesForRoleRequest(ServiceRequest):
|
|
1713
1891
|
RoleName: roleNameType
|
|
1714
|
-
Marker:
|
|
1715
|
-
MaxItems:
|
|
1892
|
+
Marker: markerType | None
|
|
1893
|
+
MaxItems: maxItemsType | None
|
|
1716
1894
|
|
|
1717
1895
|
|
|
1718
1896
|
class ListInstanceProfilesForRoleResponse(TypedDict, total=False):
|
|
1719
1897
|
InstanceProfiles: instanceProfileListType
|
|
1720
|
-
IsTruncated:
|
|
1721
|
-
Marker:
|
|
1898
|
+
IsTruncated: booleanType | None
|
|
1899
|
+
Marker: responseMarkerType | None
|
|
1722
1900
|
|
|
1723
1901
|
|
|
1724
1902
|
class ListInstanceProfilesRequest(ServiceRequest):
|
|
1725
|
-
PathPrefix:
|
|
1726
|
-
Marker:
|
|
1727
|
-
MaxItems:
|
|
1903
|
+
PathPrefix: pathPrefixType | None
|
|
1904
|
+
Marker: markerType | None
|
|
1905
|
+
MaxItems: maxItemsType | None
|
|
1728
1906
|
|
|
1729
1907
|
|
|
1730
1908
|
class ListInstanceProfilesResponse(TypedDict, total=False):
|
|
1731
1909
|
InstanceProfiles: instanceProfileListType
|
|
1732
|
-
IsTruncated:
|
|
1733
|
-
Marker:
|
|
1910
|
+
IsTruncated: booleanType | None
|
|
1911
|
+
Marker: responseMarkerType | None
|
|
1734
1912
|
|
|
1735
1913
|
|
|
1736
1914
|
class ListMFADeviceTagsRequest(ServiceRequest):
|
|
1737
1915
|
SerialNumber: serialNumberType
|
|
1738
|
-
Marker:
|
|
1739
|
-
MaxItems:
|
|
1916
|
+
Marker: markerType | None
|
|
1917
|
+
MaxItems: maxItemsType | None
|
|
1740
1918
|
|
|
1741
1919
|
|
|
1742
1920
|
class ListMFADeviceTagsResponse(TypedDict, total=False):
|
|
1743
1921
|
Tags: tagListType
|
|
1744
|
-
IsTruncated:
|
|
1745
|
-
Marker:
|
|
1922
|
+
IsTruncated: booleanType | None
|
|
1923
|
+
Marker: responseMarkerType | None
|
|
1746
1924
|
|
|
1747
1925
|
|
|
1748
1926
|
class ListMFADevicesRequest(ServiceRequest):
|
|
1749
|
-
UserName:
|
|
1750
|
-
Marker:
|
|
1751
|
-
MaxItems:
|
|
1927
|
+
UserName: existingUserNameType | None
|
|
1928
|
+
Marker: markerType | None
|
|
1929
|
+
MaxItems: maxItemsType | None
|
|
1752
1930
|
|
|
1753
1931
|
|
|
1754
1932
|
class MFADevice(TypedDict, total=False):
|
|
@@ -1757,25 +1935,25 @@ class MFADevice(TypedDict, total=False):
|
|
|
1757
1935
|
EnableDate: dateType
|
|
1758
1936
|
|
|
1759
1937
|
|
|
1760
|
-
mfaDeviceListType =
|
|
1938
|
+
mfaDeviceListType = list[MFADevice]
|
|
1761
1939
|
|
|
1762
1940
|
|
|
1763
1941
|
class ListMFADevicesResponse(TypedDict, total=False):
|
|
1764
1942
|
MFADevices: mfaDeviceListType
|
|
1765
|
-
IsTruncated:
|
|
1766
|
-
Marker:
|
|
1943
|
+
IsTruncated: booleanType | None
|
|
1944
|
+
Marker: responseMarkerType | None
|
|
1767
1945
|
|
|
1768
1946
|
|
|
1769
1947
|
class ListOpenIDConnectProviderTagsRequest(ServiceRequest):
|
|
1770
1948
|
OpenIDConnectProviderArn: arnType
|
|
1771
|
-
Marker:
|
|
1772
|
-
MaxItems:
|
|
1949
|
+
Marker: markerType | None
|
|
1950
|
+
MaxItems: maxItemsType | None
|
|
1773
1951
|
|
|
1774
1952
|
|
|
1775
1953
|
class ListOpenIDConnectProviderTagsResponse(TypedDict, total=False):
|
|
1776
1954
|
Tags: tagListType
|
|
1777
|
-
IsTruncated:
|
|
1778
|
-
Marker:
|
|
1955
|
+
IsTruncated: booleanType | None
|
|
1956
|
+
Marker: responseMarkerType | None
|
|
1779
1957
|
|
|
1780
1958
|
|
|
1781
1959
|
class ListOpenIDConnectProvidersRequest(ServiceRequest):
|
|
@@ -1783,14 +1961,14 @@ class ListOpenIDConnectProvidersRequest(ServiceRequest):
|
|
|
1783
1961
|
|
|
1784
1962
|
|
|
1785
1963
|
class OpenIDConnectProviderListEntry(TypedDict, total=False):
|
|
1786
|
-
Arn:
|
|
1964
|
+
Arn: arnType | None
|
|
1787
1965
|
|
|
1788
1966
|
|
|
1789
|
-
OpenIDConnectProviderListType =
|
|
1967
|
+
OpenIDConnectProviderListType = list[OpenIDConnectProviderListEntry]
|
|
1790
1968
|
|
|
1791
1969
|
|
|
1792
1970
|
class ListOpenIDConnectProvidersResponse(TypedDict, total=False):
|
|
1793
|
-
OpenIDConnectProviderList:
|
|
1971
|
+
OpenIDConnectProviderList: OpenIDConnectProviderListType | None
|
|
1794
1972
|
|
|
1795
1973
|
|
|
1796
1974
|
class ListOrganizationsFeaturesRequest(ServiceRequest):
|
|
@@ -1798,132 +1976,132 @@ class ListOrganizationsFeaturesRequest(ServiceRequest):
|
|
|
1798
1976
|
|
|
1799
1977
|
|
|
1800
1978
|
class ListOrganizationsFeaturesResponse(TypedDict, total=False):
|
|
1801
|
-
OrganizationId:
|
|
1802
|
-
EnabledFeatures:
|
|
1979
|
+
OrganizationId: OrganizationIdType | None
|
|
1980
|
+
EnabledFeatures: FeaturesListType | None
|
|
1803
1981
|
|
|
1804
1982
|
|
|
1805
1983
|
class PolicyGrantingServiceAccess(TypedDict, total=False):
|
|
1806
1984
|
PolicyName: policyNameType
|
|
1807
1985
|
PolicyType: policyType
|
|
1808
|
-
PolicyArn:
|
|
1809
|
-
EntityType:
|
|
1810
|
-
EntityName:
|
|
1986
|
+
PolicyArn: arnType | None
|
|
1987
|
+
EntityType: policyOwnerEntityType | None
|
|
1988
|
+
EntityName: entityNameType | None
|
|
1811
1989
|
|
|
1812
1990
|
|
|
1813
|
-
policyGrantingServiceAccessListType =
|
|
1991
|
+
policyGrantingServiceAccessListType = list[PolicyGrantingServiceAccess]
|
|
1814
1992
|
|
|
1815
1993
|
|
|
1816
1994
|
class ListPoliciesGrantingServiceAccessEntry(TypedDict, total=False):
|
|
1817
|
-
ServiceNamespace:
|
|
1818
|
-
Policies:
|
|
1995
|
+
ServiceNamespace: serviceNamespaceType | None
|
|
1996
|
+
Policies: policyGrantingServiceAccessListType | None
|
|
1819
1997
|
|
|
1820
1998
|
|
|
1821
|
-
serviceNamespaceListType =
|
|
1999
|
+
serviceNamespaceListType = list[serviceNamespaceType]
|
|
1822
2000
|
|
|
1823
2001
|
|
|
1824
2002
|
class ListPoliciesGrantingServiceAccessRequest(ServiceRequest):
|
|
1825
|
-
Marker:
|
|
2003
|
+
Marker: markerType | None
|
|
1826
2004
|
Arn: arnType
|
|
1827
2005
|
ServiceNamespaces: serviceNamespaceListType
|
|
1828
2006
|
|
|
1829
2007
|
|
|
1830
|
-
listPolicyGrantingServiceAccessResponseListType =
|
|
2008
|
+
listPolicyGrantingServiceAccessResponseListType = list[ListPoliciesGrantingServiceAccessEntry]
|
|
1831
2009
|
|
|
1832
2010
|
|
|
1833
2011
|
class ListPoliciesGrantingServiceAccessResponse(TypedDict, total=False):
|
|
1834
2012
|
PoliciesGrantingServiceAccess: listPolicyGrantingServiceAccessResponseListType
|
|
1835
|
-
IsTruncated:
|
|
1836
|
-
Marker:
|
|
2013
|
+
IsTruncated: booleanType | None
|
|
2014
|
+
Marker: responseMarkerType | None
|
|
1837
2015
|
|
|
1838
2016
|
|
|
1839
2017
|
class ListPoliciesRequest(ServiceRequest):
|
|
1840
|
-
Scope:
|
|
1841
|
-
OnlyAttached:
|
|
1842
|
-
PathPrefix:
|
|
1843
|
-
PolicyUsageFilter:
|
|
1844
|
-
Marker:
|
|
1845
|
-
MaxItems:
|
|
2018
|
+
Scope: policyScopeType | None
|
|
2019
|
+
OnlyAttached: booleanType | None
|
|
2020
|
+
PathPrefix: policyPathType | None
|
|
2021
|
+
PolicyUsageFilter: PolicyUsageType | None
|
|
2022
|
+
Marker: markerType | None
|
|
2023
|
+
MaxItems: maxItemsType | None
|
|
1846
2024
|
|
|
1847
2025
|
|
|
1848
|
-
policyListType =
|
|
2026
|
+
policyListType = list[Policy]
|
|
1849
2027
|
|
|
1850
2028
|
|
|
1851
2029
|
class ListPoliciesResponse(TypedDict, total=False):
|
|
1852
|
-
Policies:
|
|
1853
|
-
IsTruncated:
|
|
1854
|
-
Marker:
|
|
2030
|
+
Policies: policyListType | None
|
|
2031
|
+
IsTruncated: booleanType | None
|
|
2032
|
+
Marker: responseMarkerType | None
|
|
1855
2033
|
|
|
1856
2034
|
|
|
1857
2035
|
class ListPolicyTagsRequest(ServiceRequest):
|
|
1858
2036
|
PolicyArn: arnType
|
|
1859
|
-
Marker:
|
|
1860
|
-
MaxItems:
|
|
2037
|
+
Marker: markerType | None
|
|
2038
|
+
MaxItems: maxItemsType | None
|
|
1861
2039
|
|
|
1862
2040
|
|
|
1863
2041
|
class ListPolicyTagsResponse(TypedDict, total=False):
|
|
1864
2042
|
Tags: tagListType
|
|
1865
|
-
IsTruncated:
|
|
1866
|
-
Marker:
|
|
2043
|
+
IsTruncated: booleanType | None
|
|
2044
|
+
Marker: responseMarkerType | None
|
|
1867
2045
|
|
|
1868
2046
|
|
|
1869
2047
|
class ListPolicyVersionsRequest(ServiceRequest):
|
|
1870
2048
|
PolicyArn: arnType
|
|
1871
|
-
Marker:
|
|
1872
|
-
MaxItems:
|
|
2049
|
+
Marker: markerType | None
|
|
2050
|
+
MaxItems: maxItemsType | None
|
|
1873
2051
|
|
|
1874
2052
|
|
|
1875
2053
|
class ListPolicyVersionsResponse(TypedDict, total=False):
|
|
1876
|
-
Versions:
|
|
1877
|
-
IsTruncated:
|
|
1878
|
-
Marker:
|
|
2054
|
+
Versions: policyDocumentVersionListType | None
|
|
2055
|
+
IsTruncated: booleanType | None
|
|
2056
|
+
Marker: responseMarkerType | None
|
|
1879
2057
|
|
|
1880
2058
|
|
|
1881
2059
|
class ListRolePoliciesRequest(ServiceRequest):
|
|
1882
2060
|
RoleName: roleNameType
|
|
1883
|
-
Marker:
|
|
1884
|
-
MaxItems:
|
|
2061
|
+
Marker: markerType | None
|
|
2062
|
+
MaxItems: maxItemsType | None
|
|
1885
2063
|
|
|
1886
2064
|
|
|
1887
2065
|
class ListRolePoliciesResponse(TypedDict, total=False):
|
|
1888
2066
|
PolicyNames: policyNameListType
|
|
1889
|
-
IsTruncated:
|
|
1890
|
-
Marker:
|
|
2067
|
+
IsTruncated: booleanType | None
|
|
2068
|
+
Marker: responseMarkerType | None
|
|
1891
2069
|
|
|
1892
2070
|
|
|
1893
2071
|
class ListRoleTagsRequest(ServiceRequest):
|
|
1894
2072
|
RoleName: roleNameType
|
|
1895
|
-
Marker:
|
|
1896
|
-
MaxItems:
|
|
2073
|
+
Marker: markerType | None
|
|
2074
|
+
MaxItems: maxItemsType | None
|
|
1897
2075
|
|
|
1898
2076
|
|
|
1899
2077
|
class ListRoleTagsResponse(TypedDict, total=False):
|
|
1900
2078
|
Tags: tagListType
|
|
1901
|
-
IsTruncated:
|
|
1902
|
-
Marker:
|
|
2079
|
+
IsTruncated: booleanType | None
|
|
2080
|
+
Marker: responseMarkerType | None
|
|
1903
2081
|
|
|
1904
2082
|
|
|
1905
2083
|
class ListRolesRequest(ServiceRequest):
|
|
1906
|
-
PathPrefix:
|
|
1907
|
-
Marker:
|
|
1908
|
-
MaxItems:
|
|
2084
|
+
PathPrefix: pathPrefixType | None
|
|
2085
|
+
Marker: markerType | None
|
|
2086
|
+
MaxItems: maxItemsType | None
|
|
1909
2087
|
|
|
1910
2088
|
|
|
1911
2089
|
class ListRolesResponse(TypedDict, total=False):
|
|
1912
2090
|
Roles: roleListType
|
|
1913
|
-
IsTruncated:
|
|
1914
|
-
Marker:
|
|
2091
|
+
IsTruncated: booleanType | None
|
|
2092
|
+
Marker: responseMarkerType | None
|
|
1915
2093
|
|
|
1916
2094
|
|
|
1917
2095
|
class ListSAMLProviderTagsRequest(ServiceRequest):
|
|
1918
2096
|
SAMLProviderArn: arnType
|
|
1919
|
-
Marker:
|
|
1920
|
-
MaxItems:
|
|
2097
|
+
Marker: markerType | None
|
|
2098
|
+
MaxItems: maxItemsType | None
|
|
1921
2099
|
|
|
1922
2100
|
|
|
1923
2101
|
class ListSAMLProviderTagsResponse(TypedDict, total=False):
|
|
1924
2102
|
Tags: tagListType
|
|
1925
|
-
IsTruncated:
|
|
1926
|
-
Marker:
|
|
2103
|
+
IsTruncated: booleanType | None
|
|
2104
|
+
Marker: responseMarkerType | None
|
|
1927
2105
|
|
|
1928
2106
|
|
|
1929
2107
|
class ListSAMLProvidersRequest(ServiceRequest):
|
|
@@ -1931,22 +2109,22 @@ class ListSAMLProvidersRequest(ServiceRequest):
|
|
|
1931
2109
|
|
|
1932
2110
|
|
|
1933
2111
|
class SAMLProviderListEntry(TypedDict, total=False):
|
|
1934
|
-
Arn:
|
|
1935
|
-
ValidUntil:
|
|
1936
|
-
CreateDate:
|
|
2112
|
+
Arn: arnType | None
|
|
2113
|
+
ValidUntil: dateType | None
|
|
2114
|
+
CreateDate: dateType | None
|
|
1937
2115
|
|
|
1938
2116
|
|
|
1939
|
-
SAMLProviderListType =
|
|
2117
|
+
SAMLProviderListType = list[SAMLProviderListEntry]
|
|
1940
2118
|
|
|
1941
2119
|
|
|
1942
2120
|
class ListSAMLProvidersResponse(TypedDict, total=False):
|
|
1943
|
-
SAMLProviderList:
|
|
2121
|
+
SAMLProviderList: SAMLProviderListType | None
|
|
1944
2122
|
|
|
1945
2123
|
|
|
1946
2124
|
class ListSSHPublicKeysRequest(ServiceRequest):
|
|
1947
|
-
UserName:
|
|
1948
|
-
Marker:
|
|
1949
|
-
MaxItems:
|
|
2125
|
+
UserName: userNameType | None
|
|
2126
|
+
Marker: markerType | None
|
|
2127
|
+
MaxItems: maxItemsType | None
|
|
1950
2128
|
|
|
1951
2129
|
|
|
1952
2130
|
class SSHPublicKeyMetadata(TypedDict, total=False):
|
|
@@ -1956,74 +2134,74 @@ class SSHPublicKeyMetadata(TypedDict, total=False):
|
|
|
1956
2134
|
UploadDate: dateType
|
|
1957
2135
|
|
|
1958
2136
|
|
|
1959
|
-
SSHPublicKeyListType =
|
|
2137
|
+
SSHPublicKeyListType = list[SSHPublicKeyMetadata]
|
|
1960
2138
|
|
|
1961
2139
|
|
|
1962
2140
|
class ListSSHPublicKeysResponse(TypedDict, total=False):
|
|
1963
|
-
SSHPublicKeys:
|
|
1964
|
-
IsTruncated:
|
|
1965
|
-
Marker:
|
|
2141
|
+
SSHPublicKeys: SSHPublicKeyListType | None
|
|
2142
|
+
IsTruncated: booleanType | None
|
|
2143
|
+
Marker: responseMarkerType | None
|
|
1966
2144
|
|
|
1967
2145
|
|
|
1968
2146
|
class ListServerCertificateTagsRequest(ServiceRequest):
|
|
1969
2147
|
ServerCertificateName: serverCertificateNameType
|
|
1970
|
-
Marker:
|
|
1971
|
-
MaxItems:
|
|
2148
|
+
Marker: markerType | None
|
|
2149
|
+
MaxItems: maxItemsType | None
|
|
1972
2150
|
|
|
1973
2151
|
|
|
1974
2152
|
class ListServerCertificateTagsResponse(TypedDict, total=False):
|
|
1975
2153
|
Tags: tagListType
|
|
1976
|
-
IsTruncated:
|
|
1977
|
-
Marker:
|
|
2154
|
+
IsTruncated: booleanType | None
|
|
2155
|
+
Marker: responseMarkerType | None
|
|
1978
2156
|
|
|
1979
2157
|
|
|
1980
2158
|
class ListServerCertificatesRequest(ServiceRequest):
|
|
1981
|
-
PathPrefix:
|
|
1982
|
-
Marker:
|
|
1983
|
-
MaxItems:
|
|
2159
|
+
PathPrefix: pathPrefixType | None
|
|
2160
|
+
Marker: markerType | None
|
|
2161
|
+
MaxItems: maxItemsType | None
|
|
1984
2162
|
|
|
1985
2163
|
|
|
1986
|
-
serverCertificateMetadataListType =
|
|
2164
|
+
serverCertificateMetadataListType = list[ServerCertificateMetadata]
|
|
1987
2165
|
|
|
1988
2166
|
|
|
1989
2167
|
class ListServerCertificatesResponse(TypedDict, total=False):
|
|
1990
2168
|
ServerCertificateMetadataList: serverCertificateMetadataListType
|
|
1991
|
-
IsTruncated:
|
|
1992
|
-
Marker:
|
|
2169
|
+
IsTruncated: booleanType | None
|
|
2170
|
+
Marker: responseMarkerType | None
|
|
1993
2171
|
|
|
1994
2172
|
|
|
1995
2173
|
class ListServiceSpecificCredentialsRequest(ServiceRequest):
|
|
1996
|
-
UserName:
|
|
1997
|
-
ServiceName:
|
|
1998
|
-
AllUsers:
|
|
1999
|
-
Marker:
|
|
2000
|
-
MaxItems:
|
|
2174
|
+
UserName: userNameType | None
|
|
2175
|
+
ServiceName: serviceName | None
|
|
2176
|
+
AllUsers: allUsers | None
|
|
2177
|
+
Marker: markerType | None
|
|
2178
|
+
MaxItems: maxItemsType | None
|
|
2001
2179
|
|
|
2002
2180
|
|
|
2003
2181
|
class ServiceSpecificCredentialMetadata(TypedDict, total=False):
|
|
2004
2182
|
UserName: userNameType
|
|
2005
2183
|
Status: statusType
|
|
2006
|
-
ServiceUserName:
|
|
2007
|
-
ServiceCredentialAlias:
|
|
2184
|
+
ServiceUserName: serviceUserName | None
|
|
2185
|
+
ServiceCredentialAlias: serviceCredentialAlias | None
|
|
2008
2186
|
CreateDate: dateType
|
|
2009
|
-
ExpirationDate:
|
|
2187
|
+
ExpirationDate: dateType | None
|
|
2010
2188
|
ServiceSpecificCredentialId: serviceSpecificCredentialId
|
|
2011
2189
|
ServiceName: serviceName
|
|
2012
2190
|
|
|
2013
2191
|
|
|
2014
|
-
ServiceSpecificCredentialsListType =
|
|
2192
|
+
ServiceSpecificCredentialsListType = list[ServiceSpecificCredentialMetadata]
|
|
2015
2193
|
|
|
2016
2194
|
|
|
2017
2195
|
class ListServiceSpecificCredentialsResponse(TypedDict, total=False):
|
|
2018
|
-
ServiceSpecificCredentials:
|
|
2019
|
-
Marker:
|
|
2020
|
-
IsTruncated:
|
|
2196
|
+
ServiceSpecificCredentials: ServiceSpecificCredentialsListType | None
|
|
2197
|
+
Marker: responseMarkerType | None
|
|
2198
|
+
IsTruncated: booleanType | None
|
|
2021
2199
|
|
|
2022
2200
|
|
|
2023
2201
|
class ListSigningCertificatesRequest(ServiceRequest):
|
|
2024
|
-
UserName:
|
|
2025
|
-
Marker:
|
|
2026
|
-
MaxItems:
|
|
2202
|
+
UserName: existingUserNameType | None
|
|
2203
|
+
Marker: markerType | None
|
|
2204
|
+
MaxItems: maxItemsType | None
|
|
2027
2205
|
|
|
2028
2206
|
|
|
2029
2207
|
class SigningCertificate(TypedDict, total=False):
|
|
@@ -2031,67 +2209,67 @@ class SigningCertificate(TypedDict, total=False):
|
|
|
2031
2209
|
CertificateId: certificateIdType
|
|
2032
2210
|
CertificateBody: certificateBodyType
|
|
2033
2211
|
Status: statusType
|
|
2034
|
-
UploadDate:
|
|
2212
|
+
UploadDate: dateType | None
|
|
2035
2213
|
|
|
2036
2214
|
|
|
2037
|
-
certificateListType =
|
|
2215
|
+
certificateListType = list[SigningCertificate]
|
|
2038
2216
|
|
|
2039
2217
|
|
|
2040
2218
|
class ListSigningCertificatesResponse(TypedDict, total=False):
|
|
2041
2219
|
Certificates: certificateListType
|
|
2042
|
-
IsTruncated:
|
|
2043
|
-
Marker:
|
|
2220
|
+
IsTruncated: booleanType | None
|
|
2221
|
+
Marker: responseMarkerType | None
|
|
2044
2222
|
|
|
2045
2223
|
|
|
2046
2224
|
class ListUserPoliciesRequest(ServiceRequest):
|
|
2047
2225
|
UserName: existingUserNameType
|
|
2048
|
-
Marker:
|
|
2049
|
-
MaxItems:
|
|
2226
|
+
Marker: markerType | None
|
|
2227
|
+
MaxItems: maxItemsType | None
|
|
2050
2228
|
|
|
2051
2229
|
|
|
2052
2230
|
class ListUserPoliciesResponse(TypedDict, total=False):
|
|
2053
2231
|
PolicyNames: policyNameListType
|
|
2054
|
-
IsTruncated:
|
|
2055
|
-
Marker:
|
|
2232
|
+
IsTruncated: booleanType | None
|
|
2233
|
+
Marker: responseMarkerType | None
|
|
2056
2234
|
|
|
2057
2235
|
|
|
2058
2236
|
class ListUserTagsRequest(ServiceRequest):
|
|
2059
2237
|
UserName: existingUserNameType
|
|
2060
|
-
Marker:
|
|
2061
|
-
MaxItems:
|
|
2238
|
+
Marker: markerType | None
|
|
2239
|
+
MaxItems: maxItemsType | None
|
|
2062
2240
|
|
|
2063
2241
|
|
|
2064
2242
|
class ListUserTagsResponse(TypedDict, total=False):
|
|
2065
2243
|
Tags: tagListType
|
|
2066
|
-
IsTruncated:
|
|
2067
|
-
Marker:
|
|
2244
|
+
IsTruncated: booleanType | None
|
|
2245
|
+
Marker: responseMarkerType | None
|
|
2068
2246
|
|
|
2069
2247
|
|
|
2070
2248
|
class ListUsersRequest(ServiceRequest):
|
|
2071
|
-
PathPrefix:
|
|
2072
|
-
Marker:
|
|
2073
|
-
MaxItems:
|
|
2249
|
+
PathPrefix: pathPrefixType | None
|
|
2250
|
+
Marker: markerType | None
|
|
2251
|
+
MaxItems: maxItemsType | None
|
|
2074
2252
|
|
|
2075
2253
|
|
|
2076
2254
|
class ListUsersResponse(TypedDict, total=False):
|
|
2077
2255
|
Users: userListType
|
|
2078
|
-
IsTruncated:
|
|
2079
|
-
Marker:
|
|
2256
|
+
IsTruncated: booleanType | None
|
|
2257
|
+
Marker: responseMarkerType | None
|
|
2080
2258
|
|
|
2081
2259
|
|
|
2082
2260
|
class ListVirtualMFADevicesRequest(ServiceRequest):
|
|
2083
|
-
AssignmentStatus:
|
|
2084
|
-
Marker:
|
|
2085
|
-
MaxItems:
|
|
2261
|
+
AssignmentStatus: assignmentStatusType | None
|
|
2262
|
+
Marker: markerType | None
|
|
2263
|
+
MaxItems: maxItemsType | None
|
|
2086
2264
|
|
|
2087
2265
|
|
|
2088
|
-
virtualMFADeviceListType =
|
|
2266
|
+
virtualMFADeviceListType = list[VirtualMFADevice]
|
|
2089
2267
|
|
|
2090
2268
|
|
|
2091
2269
|
class ListVirtualMFADevicesResponse(TypedDict, total=False):
|
|
2092
2270
|
VirtualMFADevices: virtualMFADeviceListType
|
|
2093
|
-
IsTruncated:
|
|
2094
|
-
Marker:
|
|
2271
|
+
IsTruncated: booleanType | None
|
|
2272
|
+
Marker: responseMarkerType | None
|
|
2095
2273
|
|
|
2096
2274
|
|
|
2097
2275
|
class PutGroupPolicyRequest(ServiceRequest):
|
|
@@ -2122,6 +2300,11 @@ class PutUserPolicyRequest(ServiceRequest):
|
|
|
2122
2300
|
PolicyDocument: policyDocumentType
|
|
2123
2301
|
|
|
2124
2302
|
|
|
2303
|
+
class RejectDelegationRequestRequest(ServiceRequest):
|
|
2304
|
+
DelegationRequestId: delegationRequestIdType
|
|
2305
|
+
Notes: notesType | None
|
|
2306
|
+
|
|
2307
|
+
|
|
2125
2308
|
class RemoveClientIDFromOpenIDConnectProviderRequest(ServiceRequest):
|
|
2126
2309
|
OpenIDConnectProviderArn: arnType
|
|
2127
2310
|
ClientID: clientIDType
|
|
@@ -2138,15 +2321,15 @@ class RemoveUserFromGroupRequest(ServiceRequest):
|
|
|
2138
2321
|
|
|
2139
2322
|
|
|
2140
2323
|
class ResetServiceSpecificCredentialRequest(ServiceRequest):
|
|
2141
|
-
UserName:
|
|
2324
|
+
UserName: userNameType | None
|
|
2142
2325
|
ServiceSpecificCredentialId: serviceSpecificCredentialId
|
|
2143
2326
|
|
|
2144
2327
|
|
|
2145
2328
|
class ResetServiceSpecificCredentialResponse(TypedDict, total=False):
|
|
2146
|
-
ServiceSpecificCredential:
|
|
2329
|
+
ServiceSpecificCredential: ServiceSpecificCredential | None
|
|
2147
2330
|
|
|
2148
2331
|
|
|
2149
|
-
ResourceNameListType =
|
|
2332
|
+
ResourceNameListType = list[ResourceNameType]
|
|
2150
2333
|
|
|
2151
2334
|
|
|
2152
2335
|
class ResyncMFADeviceRequest(ServiceRequest):
|
|
@@ -2156,6 +2339,10 @@ class ResyncMFADeviceRequest(ServiceRequest):
|
|
|
2156
2339
|
AuthenticationCode2: authenticationCodeType
|
|
2157
2340
|
|
|
2158
2341
|
|
|
2342
|
+
class SendDelegationTokenRequest(ServiceRequest):
|
|
2343
|
+
DelegationRequestId: delegationRequestIdType
|
|
2344
|
+
|
|
2345
|
+
|
|
2159
2346
|
class SetDefaultPolicyVersionRequest(ServiceRequest):
|
|
2160
2347
|
PolicyArn: arnType
|
|
2161
2348
|
VersionId: policyVersionIdType
|
|
@@ -2167,37 +2354,37 @@ class SetSecurityTokenServicePreferencesRequest(ServiceRequest):
|
|
|
2167
2354
|
|
|
2168
2355
|
class SimulateCustomPolicyRequest(ServiceRequest):
|
|
2169
2356
|
PolicyInputList: SimulationPolicyListType
|
|
2170
|
-
PermissionsBoundaryPolicyInputList:
|
|
2357
|
+
PermissionsBoundaryPolicyInputList: SimulationPolicyListType | None
|
|
2171
2358
|
ActionNames: ActionNameListType
|
|
2172
|
-
ResourceArns:
|
|
2173
|
-
ResourcePolicy:
|
|
2174
|
-
ResourceOwner:
|
|
2175
|
-
CallerArn:
|
|
2176
|
-
ContextEntries:
|
|
2177
|
-
ResourceHandlingOption:
|
|
2178
|
-
MaxItems:
|
|
2179
|
-
Marker:
|
|
2359
|
+
ResourceArns: ResourceNameListType | None
|
|
2360
|
+
ResourcePolicy: policyDocumentType | None
|
|
2361
|
+
ResourceOwner: ResourceNameType | None
|
|
2362
|
+
CallerArn: ResourceNameType | None
|
|
2363
|
+
ContextEntries: ContextEntryListType | None
|
|
2364
|
+
ResourceHandlingOption: ResourceHandlingOptionType | None
|
|
2365
|
+
MaxItems: maxItemsType | None
|
|
2366
|
+
Marker: markerType | None
|
|
2180
2367
|
|
|
2181
2368
|
|
|
2182
2369
|
class SimulatePolicyResponse(TypedDict, total=False):
|
|
2183
|
-
EvaluationResults:
|
|
2184
|
-
IsTruncated:
|
|
2185
|
-
Marker:
|
|
2370
|
+
EvaluationResults: EvaluationResultsListType | None
|
|
2371
|
+
IsTruncated: booleanType | None
|
|
2372
|
+
Marker: responseMarkerType | None
|
|
2186
2373
|
|
|
2187
2374
|
|
|
2188
2375
|
class SimulatePrincipalPolicyRequest(ServiceRequest):
|
|
2189
2376
|
PolicySourceArn: arnType
|
|
2190
|
-
PolicyInputList:
|
|
2191
|
-
PermissionsBoundaryPolicyInputList:
|
|
2377
|
+
PolicyInputList: SimulationPolicyListType | None
|
|
2378
|
+
PermissionsBoundaryPolicyInputList: SimulationPolicyListType | None
|
|
2192
2379
|
ActionNames: ActionNameListType
|
|
2193
|
-
ResourceArns:
|
|
2194
|
-
ResourcePolicy:
|
|
2195
|
-
ResourceOwner:
|
|
2196
|
-
CallerArn:
|
|
2197
|
-
ContextEntries:
|
|
2198
|
-
ResourceHandlingOption:
|
|
2199
|
-
MaxItems:
|
|
2200
|
-
Marker:
|
|
2380
|
+
ResourceArns: ResourceNameListType | None
|
|
2381
|
+
ResourcePolicy: policyDocumentType | None
|
|
2382
|
+
ResourceOwner: ResourceNameType | None
|
|
2383
|
+
CallerArn: ResourceNameType | None
|
|
2384
|
+
ContextEntries: ContextEntryListType | None
|
|
2385
|
+
ResourceHandlingOption: ResourceHandlingOptionType | None
|
|
2386
|
+
MaxItems: maxItemsType | None
|
|
2387
|
+
Marker: markerType | None
|
|
2201
2388
|
|
|
2202
2389
|
|
|
2203
2390
|
class TagInstanceProfileRequest(ServiceRequest):
|
|
@@ -2240,7 +2427,7 @@ class TagUserRequest(ServiceRequest):
|
|
|
2240
2427
|
Tags: tagListType
|
|
2241
2428
|
|
|
2242
2429
|
|
|
2243
|
-
tagKeyListType =
|
|
2430
|
+
tagKeyListType = list[tagKeyType]
|
|
2244
2431
|
|
|
2245
2432
|
|
|
2246
2433
|
class UntagInstanceProfileRequest(ServiceRequest):
|
|
@@ -2284,21 +2471,21 @@ class UntagUserRequest(ServiceRequest):
|
|
|
2284
2471
|
|
|
2285
2472
|
|
|
2286
2473
|
class UpdateAccessKeyRequest(ServiceRequest):
|
|
2287
|
-
UserName:
|
|
2474
|
+
UserName: existingUserNameType | None
|
|
2288
2475
|
AccessKeyId: accessKeyIdType
|
|
2289
2476
|
Status: statusType
|
|
2290
2477
|
|
|
2291
2478
|
|
|
2292
2479
|
class UpdateAccountPasswordPolicyRequest(ServiceRequest):
|
|
2293
|
-
MinimumPasswordLength:
|
|
2294
|
-
RequireSymbols:
|
|
2295
|
-
RequireNumbers:
|
|
2296
|
-
RequireUppercaseCharacters:
|
|
2297
|
-
RequireLowercaseCharacters:
|
|
2298
|
-
AllowUsersToChangePassword:
|
|
2299
|
-
MaxPasswordAge:
|
|
2300
|
-
PasswordReusePrevention:
|
|
2301
|
-
HardExpiry:
|
|
2480
|
+
MinimumPasswordLength: minimumPasswordLengthType | None
|
|
2481
|
+
RequireSymbols: booleanType | None
|
|
2482
|
+
RequireNumbers: booleanType | None
|
|
2483
|
+
RequireUppercaseCharacters: booleanType | None
|
|
2484
|
+
RequireLowercaseCharacters: booleanType | None
|
|
2485
|
+
AllowUsersToChangePassword: booleanType | None
|
|
2486
|
+
MaxPasswordAge: maxPasswordAgeType | None
|
|
2487
|
+
PasswordReusePrevention: passwordReusePreventionType | None
|
|
2488
|
+
HardExpiry: booleanObjectType | None
|
|
2302
2489
|
|
|
2303
2490
|
|
|
2304
2491
|
class UpdateAssumeRolePolicyRequest(ServiceRequest):
|
|
@@ -2306,16 +2493,21 @@ class UpdateAssumeRolePolicyRequest(ServiceRequest):
|
|
|
2306
2493
|
PolicyDocument: policyDocumentType
|
|
2307
2494
|
|
|
2308
2495
|
|
|
2496
|
+
class UpdateDelegationRequestRequest(ServiceRequest):
|
|
2497
|
+
DelegationRequestId: delegationRequestIdType
|
|
2498
|
+
Notes: notesType | None
|
|
2499
|
+
|
|
2500
|
+
|
|
2309
2501
|
class UpdateGroupRequest(ServiceRequest):
|
|
2310
2502
|
GroupName: groupNameType
|
|
2311
|
-
NewPath:
|
|
2312
|
-
NewGroupName:
|
|
2503
|
+
NewPath: pathType | None
|
|
2504
|
+
NewGroupName: groupNameType | None
|
|
2313
2505
|
|
|
2314
2506
|
|
|
2315
2507
|
class UpdateLoginProfileRequest(ServiceRequest):
|
|
2316
2508
|
UserName: userNameType
|
|
2317
|
-
Password:
|
|
2318
|
-
PasswordResetRequired:
|
|
2509
|
+
Password: passwordType | None
|
|
2510
|
+
PasswordResetRequired: booleanObjectType | None
|
|
2319
2511
|
|
|
2320
2512
|
|
|
2321
2513
|
class UpdateOpenIDConnectProviderThumbprintRequest(ServiceRequest):
|
|
@@ -2329,13 +2521,13 @@ class UpdateRoleDescriptionRequest(ServiceRequest):
|
|
|
2329
2521
|
|
|
2330
2522
|
|
|
2331
2523
|
class UpdateRoleDescriptionResponse(TypedDict, total=False):
|
|
2332
|
-
Role:
|
|
2524
|
+
Role: Role | None
|
|
2333
2525
|
|
|
2334
2526
|
|
|
2335
2527
|
class UpdateRoleRequest(ServiceRequest):
|
|
2336
2528
|
RoleName: roleNameType
|
|
2337
|
-
Description:
|
|
2338
|
-
MaxSessionDuration:
|
|
2529
|
+
Description: roleDescriptionType | None
|
|
2530
|
+
MaxSessionDuration: roleMaxSessionDurationType | None
|
|
2339
2531
|
|
|
2340
2532
|
|
|
2341
2533
|
class UpdateRoleResponse(TypedDict, total=False):
|
|
@@ -2343,15 +2535,15 @@ class UpdateRoleResponse(TypedDict, total=False):
|
|
|
2343
2535
|
|
|
2344
2536
|
|
|
2345
2537
|
class UpdateSAMLProviderRequest(ServiceRequest):
|
|
2346
|
-
SAMLMetadataDocument:
|
|
2538
|
+
SAMLMetadataDocument: SAMLMetadataDocumentType | None
|
|
2347
2539
|
SAMLProviderArn: arnType
|
|
2348
|
-
AssertionEncryptionMode:
|
|
2349
|
-
AddPrivateKey:
|
|
2350
|
-
RemovePrivateKey:
|
|
2540
|
+
AssertionEncryptionMode: assertionEncryptionModeType | None
|
|
2541
|
+
AddPrivateKey: privateKeyType | None
|
|
2542
|
+
RemovePrivateKey: privateKeyIdType | None
|
|
2351
2543
|
|
|
2352
2544
|
|
|
2353
2545
|
class UpdateSAMLProviderResponse(TypedDict, total=False):
|
|
2354
|
-
SAMLProviderArn:
|
|
2546
|
+
SAMLProviderArn: arnType | None
|
|
2355
2547
|
|
|
2356
2548
|
|
|
2357
2549
|
class UpdateSSHPublicKeyRequest(ServiceRequest):
|
|
@@ -2362,26 +2554,26 @@ class UpdateSSHPublicKeyRequest(ServiceRequest):
|
|
|
2362
2554
|
|
|
2363
2555
|
class UpdateServerCertificateRequest(ServiceRequest):
|
|
2364
2556
|
ServerCertificateName: serverCertificateNameType
|
|
2365
|
-
NewPath:
|
|
2366
|
-
NewServerCertificateName:
|
|
2557
|
+
NewPath: pathType | None
|
|
2558
|
+
NewServerCertificateName: serverCertificateNameType | None
|
|
2367
2559
|
|
|
2368
2560
|
|
|
2369
2561
|
class UpdateServiceSpecificCredentialRequest(ServiceRequest):
|
|
2370
|
-
UserName:
|
|
2562
|
+
UserName: userNameType | None
|
|
2371
2563
|
ServiceSpecificCredentialId: serviceSpecificCredentialId
|
|
2372
2564
|
Status: statusType
|
|
2373
2565
|
|
|
2374
2566
|
|
|
2375
2567
|
class UpdateSigningCertificateRequest(ServiceRequest):
|
|
2376
|
-
UserName:
|
|
2568
|
+
UserName: existingUserNameType | None
|
|
2377
2569
|
CertificateId: certificateIdType
|
|
2378
2570
|
Status: statusType
|
|
2379
2571
|
|
|
2380
2572
|
|
|
2381
2573
|
class UpdateUserRequest(ServiceRequest):
|
|
2382
2574
|
UserName: existingUserNameType
|
|
2383
|
-
NewPath:
|
|
2384
|
-
NewUserName:
|
|
2575
|
+
NewPath: pathType | None
|
|
2576
|
+
NewUserName: userNameType | None
|
|
2385
2577
|
|
|
2386
2578
|
|
|
2387
2579
|
class UploadSSHPublicKeyRequest(ServiceRequest):
|
|
@@ -2390,25 +2582,25 @@ class UploadSSHPublicKeyRequest(ServiceRequest):
|
|
|
2390
2582
|
|
|
2391
2583
|
|
|
2392
2584
|
class UploadSSHPublicKeyResponse(TypedDict, total=False):
|
|
2393
|
-
SSHPublicKey:
|
|
2585
|
+
SSHPublicKey: SSHPublicKey | None
|
|
2394
2586
|
|
|
2395
2587
|
|
|
2396
2588
|
class UploadServerCertificateRequest(ServiceRequest):
|
|
2397
|
-
Path:
|
|
2589
|
+
Path: pathType | None
|
|
2398
2590
|
ServerCertificateName: serverCertificateNameType
|
|
2399
2591
|
CertificateBody: certificateBodyType
|
|
2400
2592
|
PrivateKey: privateKeyType
|
|
2401
|
-
CertificateChain:
|
|
2402
|
-
Tags:
|
|
2593
|
+
CertificateChain: certificateChainType | None
|
|
2594
|
+
Tags: tagListType | None
|
|
2403
2595
|
|
|
2404
2596
|
|
|
2405
2597
|
class UploadServerCertificateResponse(TypedDict, total=False):
|
|
2406
|
-
ServerCertificateMetadata:
|
|
2407
|
-
Tags:
|
|
2598
|
+
ServerCertificateMetadata: ServerCertificateMetadata | None
|
|
2599
|
+
Tags: tagListType | None
|
|
2408
2600
|
|
|
2409
2601
|
|
|
2410
2602
|
class UploadSigningCertificateRequest(ServiceRequest):
|
|
2411
|
-
UserName:
|
|
2603
|
+
UserName: existingUserNameType | None
|
|
2412
2604
|
CertificateBody: certificateBodyType
|
|
2413
2605
|
|
|
2414
2606
|
|
|
@@ -2417,8 +2609,14 @@ class UploadSigningCertificateResponse(TypedDict, total=False):
|
|
|
2417
2609
|
|
|
2418
2610
|
|
|
2419
2611
|
class IamApi:
|
|
2420
|
-
service = "iam"
|
|
2421
|
-
version = "2010-05-08"
|
|
2612
|
+
service: str = "iam"
|
|
2613
|
+
version: str = "2010-05-08"
|
|
2614
|
+
|
|
2615
|
+
@handler("AcceptDelegationRequest")
|
|
2616
|
+
def accept_delegation_request(
|
|
2617
|
+
self, context: RequestContext, delegation_request_id: delegationRequestIdType, **kwargs
|
|
2618
|
+
) -> None:
|
|
2619
|
+
raise NotImplementedError
|
|
2422
2620
|
|
|
2423
2621
|
@handler("AddClientIDToOpenIDConnectProvider")
|
|
2424
2622
|
def add_client_id_to_open_id_connect_provider(
|
|
@@ -2450,6 +2648,12 @@ class IamApi:
|
|
|
2450
2648
|
) -> None:
|
|
2451
2649
|
raise NotImplementedError
|
|
2452
2650
|
|
|
2651
|
+
@handler("AssociateDelegationRequest")
|
|
2652
|
+
def associate_delegation_request(
|
|
2653
|
+
self, context: RequestContext, delegation_request_id: delegationRequestIdType, **kwargs
|
|
2654
|
+
) -> None:
|
|
2655
|
+
raise NotImplementedError
|
|
2656
|
+
|
|
2453
2657
|
@handler("AttachGroupPolicy")
|
|
2454
2658
|
def attach_group_policy(
|
|
2455
2659
|
self, context: RequestContext, group_name: groupNameType, policy_arn: arnType, **kwargs
|
|
@@ -2490,6 +2694,23 @@ class IamApi:
|
|
|
2490
2694
|
) -> None:
|
|
2491
2695
|
raise NotImplementedError
|
|
2492
2696
|
|
|
2697
|
+
@handler("CreateDelegationRequest")
|
|
2698
|
+
def create_delegation_request(
|
|
2699
|
+
self,
|
|
2700
|
+
context: RequestContext,
|
|
2701
|
+
description: delegationRequestDescriptionType,
|
|
2702
|
+
permissions: DelegationPermission,
|
|
2703
|
+
requestor_workflow_id: requestorWorkflowIdType,
|
|
2704
|
+
notification_channel: notificationChannelType,
|
|
2705
|
+
session_duration: sessionDurationType,
|
|
2706
|
+
owner_account_id: accountIdType | None = None,
|
|
2707
|
+
request_message: requestMessageType | None = None,
|
|
2708
|
+
redirect_url: redirectUrlType | None = None,
|
|
2709
|
+
only_send_by_owner: booleanType | None = None,
|
|
2710
|
+
**kwargs,
|
|
2711
|
+
) -> CreateDelegationRequestResponse:
|
|
2712
|
+
raise NotImplementedError
|
|
2713
|
+
|
|
2493
2714
|
@handler("CreateGroup")
|
|
2494
2715
|
def create_group(
|
|
2495
2716
|
self,
|
|
@@ -2833,6 +3054,10 @@ class IamApi:
|
|
|
2833
3054
|
) -> DisableOrganizationsRootSessionsResponse:
|
|
2834
3055
|
raise NotImplementedError
|
|
2835
3056
|
|
|
3057
|
+
@handler("DisableOutboundWebIdentityFederation")
|
|
3058
|
+
def disable_outbound_web_identity_federation(self, context: RequestContext, **kwargs) -> None:
|
|
3059
|
+
raise NotImplementedError
|
|
3060
|
+
|
|
2836
3061
|
@handler("EnableMFADevice")
|
|
2837
3062
|
def enable_mfa_device(
|
|
2838
3063
|
self,
|
|
@@ -2857,6 +3082,12 @@ class IamApi:
|
|
|
2857
3082
|
) -> EnableOrganizationsRootSessionsResponse:
|
|
2858
3083
|
raise NotImplementedError
|
|
2859
3084
|
|
|
3085
|
+
@handler("EnableOutboundWebIdentityFederation")
|
|
3086
|
+
def enable_outbound_web_identity_federation(
|
|
3087
|
+
self, context: RequestContext, **kwargs
|
|
3088
|
+
) -> EnableOutboundWebIdentityFederationResponse:
|
|
3089
|
+
raise NotImplementedError
|
|
3090
|
+
|
|
2860
3091
|
@handler("GenerateCredentialReport")
|
|
2861
3092
|
def generate_credential_report(
|
|
2862
3093
|
self, context: RequestContext, **kwargs
|
|
@@ -2932,6 +3163,16 @@ class IamApi:
|
|
|
2932
3163
|
) -> GetCredentialReportResponse:
|
|
2933
3164
|
raise NotImplementedError
|
|
2934
3165
|
|
|
3166
|
+
@handler("GetDelegationRequest")
|
|
3167
|
+
def get_delegation_request(
|
|
3168
|
+
self,
|
|
3169
|
+
context: RequestContext,
|
|
3170
|
+
delegation_request_id: delegationRequestIdType,
|
|
3171
|
+
delegation_permission_check: booleanType | None = None,
|
|
3172
|
+
**kwargs,
|
|
3173
|
+
) -> GetDelegationRequestResponse:
|
|
3174
|
+
raise NotImplementedError
|
|
3175
|
+
|
|
2935
3176
|
@handler("GetGroup")
|
|
2936
3177
|
def get_group(
|
|
2937
3178
|
self,
|
|
@@ -2953,6 +3194,16 @@ class IamApi:
|
|
|
2953
3194
|
) -> GetGroupPolicyResponse:
|
|
2954
3195
|
raise NotImplementedError
|
|
2955
3196
|
|
|
3197
|
+
@handler("GetHumanReadableSummary")
|
|
3198
|
+
def get_human_readable_summary(
|
|
3199
|
+
self,
|
|
3200
|
+
context: RequestContext,
|
|
3201
|
+
entity_arn: arnType,
|
|
3202
|
+
locale: localeType | None = None,
|
|
3203
|
+
**kwargs,
|
|
3204
|
+
) -> GetHumanReadableSummaryResponse:
|
|
3205
|
+
raise NotImplementedError
|
|
3206
|
+
|
|
2956
3207
|
@handler("GetInstanceProfile")
|
|
2957
3208
|
def get_instance_profile(
|
|
2958
3209
|
self, context: RequestContext, instance_profile_name: instanceProfileNameType, **kwargs
|
|
@@ -2993,6 +3244,12 @@ class IamApi:
|
|
|
2993
3244
|
) -> GetOrganizationsAccessReportResponse:
|
|
2994
3245
|
raise NotImplementedError
|
|
2995
3246
|
|
|
3247
|
+
@handler("GetOutboundWebIdentityFederationInfo")
|
|
3248
|
+
def get_outbound_web_identity_federation_info(
|
|
3249
|
+
self, context: RequestContext, **kwargs
|
|
3250
|
+
) -> GetOutboundWebIdentityFederationInfoResponse:
|
|
3251
|
+
raise NotImplementedError
|
|
3252
|
+
|
|
2996
3253
|
@handler("GetPolicy")
|
|
2997
3254
|
def get_policy(
|
|
2998
3255
|
self, context: RequestContext, policy_arn: arnType, **kwargs
|
|
@@ -3150,6 +3407,17 @@ class IamApi:
|
|
|
3150
3407
|
) -> ListAttachedUserPoliciesResponse:
|
|
3151
3408
|
raise NotImplementedError
|
|
3152
3409
|
|
|
3410
|
+
@handler("ListDelegationRequests")
|
|
3411
|
+
def list_delegation_requests(
|
|
3412
|
+
self,
|
|
3413
|
+
context: RequestContext,
|
|
3414
|
+
owner_id: ownerIdType | None = None,
|
|
3415
|
+
marker: markerType | None = None,
|
|
3416
|
+
max_items: maxItemsType | None = None,
|
|
3417
|
+
**kwargs,
|
|
3418
|
+
) -> ListDelegationRequestsResponse:
|
|
3419
|
+
raise NotImplementedError
|
|
3420
|
+
|
|
3153
3421
|
@handler("ListEntitiesForPolicy")
|
|
3154
3422
|
def list_entities_for_policy(
|
|
3155
3423
|
self,
|
|
@@ -3524,6 +3792,16 @@ class IamApi:
|
|
|
3524
3792
|
) -> None:
|
|
3525
3793
|
raise NotImplementedError
|
|
3526
3794
|
|
|
3795
|
+
@handler("RejectDelegationRequest")
|
|
3796
|
+
def reject_delegation_request(
|
|
3797
|
+
self,
|
|
3798
|
+
context: RequestContext,
|
|
3799
|
+
delegation_request_id: delegationRequestIdType,
|
|
3800
|
+
notes: notesType | None = None,
|
|
3801
|
+
**kwargs,
|
|
3802
|
+
) -> None:
|
|
3803
|
+
raise NotImplementedError
|
|
3804
|
+
|
|
3527
3805
|
@handler("RemoveClientIDFromOpenIDConnectProvider")
|
|
3528
3806
|
def remove_client_id_from_open_id_connect_provider(
|
|
3529
3807
|
self,
|
|
@@ -3576,6 +3854,12 @@ class IamApi:
|
|
|
3576
3854
|
) -> None:
|
|
3577
3855
|
raise NotImplementedError
|
|
3578
3856
|
|
|
3857
|
+
@handler("SendDelegationToken")
|
|
3858
|
+
def send_delegation_token(
|
|
3859
|
+
self, context: RequestContext, delegation_request_id: delegationRequestIdType, **kwargs
|
|
3860
|
+
) -> None:
|
|
3861
|
+
raise NotImplementedError
|
|
3862
|
+
|
|
3579
3863
|
@handler("SetDefaultPolicyVersion")
|
|
3580
3864
|
def set_default_policy_version(
|
|
3581
3865
|
self,
|
|
@@ -3804,6 +4088,16 @@ class IamApi:
|
|
|
3804
4088
|
) -> None:
|
|
3805
4089
|
raise NotImplementedError
|
|
3806
4090
|
|
|
4091
|
+
@handler("UpdateDelegationRequest")
|
|
4092
|
+
def update_delegation_request(
|
|
4093
|
+
self,
|
|
4094
|
+
context: RequestContext,
|
|
4095
|
+
delegation_request_id: delegationRequestIdType,
|
|
4096
|
+
notes: notesType | None = None,
|
|
4097
|
+
**kwargs,
|
|
4098
|
+
) -> None:
|
|
4099
|
+
raise NotImplementedError
|
|
4100
|
+
|
|
3807
4101
|
@handler("UpdateGroup")
|
|
3808
4102
|
def update_group(
|
|
3809
4103
|
self,
|