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.
- 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
|
|
|
@@ -11,6 +11,8 @@ AccountsUrl = str
|
|
|
11
11
|
AfterContext = str
|
|
12
12
|
AfterValue = str
|
|
13
13
|
AllowedValue = str
|
|
14
|
+
AnnotationName = str
|
|
15
|
+
AnnotationRemediationLink = str
|
|
14
16
|
Arn = str
|
|
15
17
|
AutoDeploymentNullable = bool
|
|
16
18
|
AutoUpdate = bool
|
|
@@ -41,6 +43,7 @@ ExecutionRoleName = str
|
|
|
41
43
|
ExecutionStatusReason = str
|
|
42
44
|
ExportName = str
|
|
43
45
|
ExportValue = str
|
|
46
|
+
FailedEventsFilter = bool
|
|
44
47
|
FailedStackInstancesCount = int
|
|
45
48
|
FailureToleranceCount = int
|
|
46
49
|
FailureTolerancePercentage = int
|
|
@@ -50,6 +53,7 @@ HookInvocationCount = int
|
|
|
50
53
|
HookInvocationId = str
|
|
51
54
|
HookResultId = str
|
|
52
55
|
HookStatusReason = str
|
|
56
|
+
HookTargetId = str
|
|
53
57
|
HookTargetTypeName = str
|
|
54
58
|
HookType = str
|
|
55
59
|
HookTypeArn = str
|
|
@@ -83,6 +87,7 @@ NextToken = str
|
|
|
83
87
|
NoEcho = bool
|
|
84
88
|
NotificationARN = str
|
|
85
89
|
NumberOfResources = int
|
|
90
|
+
OperationId = str
|
|
86
91
|
OperationResultFilterValues = str
|
|
87
92
|
OptionalSecureUrl = str
|
|
88
93
|
OrganizationalUnitId = str
|
|
@@ -93,6 +98,7 @@ ParameterType = str
|
|
|
93
98
|
ParameterValue = str
|
|
94
99
|
PercentageCompleted = float
|
|
95
100
|
PhysicalResourceId = str
|
|
101
|
+
PreviousDeploymentContext = str
|
|
96
102
|
PrivateTypeArn = str
|
|
97
103
|
Properties = str
|
|
98
104
|
PropertyDescription = str
|
|
@@ -107,8 +113,12 @@ Reason = str
|
|
|
107
113
|
RefreshAllResources = bool
|
|
108
114
|
Region = str
|
|
109
115
|
RegistrationToken = str
|
|
116
|
+
RemediationMessageRemediationMessage = str
|
|
117
|
+
RemediationMessageStatusMessage = str
|
|
110
118
|
RequestToken = str
|
|
111
119
|
RequiredProperty = bool
|
|
120
|
+
ResourceDriftActualValue = str
|
|
121
|
+
ResourceDriftPreviousValue = str
|
|
112
122
|
ResourceIdentifier = str
|
|
113
123
|
ResourceIdentifierPropertyKey = str
|
|
114
124
|
ResourceIdentifierPropertyValue = str
|
|
@@ -187,6 +197,9 @@ TypeVersionId = str
|
|
|
187
197
|
Url = str
|
|
188
198
|
UsePreviousTemplate = bool
|
|
189
199
|
UsePreviousValue = bool
|
|
200
|
+
ValidationName = str
|
|
201
|
+
ValidationPath = str
|
|
202
|
+
ValidationStatusReason = str
|
|
190
203
|
Value = str
|
|
191
204
|
Version = str
|
|
192
205
|
|
|
@@ -204,10 +217,40 @@ class AccountGateStatus(StrEnum):
|
|
|
204
217
|
SKIPPED = "SKIPPED"
|
|
205
218
|
|
|
206
219
|
|
|
220
|
+
class AfterValueFrom(StrEnum):
|
|
221
|
+
TEMPLATE = "TEMPLATE"
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
class AnnotationSeverityLevel(StrEnum):
|
|
225
|
+
INFORMATIONAL = "INFORMATIONAL"
|
|
226
|
+
LOW = "LOW"
|
|
227
|
+
MEDIUM = "MEDIUM"
|
|
228
|
+
HIGH = "HIGH"
|
|
229
|
+
CRITICAL = "CRITICAL"
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
class AnnotationStatus(StrEnum):
|
|
233
|
+
PASSED = "PASSED"
|
|
234
|
+
FAILED = "FAILED"
|
|
235
|
+
SKIPPED = "SKIPPED"
|
|
236
|
+
|
|
237
|
+
|
|
207
238
|
class AttributeChangeType(StrEnum):
|
|
208
239
|
Add = "Add"
|
|
209
240
|
Remove = "Remove"
|
|
210
241
|
Modify = "Modify"
|
|
242
|
+
SyncWithActual = "SyncWithActual"
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
class BeaconStackOperationStatus(StrEnum):
|
|
246
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
247
|
+
SUCCEEDED = "SUCCEEDED"
|
|
248
|
+
FAILED = "FAILED"
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
class BeforeValueFrom(StrEnum):
|
|
252
|
+
PREVIOUS_DEPLOYMENT_STATE = "PREVIOUS_DEPLOYMENT_STATE"
|
|
253
|
+
ACTUAL_STATE = "ACTUAL_STATE"
|
|
211
254
|
|
|
212
255
|
|
|
213
256
|
class CallAs(StrEnum):
|
|
@@ -234,6 +277,7 @@ class ChangeAction(StrEnum):
|
|
|
234
277
|
Remove = "Remove"
|
|
235
278
|
Import = "Import"
|
|
236
279
|
Dynamic = "Dynamic"
|
|
280
|
+
SyncWithActual = "SyncWithActual"
|
|
237
281
|
|
|
238
282
|
|
|
239
283
|
class ChangeSetHooksStatus(StrEnum):
|
|
@@ -265,6 +309,7 @@ class ChangeSource(StrEnum):
|
|
|
265
309
|
ResourceAttribute = "ResourceAttribute"
|
|
266
310
|
DirectModification = "DirectModification"
|
|
267
311
|
Automatic = "Automatic"
|
|
312
|
+
NoModification = "NoModification"
|
|
268
313
|
|
|
269
314
|
|
|
270
315
|
class ChangeType(StrEnum):
|
|
@@ -281,6 +326,10 @@ class DeletionMode(StrEnum):
|
|
|
281
326
|
FORCE_DELETE_STACK = "FORCE_DELETE_STACK"
|
|
282
327
|
|
|
283
328
|
|
|
329
|
+
class DeploymentMode(StrEnum):
|
|
330
|
+
REVERT_DRIFT = "REVERT_DRIFT"
|
|
331
|
+
|
|
332
|
+
|
|
284
333
|
class DeprecatedStatus(StrEnum):
|
|
285
334
|
LIVE = "LIVE"
|
|
286
335
|
DEPRECATED = "DEPRECATED"
|
|
@@ -297,11 +346,24 @@ class DifferenceType(StrEnum):
|
|
|
297
346
|
NOT_EQUAL = "NOT_EQUAL"
|
|
298
347
|
|
|
299
348
|
|
|
349
|
+
class DriftIgnoredReason(StrEnum):
|
|
350
|
+
MANAGED_BY_AWS = "MANAGED_BY_AWS"
|
|
351
|
+
WRITE_ONLY_PROPERTY = "WRITE_ONLY_PROPERTY"
|
|
352
|
+
|
|
353
|
+
|
|
300
354
|
class EvaluationType(StrEnum):
|
|
301
355
|
Static = "Static"
|
|
302
356
|
Dynamic = "Dynamic"
|
|
303
357
|
|
|
304
358
|
|
|
359
|
+
class EventType(StrEnum):
|
|
360
|
+
STACK_EVENT = "STACK_EVENT"
|
|
361
|
+
PROGRESS_EVENT = "PROGRESS_EVENT"
|
|
362
|
+
VALIDATION_ERROR = "VALIDATION_ERROR"
|
|
363
|
+
PROVISIONING_ERROR = "PROVISIONING_ERROR"
|
|
364
|
+
HOOK_INVOCATION_ERROR = "HOOK_INVOCATION_ERROR"
|
|
365
|
+
|
|
366
|
+
|
|
305
367
|
class ExecutionStatus(StrEnum):
|
|
306
368
|
UNAVAILABLE = "UNAVAILABLE"
|
|
307
369
|
AVAILABLE = "AVAILABLE"
|
|
@@ -377,6 +439,13 @@ class HookStatus(StrEnum):
|
|
|
377
439
|
HOOK_FAILED = "HOOK_FAILED"
|
|
378
440
|
|
|
379
441
|
|
|
442
|
+
class HookTargetAction(StrEnum):
|
|
443
|
+
CREATE = "CREATE"
|
|
444
|
+
UPDATE = "UPDATE"
|
|
445
|
+
DELETE = "DELETE"
|
|
446
|
+
IMPORT = "IMPORT"
|
|
447
|
+
|
|
448
|
+
|
|
380
449
|
class HookTargetType(StrEnum):
|
|
381
450
|
RESOURCE = "RESOURCE"
|
|
382
451
|
|
|
@@ -417,6 +486,15 @@ class OperationStatus(StrEnum):
|
|
|
417
486
|
FAILED = "FAILED"
|
|
418
487
|
|
|
419
488
|
|
|
489
|
+
class OperationType(StrEnum):
|
|
490
|
+
CREATE_STACK = "CREATE_STACK"
|
|
491
|
+
UPDATE_STACK = "UPDATE_STACK"
|
|
492
|
+
DELETE_STACK = "DELETE_STACK"
|
|
493
|
+
CONTINUE_ROLLBACK = "CONTINUE_ROLLBACK"
|
|
494
|
+
ROLLBACK = "ROLLBACK"
|
|
495
|
+
CREATE_CHANGESET = "CREATE_CHANGESET"
|
|
496
|
+
|
|
497
|
+
|
|
420
498
|
class OrganizationStatus(StrEnum):
|
|
421
499
|
ENABLED = "ENABLED"
|
|
422
500
|
DISABLED = "DISABLED"
|
|
@@ -613,6 +691,7 @@ class StackResourceDriftStatus(StrEnum):
|
|
|
613
691
|
DELETED = "DELETED"
|
|
614
692
|
NOT_CHECKED = "NOT_CHECKED"
|
|
615
693
|
UNKNOWN = "UNKNOWN"
|
|
694
|
+
UNSUPPORTED = "UNSUPPORTED"
|
|
616
695
|
|
|
617
696
|
|
|
618
697
|
class StackSetDriftDetectionStatus(StrEnum):
|
|
@@ -707,6 +786,11 @@ class TypeTestsStatus(StrEnum):
|
|
|
707
786
|
NOT_TESTED = "NOT_TESTED"
|
|
708
787
|
|
|
709
788
|
|
|
789
|
+
class ValidationStatus(StrEnum):
|
|
790
|
+
FAILED = "FAILED"
|
|
791
|
+
SKIPPED = "SKIPPED"
|
|
792
|
+
|
|
793
|
+
|
|
710
794
|
class VersionBump(StrEnum):
|
|
711
795
|
MAJOR = "MAJOR"
|
|
712
796
|
MINOR = "MINOR"
|
|
@@ -900,17 +984,17 @@ class TypeNotFoundException(ServiceException):
|
|
|
900
984
|
|
|
901
985
|
|
|
902
986
|
class AccountGateResult(TypedDict, total=False):
|
|
903
|
-
Status:
|
|
904
|
-
StatusReason:
|
|
987
|
+
Status: AccountGateStatus | None
|
|
988
|
+
StatusReason: AccountGateStatusReason | None
|
|
905
989
|
|
|
906
990
|
|
|
907
991
|
class AccountLimit(TypedDict, total=False):
|
|
908
|
-
Name:
|
|
909
|
-
Value:
|
|
992
|
+
Name: LimitName | None
|
|
993
|
+
Value: LimitValue | None
|
|
910
994
|
|
|
911
995
|
|
|
912
|
-
AccountLimitList =
|
|
913
|
-
AccountList =
|
|
996
|
+
AccountLimitList = list[AccountLimit]
|
|
997
|
+
AccountList = list[Account]
|
|
914
998
|
|
|
915
999
|
|
|
916
1000
|
class ActivateOrganizationsAccessInput(ServiceRequest):
|
|
@@ -930,46 +1014,60 @@ class LoggingConfig(TypedDict, total=False):
|
|
|
930
1014
|
|
|
931
1015
|
|
|
932
1016
|
class ActivateTypeInput(ServiceRequest):
|
|
933
|
-
Type:
|
|
934
|
-
PublicTypeArn:
|
|
935
|
-
PublisherId:
|
|
936
|
-
TypeName:
|
|
937
|
-
TypeNameAlias:
|
|
938
|
-
AutoUpdate:
|
|
939
|
-
LoggingConfig:
|
|
940
|
-
ExecutionRoleArn:
|
|
941
|
-
VersionBump:
|
|
942
|
-
MajorVersion:
|
|
1017
|
+
Type: ThirdPartyType | None
|
|
1018
|
+
PublicTypeArn: ThirdPartyTypeArn | None
|
|
1019
|
+
PublisherId: PublisherId | None
|
|
1020
|
+
TypeName: TypeName | None
|
|
1021
|
+
TypeNameAlias: TypeName | None
|
|
1022
|
+
AutoUpdate: AutoUpdate | None
|
|
1023
|
+
LoggingConfig: LoggingConfig | None
|
|
1024
|
+
ExecutionRoleArn: RoleArn | None
|
|
1025
|
+
VersionBump: VersionBump | None
|
|
1026
|
+
MajorVersion: MajorVersion | None
|
|
943
1027
|
|
|
944
1028
|
|
|
945
1029
|
class ActivateTypeOutput(TypedDict, total=False):
|
|
946
|
-
Arn:
|
|
1030
|
+
Arn: PrivateTypeArn | None
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
AllowedValues = list[AllowedValue]
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
class Annotation(TypedDict, total=False):
|
|
1037
|
+
AnnotationName: AnnotationName | None
|
|
1038
|
+
Status: AnnotationStatus | None
|
|
1039
|
+
StatusMessage: RemediationMessageStatusMessage | None
|
|
1040
|
+
RemediationMessage: RemediationMessageRemediationMessage | None
|
|
1041
|
+
RemediationLink: AnnotationRemediationLink | None
|
|
1042
|
+
SeverityLevel: AnnotationSeverityLevel | None
|
|
947
1043
|
|
|
948
1044
|
|
|
949
|
-
|
|
1045
|
+
AnnotationList = list[Annotation]
|
|
1046
|
+
StackSetARNList = list[StackSetARN]
|
|
950
1047
|
|
|
951
1048
|
|
|
952
1049
|
class AutoDeployment(TypedDict, total=False):
|
|
953
|
-
Enabled:
|
|
954
|
-
RetainStacksOnAccountRemoval:
|
|
1050
|
+
Enabled: AutoDeploymentNullable | None
|
|
1051
|
+
RetainStacksOnAccountRemoval: RetainStacksOnAccountRemovalNullable | None
|
|
1052
|
+
DependsOn: StackSetARNList | None
|
|
955
1053
|
|
|
956
1054
|
|
|
957
1055
|
class TypeConfigurationIdentifier(TypedDict, total=False):
|
|
958
|
-
TypeArn:
|
|
959
|
-
TypeConfigurationAlias:
|
|
960
|
-
TypeConfigurationArn:
|
|
961
|
-
Type:
|
|
962
|
-
TypeName:
|
|
1056
|
+
TypeArn: TypeArn | None
|
|
1057
|
+
TypeConfigurationAlias: TypeConfigurationAlias | None
|
|
1058
|
+
TypeConfigurationArn: TypeConfigurationArn | None
|
|
1059
|
+
Type: ThirdPartyType | None
|
|
1060
|
+
TypeName: TypeName | None
|
|
963
1061
|
|
|
964
1062
|
|
|
965
1063
|
class BatchDescribeTypeConfigurationsError(TypedDict, total=False):
|
|
966
|
-
ErrorCode:
|
|
967
|
-
ErrorMessage:
|
|
968
|
-
TypeConfigurationIdentifier:
|
|
1064
|
+
ErrorCode: ErrorCode | None
|
|
1065
|
+
ErrorMessage: ErrorMessage | None
|
|
1066
|
+
TypeConfigurationIdentifier: TypeConfigurationIdentifier | None
|
|
969
1067
|
|
|
970
1068
|
|
|
971
|
-
BatchDescribeTypeConfigurationsErrors =
|
|
972
|
-
TypeConfigurationIdentifiers =
|
|
1069
|
+
BatchDescribeTypeConfigurationsErrors = list[BatchDescribeTypeConfigurationsError]
|
|
1070
|
+
TypeConfigurationIdentifiers = list[TypeConfigurationIdentifier]
|
|
973
1071
|
|
|
974
1072
|
|
|
975
1073
|
class BatchDescribeTypeConfigurationsInput(ServiceRequest):
|
|
@@ -980,137 +1078,157 @@ Timestamp = datetime
|
|
|
980
1078
|
|
|
981
1079
|
|
|
982
1080
|
class TypeConfigurationDetails(TypedDict, total=False):
|
|
983
|
-
Arn:
|
|
984
|
-
Alias:
|
|
985
|
-
Configuration:
|
|
986
|
-
LastUpdated:
|
|
987
|
-
TypeArn:
|
|
988
|
-
TypeName:
|
|
989
|
-
IsDefaultConfiguration:
|
|
1081
|
+
Arn: TypeConfigurationArn | None
|
|
1082
|
+
Alias: TypeConfigurationAlias | None
|
|
1083
|
+
Configuration: TypeConfiguration | None
|
|
1084
|
+
LastUpdated: Timestamp | None
|
|
1085
|
+
TypeArn: TypeArn | None
|
|
1086
|
+
TypeName: TypeName | None
|
|
1087
|
+
IsDefaultConfiguration: IsDefaultConfiguration | None
|
|
990
1088
|
|
|
991
1089
|
|
|
992
|
-
TypeConfigurationDetailsList =
|
|
993
|
-
UnprocessedTypeConfigurations =
|
|
1090
|
+
TypeConfigurationDetailsList = list[TypeConfigurationDetails]
|
|
1091
|
+
UnprocessedTypeConfigurations = list[TypeConfigurationIdentifier]
|
|
994
1092
|
|
|
995
1093
|
|
|
996
1094
|
class BatchDescribeTypeConfigurationsOutput(TypedDict, total=False):
|
|
997
|
-
Errors:
|
|
998
|
-
UnprocessedTypeConfigurations:
|
|
999
|
-
TypeConfigurations:
|
|
1095
|
+
Errors: BatchDescribeTypeConfigurationsErrors | None
|
|
1096
|
+
UnprocessedTypeConfigurations: UnprocessedTypeConfigurations | None
|
|
1097
|
+
TypeConfigurations: TypeConfigurationDetailsList | None
|
|
1000
1098
|
|
|
1001
1099
|
|
|
1002
1100
|
class CancelUpdateStackInput(ServiceRequest):
|
|
1003
1101
|
StackName: StackName
|
|
1004
|
-
ClientRequestToken:
|
|
1102
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1005
1103
|
|
|
1006
1104
|
|
|
1007
|
-
Capabilities =
|
|
1105
|
+
Capabilities = list[Capability]
|
|
1008
1106
|
|
|
1009
1107
|
|
|
1010
1108
|
class ModuleInfo(TypedDict, total=False):
|
|
1011
|
-
TypeHierarchy:
|
|
1012
|
-
LogicalIdHierarchy:
|
|
1109
|
+
TypeHierarchy: TypeHierarchy | None
|
|
1110
|
+
LogicalIdHierarchy: LogicalIdHierarchy | None
|
|
1111
|
+
|
|
1112
|
+
|
|
1113
|
+
class LiveResourceDrift(TypedDict, total=False):
|
|
1114
|
+
PreviousValue: ResourceDriftPreviousValue | None
|
|
1115
|
+
ActualValue: ResourceDriftActualValue | None
|
|
1116
|
+
DriftDetectionTimestamp: Timestamp | None
|
|
1013
1117
|
|
|
1014
1118
|
|
|
1015
1119
|
class ResourceTargetDefinition(TypedDict, total=False):
|
|
1016
|
-
Attribute:
|
|
1017
|
-
Name:
|
|
1018
|
-
RequiresRecreation:
|
|
1019
|
-
Path:
|
|
1020
|
-
BeforeValue:
|
|
1021
|
-
AfterValue:
|
|
1022
|
-
|
|
1120
|
+
Attribute: ResourceAttribute | None
|
|
1121
|
+
Name: PropertyName | None
|
|
1122
|
+
RequiresRecreation: RequiresRecreation | None
|
|
1123
|
+
Path: ResourcePropertyPath | None
|
|
1124
|
+
BeforeValue: BeforeValue | None
|
|
1125
|
+
AfterValue: AfterValue | None
|
|
1126
|
+
BeforeValueFrom: BeforeValueFrom | None
|
|
1127
|
+
AfterValueFrom: AfterValueFrom | None
|
|
1128
|
+
Drift: LiveResourceDrift | None
|
|
1129
|
+
AttributeChangeType: AttributeChangeType | None
|
|
1023
1130
|
|
|
1024
1131
|
|
|
1025
1132
|
class ResourceChangeDetail(TypedDict, total=False):
|
|
1026
|
-
Target:
|
|
1027
|
-
Evaluation:
|
|
1028
|
-
ChangeSource:
|
|
1029
|
-
CausingEntity:
|
|
1133
|
+
Target: ResourceTargetDefinition | None
|
|
1134
|
+
Evaluation: EvaluationType | None
|
|
1135
|
+
ChangeSource: ChangeSource | None
|
|
1136
|
+
CausingEntity: CausingEntity | None
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
ResourceChangeDetails = list[ResourceChangeDetail]
|
|
1030
1140
|
|
|
1031
1141
|
|
|
1032
|
-
|
|
1033
|
-
|
|
1142
|
+
class ResourceDriftIgnoredAttribute(TypedDict, total=False):
|
|
1143
|
+
Path: ResourcePropertyPath | None
|
|
1144
|
+
Reason: DriftIgnoredReason | None
|
|
1145
|
+
|
|
1146
|
+
|
|
1147
|
+
ResourceDriftIgnoredAttributes = list[ResourceDriftIgnoredAttribute]
|
|
1148
|
+
Scope = list[ResourceAttribute]
|
|
1034
1149
|
|
|
1035
1150
|
|
|
1036
1151
|
class ResourceChange(TypedDict, total=False):
|
|
1037
|
-
PolicyAction:
|
|
1038
|
-
Action:
|
|
1039
|
-
LogicalResourceId:
|
|
1040
|
-
PhysicalResourceId:
|
|
1041
|
-
ResourceType:
|
|
1042
|
-
Replacement:
|
|
1043
|
-
Scope:
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1152
|
+
PolicyAction: PolicyAction | None
|
|
1153
|
+
Action: ChangeAction | None
|
|
1154
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1155
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1156
|
+
ResourceType: ResourceType | None
|
|
1157
|
+
Replacement: Replacement | None
|
|
1158
|
+
Scope: Scope | None
|
|
1159
|
+
ResourceDriftStatus: StackResourceDriftStatus | None
|
|
1160
|
+
ResourceDriftIgnoredAttributes: ResourceDriftIgnoredAttributes | None
|
|
1161
|
+
Details: ResourceChangeDetails | None
|
|
1162
|
+
ChangeSetId: ChangeSetId | None
|
|
1163
|
+
ModuleInfo: ModuleInfo | None
|
|
1164
|
+
BeforeContext: BeforeContext | None
|
|
1165
|
+
AfterContext: AfterContext | None
|
|
1166
|
+
PreviousDeploymentContext: PreviousDeploymentContext | None
|
|
1049
1167
|
|
|
1050
1168
|
|
|
1051
1169
|
class Change(TypedDict, total=False):
|
|
1052
|
-
Type:
|
|
1053
|
-
HookInvocationCount:
|
|
1054
|
-
ResourceChange:
|
|
1170
|
+
Type: ChangeType | None
|
|
1171
|
+
HookInvocationCount: HookInvocationCount | None
|
|
1172
|
+
ResourceChange: ResourceChange | None
|
|
1055
1173
|
|
|
1056
1174
|
|
|
1057
1175
|
class ChangeSetHookResourceTargetDetails(TypedDict, total=False):
|
|
1058
|
-
LogicalResourceId:
|
|
1059
|
-
ResourceType:
|
|
1060
|
-
ResourceAction:
|
|
1176
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1177
|
+
ResourceType: HookTargetTypeName | None
|
|
1178
|
+
ResourceAction: ChangeAction | None
|
|
1061
1179
|
|
|
1062
1180
|
|
|
1063
1181
|
class ChangeSetHookTargetDetails(TypedDict, total=False):
|
|
1064
|
-
TargetType:
|
|
1065
|
-
ResourceTargetDetails:
|
|
1182
|
+
TargetType: HookTargetType | None
|
|
1183
|
+
ResourceTargetDetails: ChangeSetHookResourceTargetDetails | None
|
|
1066
1184
|
|
|
1067
1185
|
|
|
1068
1186
|
class ChangeSetHook(TypedDict, total=False):
|
|
1069
|
-
InvocationPoint:
|
|
1070
|
-
FailureMode:
|
|
1071
|
-
TypeName:
|
|
1072
|
-
TypeVersionId:
|
|
1073
|
-
TypeConfigurationVersionId:
|
|
1074
|
-
TargetDetails:
|
|
1187
|
+
InvocationPoint: HookInvocationPoint | None
|
|
1188
|
+
FailureMode: HookFailureMode | None
|
|
1189
|
+
TypeName: HookTypeName | None
|
|
1190
|
+
TypeVersionId: HookTypeVersionId | None
|
|
1191
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
1192
|
+
TargetDetails: ChangeSetHookTargetDetails | None
|
|
1075
1193
|
|
|
1076
1194
|
|
|
1077
|
-
ChangeSetHooks =
|
|
1195
|
+
ChangeSetHooks = list[ChangeSetHook]
|
|
1078
1196
|
CreationTime = datetime
|
|
1079
1197
|
|
|
1080
1198
|
|
|
1081
1199
|
class ChangeSetSummary(TypedDict, total=False):
|
|
1082
|
-
StackId:
|
|
1083
|
-
StackName:
|
|
1084
|
-
ChangeSetId:
|
|
1085
|
-
ChangeSetName:
|
|
1086
|
-
ExecutionStatus:
|
|
1087
|
-
Status:
|
|
1088
|
-
StatusReason:
|
|
1089
|
-
CreationTime:
|
|
1090
|
-
Description:
|
|
1091
|
-
IncludeNestedStacks:
|
|
1092
|
-
ParentChangeSetId:
|
|
1093
|
-
RootChangeSetId:
|
|
1094
|
-
ImportExistingResources:
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
ChangeSetSummaries =
|
|
1098
|
-
Changes =
|
|
1099
|
-
ResourcesToSkip =
|
|
1200
|
+
StackId: StackId | None
|
|
1201
|
+
StackName: StackName | None
|
|
1202
|
+
ChangeSetId: ChangeSetId | None
|
|
1203
|
+
ChangeSetName: ChangeSetName | None
|
|
1204
|
+
ExecutionStatus: ExecutionStatus | None
|
|
1205
|
+
Status: ChangeSetStatus | None
|
|
1206
|
+
StatusReason: ChangeSetStatusReason | None
|
|
1207
|
+
CreationTime: CreationTime | None
|
|
1208
|
+
Description: Description | None
|
|
1209
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1210
|
+
ParentChangeSetId: ChangeSetId | None
|
|
1211
|
+
RootChangeSetId: ChangeSetId | None
|
|
1212
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
ChangeSetSummaries = list[ChangeSetSummary]
|
|
1216
|
+
Changes = list[Change]
|
|
1217
|
+
ResourcesToSkip = list[ResourceToSkip]
|
|
1100
1218
|
|
|
1101
1219
|
|
|
1102
1220
|
class ContinueUpdateRollbackInput(ServiceRequest):
|
|
1103
1221
|
StackName: StackNameOrId
|
|
1104
|
-
RoleARN:
|
|
1105
|
-
ResourcesToSkip:
|
|
1106
|
-
ClientRequestToken:
|
|
1222
|
+
RoleARN: RoleARN | None
|
|
1223
|
+
ResourcesToSkip: ResourcesToSkip | None
|
|
1224
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1107
1225
|
|
|
1108
1226
|
|
|
1109
1227
|
class ContinueUpdateRollbackOutput(TypedDict, total=False):
|
|
1110
1228
|
pass
|
|
1111
1229
|
|
|
1112
1230
|
|
|
1113
|
-
ResourceIdentifierProperties =
|
|
1231
|
+
ResourceIdentifierProperties = dict[ResourceIdentifierPropertyKey, ResourceIdentifierPropertyValue]
|
|
1114
1232
|
|
|
1115
1233
|
|
|
1116
1234
|
class ResourceToImport(TypedDict, total=False):
|
|
@@ -1119,7 +1237,7 @@ class ResourceToImport(TypedDict, total=False):
|
|
|
1119
1237
|
ResourceIdentifier: ResourceIdentifierProperties
|
|
1120
1238
|
|
|
1121
1239
|
|
|
1122
|
-
ResourcesToImport =
|
|
1240
|
+
ResourcesToImport = list[ResourceToImport]
|
|
1123
1241
|
|
|
1124
1242
|
|
|
1125
1243
|
class Tag(TypedDict, total=False):
|
|
@@ -1127,8 +1245,8 @@ class Tag(TypedDict, total=False):
|
|
|
1127
1245
|
Value: TagValue
|
|
1128
1246
|
|
|
1129
1247
|
|
|
1130
|
-
Tags =
|
|
1131
|
-
NotificationARNs =
|
|
1248
|
+
Tags = list[Tag]
|
|
1249
|
+
NotificationARNs = list[NotificationARN]
|
|
1132
1250
|
|
|
1133
1251
|
|
|
1134
1252
|
class RollbackTrigger(TypedDict, total=False):
|
|
@@ -1136,149 +1254,151 @@ class RollbackTrigger(TypedDict, total=False):
|
|
|
1136
1254
|
Type: Type
|
|
1137
1255
|
|
|
1138
1256
|
|
|
1139
|
-
RollbackTriggers =
|
|
1257
|
+
RollbackTriggers = list[RollbackTrigger]
|
|
1140
1258
|
|
|
1141
1259
|
|
|
1142
1260
|
class RollbackConfiguration(TypedDict, total=False):
|
|
1143
|
-
RollbackTriggers:
|
|
1144
|
-
MonitoringTimeInMinutes:
|
|
1261
|
+
RollbackTriggers: RollbackTriggers | None
|
|
1262
|
+
MonitoringTimeInMinutes: MonitoringTimeInMinutes | None
|
|
1145
1263
|
|
|
1146
1264
|
|
|
1147
|
-
ResourceTypes =
|
|
1265
|
+
ResourceTypes = list[ResourceType]
|
|
1148
1266
|
|
|
1149
1267
|
|
|
1150
1268
|
class Parameter(TypedDict, total=False):
|
|
1151
|
-
ParameterKey:
|
|
1152
|
-
ParameterValue:
|
|
1153
|
-
UsePreviousValue:
|
|
1154
|
-
ResolvedValue:
|
|
1269
|
+
ParameterKey: ParameterKey | None
|
|
1270
|
+
ParameterValue: ParameterValue | None
|
|
1271
|
+
UsePreviousValue: UsePreviousValue | None
|
|
1272
|
+
ResolvedValue: ParameterValue | None
|
|
1155
1273
|
|
|
1156
1274
|
|
|
1157
|
-
Parameters =
|
|
1275
|
+
Parameters = list[Parameter]
|
|
1158
1276
|
|
|
1159
1277
|
|
|
1160
1278
|
class CreateChangeSetInput(ServiceRequest):
|
|
1161
1279
|
StackName: StackNameOrId
|
|
1162
|
-
TemplateBody:
|
|
1163
|
-
TemplateURL:
|
|
1164
|
-
UsePreviousTemplate:
|
|
1165
|
-
Parameters:
|
|
1166
|
-
Capabilities:
|
|
1167
|
-
ResourceTypes:
|
|
1168
|
-
RoleARN:
|
|
1169
|
-
RollbackConfiguration:
|
|
1170
|
-
NotificationARNs:
|
|
1171
|
-
Tags:
|
|
1280
|
+
TemplateBody: TemplateBody | None
|
|
1281
|
+
TemplateURL: TemplateURL | None
|
|
1282
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
1283
|
+
Parameters: Parameters | None
|
|
1284
|
+
Capabilities: Capabilities | None
|
|
1285
|
+
ResourceTypes: ResourceTypes | None
|
|
1286
|
+
RoleARN: RoleARN | None
|
|
1287
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1288
|
+
NotificationARNs: NotificationARNs | None
|
|
1289
|
+
Tags: Tags | None
|
|
1172
1290
|
ChangeSetName: ChangeSetName
|
|
1173
|
-
ClientToken:
|
|
1174
|
-
Description:
|
|
1175
|
-
ChangeSetType:
|
|
1176
|
-
ResourcesToImport:
|
|
1177
|
-
IncludeNestedStacks:
|
|
1178
|
-
OnStackFailure:
|
|
1179
|
-
ImportExistingResources:
|
|
1291
|
+
ClientToken: ClientToken | None
|
|
1292
|
+
Description: Description | None
|
|
1293
|
+
ChangeSetType: ChangeSetType | None
|
|
1294
|
+
ResourcesToImport: ResourcesToImport | None
|
|
1295
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1296
|
+
OnStackFailure: OnStackFailure | None
|
|
1297
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1298
|
+
DeploymentMode: DeploymentMode | None
|
|
1180
1299
|
|
|
1181
1300
|
|
|
1182
1301
|
class CreateChangeSetOutput(TypedDict, total=False):
|
|
1183
|
-
Id:
|
|
1184
|
-
StackId:
|
|
1302
|
+
Id: ChangeSetId | None
|
|
1303
|
+
StackId: StackId | None
|
|
1185
1304
|
|
|
1186
1305
|
|
|
1187
1306
|
class TemplateConfiguration(TypedDict, total=False):
|
|
1188
|
-
DeletionPolicy:
|
|
1189
|
-
UpdateReplacePolicy:
|
|
1307
|
+
DeletionPolicy: GeneratedTemplateDeletionPolicy | None
|
|
1308
|
+
UpdateReplacePolicy: GeneratedTemplateUpdateReplacePolicy | None
|
|
1190
1309
|
|
|
1191
1310
|
|
|
1192
1311
|
class ResourceDefinition(TypedDict, total=False):
|
|
1193
1312
|
ResourceType: ResourceType
|
|
1194
|
-
LogicalResourceId:
|
|
1313
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1195
1314
|
ResourceIdentifier: ResourceIdentifierProperties
|
|
1196
1315
|
|
|
1197
1316
|
|
|
1198
|
-
ResourceDefinitions =
|
|
1317
|
+
ResourceDefinitions = list[ResourceDefinition]
|
|
1199
1318
|
|
|
1200
1319
|
|
|
1201
1320
|
class CreateGeneratedTemplateInput(ServiceRequest):
|
|
1202
|
-
Resources:
|
|
1321
|
+
Resources: ResourceDefinitions | None
|
|
1203
1322
|
GeneratedTemplateName: GeneratedTemplateName
|
|
1204
|
-
StackName:
|
|
1205
|
-
TemplateConfiguration:
|
|
1323
|
+
StackName: StackName | None
|
|
1324
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
1206
1325
|
|
|
1207
1326
|
|
|
1208
1327
|
class CreateGeneratedTemplateOutput(TypedDict, total=False):
|
|
1209
|
-
GeneratedTemplateId:
|
|
1328
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
1210
1329
|
|
|
1211
1330
|
|
|
1212
1331
|
class CreateStackInput(ServiceRequest):
|
|
1213
1332
|
StackName: StackName
|
|
1214
|
-
TemplateBody:
|
|
1215
|
-
TemplateURL:
|
|
1216
|
-
Parameters:
|
|
1217
|
-
DisableRollback:
|
|
1218
|
-
RollbackConfiguration:
|
|
1219
|
-
TimeoutInMinutes:
|
|
1220
|
-
NotificationARNs:
|
|
1221
|
-
Capabilities:
|
|
1222
|
-
ResourceTypes:
|
|
1223
|
-
RoleARN:
|
|
1224
|
-
OnFailure:
|
|
1225
|
-
StackPolicyBody:
|
|
1226
|
-
StackPolicyURL:
|
|
1227
|
-
Tags:
|
|
1228
|
-
ClientRequestToken:
|
|
1229
|
-
EnableTerminationProtection:
|
|
1230
|
-
RetainExceptOnCreate:
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
RegionList =
|
|
1333
|
+
TemplateBody: TemplateBody | None
|
|
1334
|
+
TemplateURL: TemplateURL | None
|
|
1335
|
+
Parameters: Parameters | None
|
|
1336
|
+
DisableRollback: DisableRollback | None
|
|
1337
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1338
|
+
TimeoutInMinutes: TimeoutMinutes | None
|
|
1339
|
+
NotificationARNs: NotificationARNs | None
|
|
1340
|
+
Capabilities: Capabilities | None
|
|
1341
|
+
ResourceTypes: ResourceTypes | None
|
|
1342
|
+
RoleARN: RoleARN | None
|
|
1343
|
+
OnFailure: OnFailure | None
|
|
1344
|
+
StackPolicyBody: StackPolicyBody | None
|
|
1345
|
+
StackPolicyURL: StackPolicyURL | None
|
|
1346
|
+
Tags: Tags | None
|
|
1347
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1348
|
+
EnableTerminationProtection: EnableTerminationProtection | None
|
|
1349
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
1350
|
+
|
|
1351
|
+
|
|
1352
|
+
RegionList = list[Region]
|
|
1234
1353
|
|
|
1235
1354
|
|
|
1236
1355
|
class StackSetOperationPreferences(TypedDict, total=False):
|
|
1237
|
-
RegionConcurrencyType:
|
|
1238
|
-
RegionOrder:
|
|
1239
|
-
FailureToleranceCount:
|
|
1240
|
-
FailureTolerancePercentage:
|
|
1241
|
-
MaxConcurrentCount:
|
|
1242
|
-
MaxConcurrentPercentage:
|
|
1243
|
-
ConcurrencyMode:
|
|
1356
|
+
RegionConcurrencyType: RegionConcurrencyType | None
|
|
1357
|
+
RegionOrder: RegionList | None
|
|
1358
|
+
FailureToleranceCount: FailureToleranceCount | None
|
|
1359
|
+
FailureTolerancePercentage: FailureTolerancePercentage | None
|
|
1360
|
+
MaxConcurrentCount: MaxConcurrentCount | None
|
|
1361
|
+
MaxConcurrentPercentage: MaxConcurrentPercentage | None
|
|
1362
|
+
ConcurrencyMode: ConcurrencyMode | None
|
|
1244
1363
|
|
|
1245
1364
|
|
|
1246
|
-
OrganizationalUnitIdList =
|
|
1365
|
+
OrganizationalUnitIdList = list[OrganizationalUnitId]
|
|
1247
1366
|
|
|
1248
1367
|
|
|
1249
1368
|
class DeploymentTargets(TypedDict, total=False):
|
|
1250
|
-
Accounts:
|
|
1251
|
-
AccountsUrl:
|
|
1252
|
-
OrganizationalUnitIds:
|
|
1253
|
-
AccountFilterType:
|
|
1369
|
+
Accounts: AccountList | None
|
|
1370
|
+
AccountsUrl: AccountsUrl | None
|
|
1371
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
1372
|
+
AccountFilterType: AccountFilterType | None
|
|
1254
1373
|
|
|
1255
1374
|
|
|
1256
1375
|
class CreateStackInstancesInput(ServiceRequest):
|
|
1257
1376
|
StackSetName: StackSetName
|
|
1258
|
-
Accounts:
|
|
1259
|
-
DeploymentTargets:
|
|
1377
|
+
Accounts: AccountList | None
|
|
1378
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1260
1379
|
Regions: RegionList
|
|
1261
|
-
ParameterOverrides:
|
|
1262
|
-
OperationPreferences:
|
|
1263
|
-
OperationId:
|
|
1264
|
-
CallAs:
|
|
1380
|
+
ParameterOverrides: Parameters | None
|
|
1381
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1382
|
+
OperationId: ClientRequestToken | None
|
|
1383
|
+
CallAs: CallAs | None
|
|
1265
1384
|
|
|
1266
1385
|
|
|
1267
1386
|
class CreateStackInstancesOutput(TypedDict, total=False):
|
|
1268
|
-
OperationId:
|
|
1387
|
+
OperationId: ClientRequestToken | None
|
|
1269
1388
|
|
|
1270
1389
|
|
|
1271
1390
|
class CreateStackOutput(TypedDict, total=False):
|
|
1272
|
-
StackId:
|
|
1391
|
+
StackId: StackId | None
|
|
1392
|
+
OperationId: OperationId | None
|
|
1273
1393
|
|
|
1274
1394
|
|
|
1275
1395
|
class StackDefinition(TypedDict, total=False):
|
|
1276
|
-
StackName:
|
|
1277
|
-
TemplateBody:
|
|
1278
|
-
TemplateURL:
|
|
1396
|
+
StackName: StackName | None
|
|
1397
|
+
TemplateBody: TemplateBody | None
|
|
1398
|
+
TemplateURL: TemplateURL | None
|
|
1279
1399
|
|
|
1280
1400
|
|
|
1281
|
-
StackDefinitions =
|
|
1401
|
+
StackDefinitions = list[StackDefinition]
|
|
1282
1402
|
|
|
1283
1403
|
|
|
1284
1404
|
class ResourceLocation(TypedDict, total=False):
|
|
@@ -1291,13 +1411,13 @@ class ResourceMapping(TypedDict, total=False):
|
|
|
1291
1411
|
Destination: ResourceLocation
|
|
1292
1412
|
|
|
1293
1413
|
|
|
1294
|
-
ResourceMappings =
|
|
1414
|
+
ResourceMappings = list[ResourceMapping]
|
|
1295
1415
|
|
|
1296
1416
|
|
|
1297
1417
|
class CreateStackRefactorInput(ServiceRequest):
|
|
1298
|
-
Description:
|
|
1299
|
-
EnableStackCreation:
|
|
1300
|
-
ResourceMappings:
|
|
1418
|
+
Description: Description | None
|
|
1419
|
+
EnableStackCreation: EnableStackCreation | None
|
|
1420
|
+
ResourceMappings: ResourceMappings | None
|
|
1301
1421
|
StackDefinitions: StackDefinitions
|
|
1302
1422
|
|
|
1303
1423
|
|
|
@@ -1306,29 +1426,29 @@ class CreateStackRefactorOutput(TypedDict, total=False):
|
|
|
1306
1426
|
|
|
1307
1427
|
|
|
1308
1428
|
class ManagedExecution(TypedDict, total=False):
|
|
1309
|
-
Active:
|
|
1429
|
+
Active: ManagedExecutionNullable | None
|
|
1310
1430
|
|
|
1311
1431
|
|
|
1312
1432
|
class CreateStackSetInput(ServiceRequest):
|
|
1313
1433
|
StackSetName: StackSetName
|
|
1314
|
-
Description:
|
|
1315
|
-
TemplateBody:
|
|
1316
|
-
TemplateURL:
|
|
1317
|
-
StackId:
|
|
1318
|
-
Parameters:
|
|
1319
|
-
Capabilities:
|
|
1320
|
-
Tags:
|
|
1321
|
-
AdministrationRoleARN:
|
|
1322
|
-
ExecutionRoleName:
|
|
1323
|
-
PermissionModel:
|
|
1324
|
-
AutoDeployment:
|
|
1325
|
-
CallAs:
|
|
1326
|
-
ClientRequestToken:
|
|
1327
|
-
ManagedExecution:
|
|
1434
|
+
Description: Description | None
|
|
1435
|
+
TemplateBody: TemplateBody | None
|
|
1436
|
+
TemplateURL: TemplateURL | None
|
|
1437
|
+
StackId: StackId | None
|
|
1438
|
+
Parameters: Parameters | None
|
|
1439
|
+
Capabilities: Capabilities | None
|
|
1440
|
+
Tags: Tags | None
|
|
1441
|
+
AdministrationRoleARN: RoleARN | None
|
|
1442
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
1443
|
+
PermissionModel: PermissionModels | None
|
|
1444
|
+
AutoDeployment: AutoDeployment | None
|
|
1445
|
+
CallAs: CallAs | None
|
|
1446
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1447
|
+
ManagedExecution: ManagedExecution | None
|
|
1328
1448
|
|
|
1329
1449
|
|
|
1330
1450
|
class CreateStackSetOutput(TypedDict, total=False):
|
|
1331
|
-
StackSetId:
|
|
1451
|
+
StackSetId: StackSetId | None
|
|
1332
1452
|
|
|
1333
1453
|
|
|
1334
1454
|
class DeactivateOrganizationsAccessInput(ServiceRequest):
|
|
@@ -1340,9 +1460,9 @@ class DeactivateOrganizationsAccessOutput(TypedDict, total=False):
|
|
|
1340
1460
|
|
|
1341
1461
|
|
|
1342
1462
|
class DeactivateTypeInput(ServiceRequest):
|
|
1343
|
-
TypeName:
|
|
1344
|
-
Type:
|
|
1345
|
-
Arn:
|
|
1463
|
+
TypeName: TypeName | None
|
|
1464
|
+
Type: ThirdPartyType | None
|
|
1465
|
+
Arn: PrivateTypeArn | None
|
|
1346
1466
|
|
|
1347
1467
|
|
|
1348
1468
|
class DeactivateTypeOutput(TypedDict, total=False):
|
|
@@ -1351,7 +1471,7 @@ class DeactivateTypeOutput(TypedDict, total=False):
|
|
|
1351
1471
|
|
|
1352
1472
|
class DeleteChangeSetInput(ServiceRequest):
|
|
1353
1473
|
ChangeSetName: ChangeSetNameOrId
|
|
1354
|
-
StackName:
|
|
1474
|
+
StackName: StackNameOrId | None
|
|
1355
1475
|
|
|
1356
1476
|
|
|
1357
1477
|
class DeleteChangeSetOutput(TypedDict, total=False):
|
|
@@ -1362,35 +1482,35 @@ class DeleteGeneratedTemplateInput(ServiceRequest):
|
|
|
1362
1482
|
GeneratedTemplateName: GeneratedTemplateName
|
|
1363
1483
|
|
|
1364
1484
|
|
|
1365
|
-
RetainResources =
|
|
1485
|
+
RetainResources = list[LogicalResourceId]
|
|
1366
1486
|
|
|
1367
1487
|
|
|
1368
1488
|
class DeleteStackInput(ServiceRequest):
|
|
1369
1489
|
StackName: StackName
|
|
1370
|
-
RetainResources:
|
|
1371
|
-
RoleARN:
|
|
1372
|
-
ClientRequestToken:
|
|
1373
|
-
DeletionMode:
|
|
1490
|
+
RetainResources: RetainResources | None
|
|
1491
|
+
RoleARN: RoleARN | None
|
|
1492
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1493
|
+
DeletionMode: DeletionMode | None
|
|
1374
1494
|
|
|
1375
1495
|
|
|
1376
1496
|
class DeleteStackInstancesInput(ServiceRequest):
|
|
1377
1497
|
StackSetName: StackSetName
|
|
1378
|
-
Accounts:
|
|
1379
|
-
DeploymentTargets:
|
|
1498
|
+
Accounts: AccountList | None
|
|
1499
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1380
1500
|
Regions: RegionList
|
|
1381
|
-
OperationPreferences:
|
|
1501
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1382
1502
|
RetainStacks: RetainStacks
|
|
1383
|
-
OperationId:
|
|
1384
|
-
CallAs:
|
|
1503
|
+
OperationId: ClientRequestToken | None
|
|
1504
|
+
CallAs: CallAs | None
|
|
1385
1505
|
|
|
1386
1506
|
|
|
1387
1507
|
class DeleteStackInstancesOutput(TypedDict, total=False):
|
|
1388
|
-
OperationId:
|
|
1508
|
+
OperationId: ClientRequestToken | None
|
|
1389
1509
|
|
|
1390
1510
|
|
|
1391
1511
|
class DeleteStackSetInput(ServiceRequest):
|
|
1392
1512
|
StackSetName: StackSetName
|
|
1393
|
-
CallAs:
|
|
1513
|
+
CallAs: CallAs | None
|
|
1394
1514
|
|
|
1395
1515
|
|
|
1396
1516
|
class DeleteStackSetOutput(TypedDict, total=False):
|
|
@@ -1401,10 +1521,10 @@ DeletionTime = datetime
|
|
|
1401
1521
|
|
|
1402
1522
|
|
|
1403
1523
|
class DeregisterTypeInput(ServiceRequest):
|
|
1404
|
-
Arn:
|
|
1405
|
-
Type:
|
|
1406
|
-
TypeName:
|
|
1407
|
-
VersionId:
|
|
1524
|
+
Arn: PrivateTypeArn | None
|
|
1525
|
+
Type: RegistryType | None
|
|
1526
|
+
TypeName: TypeName | None
|
|
1527
|
+
VersionId: TypeVersionId | None
|
|
1408
1528
|
|
|
1409
1529
|
|
|
1410
1530
|
class DeregisterTypeOutput(TypedDict, total=False):
|
|
@@ -1412,60 +1532,112 @@ class DeregisterTypeOutput(TypedDict, total=False):
|
|
|
1412
1532
|
|
|
1413
1533
|
|
|
1414
1534
|
class DescribeAccountLimitsInput(ServiceRequest):
|
|
1415
|
-
NextToken:
|
|
1535
|
+
NextToken: NextToken | None
|
|
1416
1536
|
|
|
1417
1537
|
|
|
1418
1538
|
class DescribeAccountLimitsOutput(TypedDict, total=False):
|
|
1419
|
-
AccountLimits:
|
|
1420
|
-
NextToken:
|
|
1539
|
+
AccountLimits: AccountLimitList | None
|
|
1540
|
+
NextToken: NextToken | None
|
|
1421
1541
|
|
|
1422
1542
|
|
|
1423
1543
|
class DescribeChangeSetHooksInput(ServiceRequest):
|
|
1424
1544
|
ChangeSetName: ChangeSetNameOrId
|
|
1425
|
-
StackName:
|
|
1426
|
-
NextToken:
|
|
1427
|
-
LogicalResourceId:
|
|
1545
|
+
StackName: StackNameOrId | None
|
|
1546
|
+
NextToken: NextToken | None
|
|
1547
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1428
1548
|
|
|
1429
1549
|
|
|
1430
1550
|
class DescribeChangeSetHooksOutput(TypedDict, total=False):
|
|
1431
|
-
ChangeSetId:
|
|
1432
|
-
ChangeSetName:
|
|
1433
|
-
Hooks:
|
|
1434
|
-
Status:
|
|
1435
|
-
NextToken:
|
|
1436
|
-
StackId:
|
|
1437
|
-
StackName:
|
|
1551
|
+
ChangeSetId: ChangeSetId | None
|
|
1552
|
+
ChangeSetName: ChangeSetName | None
|
|
1553
|
+
Hooks: ChangeSetHooks | None
|
|
1554
|
+
Status: ChangeSetHooksStatus | None
|
|
1555
|
+
NextToken: NextToken | None
|
|
1556
|
+
StackId: StackId | None
|
|
1557
|
+
StackName: StackName | None
|
|
1438
1558
|
|
|
1439
1559
|
|
|
1440
1560
|
class DescribeChangeSetInput(ServiceRequest):
|
|
1441
1561
|
ChangeSetName: ChangeSetNameOrId
|
|
1442
|
-
StackName:
|
|
1443
|
-
NextToken:
|
|
1444
|
-
IncludePropertyValues:
|
|
1562
|
+
StackName: StackNameOrId | None
|
|
1563
|
+
NextToken: NextToken | None
|
|
1564
|
+
IncludePropertyValues: IncludePropertyValues | None
|
|
1445
1565
|
|
|
1446
1566
|
|
|
1447
1567
|
class DescribeChangeSetOutput(TypedDict, total=False):
|
|
1448
|
-
ChangeSetName:
|
|
1449
|
-
ChangeSetId:
|
|
1450
|
-
StackId:
|
|
1451
|
-
StackName:
|
|
1452
|
-
Description:
|
|
1453
|
-
Parameters:
|
|
1454
|
-
CreationTime:
|
|
1455
|
-
ExecutionStatus:
|
|
1456
|
-
Status:
|
|
1457
|
-
StatusReason:
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1568
|
+
ChangeSetName: ChangeSetName | None
|
|
1569
|
+
ChangeSetId: ChangeSetId | None
|
|
1570
|
+
StackId: StackId | None
|
|
1571
|
+
StackName: StackName | None
|
|
1572
|
+
Description: Description | None
|
|
1573
|
+
Parameters: Parameters | None
|
|
1574
|
+
CreationTime: CreationTime | None
|
|
1575
|
+
ExecutionStatus: ExecutionStatus | None
|
|
1576
|
+
Status: ChangeSetStatus | None
|
|
1577
|
+
StatusReason: ChangeSetStatusReason | None
|
|
1578
|
+
StackDriftStatus: StackDriftStatus | None
|
|
1579
|
+
NotificationARNs: NotificationARNs | None
|
|
1580
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1581
|
+
Capabilities: Capabilities | None
|
|
1582
|
+
Tags: Tags | None
|
|
1583
|
+
Changes: Changes | None
|
|
1584
|
+
NextToken: NextToken | None
|
|
1585
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1586
|
+
ParentChangeSetId: ChangeSetId | None
|
|
1587
|
+
RootChangeSetId: ChangeSetId | None
|
|
1588
|
+
OnStackFailure: OnStackFailure | None
|
|
1589
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1590
|
+
DeploymentMode: DeploymentMode | None
|
|
1591
|
+
|
|
1592
|
+
|
|
1593
|
+
class EventFilter(TypedDict, total=False):
|
|
1594
|
+
FailedEvents: FailedEventsFilter | None
|
|
1595
|
+
|
|
1596
|
+
|
|
1597
|
+
class DescribeEventsInput(ServiceRequest):
|
|
1598
|
+
StackName: StackNameOrId | None
|
|
1599
|
+
ChangeSetName: ChangeSetNameOrId | None
|
|
1600
|
+
OperationId: OperationId | None
|
|
1601
|
+
Filters: EventFilter | None
|
|
1602
|
+
NextToken: NextToken | None
|
|
1603
|
+
|
|
1604
|
+
|
|
1605
|
+
class OperationEvent(TypedDict, total=False):
|
|
1606
|
+
EventId: EventId | None
|
|
1607
|
+
StackId: StackId | None
|
|
1608
|
+
OperationId: OperationId | None
|
|
1609
|
+
OperationType: OperationType | None
|
|
1610
|
+
OperationStatus: BeaconStackOperationStatus | None
|
|
1611
|
+
EventType: EventType | None
|
|
1612
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1613
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1614
|
+
ResourceType: ResourceType | None
|
|
1615
|
+
Timestamp: Timestamp | None
|
|
1616
|
+
StartTime: Timestamp | None
|
|
1617
|
+
EndTime: Timestamp | None
|
|
1618
|
+
ResourceStatus: ResourceStatus | None
|
|
1619
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1620
|
+
ResourceProperties: ResourceProperties | None
|
|
1621
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1622
|
+
HookType: HookType | None
|
|
1623
|
+
HookStatus: HookStatus | None
|
|
1624
|
+
HookStatusReason: HookStatusReason | None
|
|
1625
|
+
HookInvocationPoint: HookInvocationPoint | None
|
|
1626
|
+
HookFailureMode: HookFailureMode | None
|
|
1627
|
+
DetailedStatus: DetailedStatus | None
|
|
1628
|
+
ValidationFailureMode: HookFailureMode | None
|
|
1629
|
+
ValidationName: ValidationName | None
|
|
1630
|
+
ValidationStatus: ValidationStatus | None
|
|
1631
|
+
ValidationStatusReason: ValidationStatusReason | None
|
|
1632
|
+
ValidationPath: ValidationPath | None
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
OperationEvents = list[OperationEvent]
|
|
1636
|
+
|
|
1637
|
+
|
|
1638
|
+
class DescribeEventsOutput(TypedDict, total=False):
|
|
1639
|
+
OperationEvents: OperationEvents | None
|
|
1640
|
+
NextToken: NextToken | None
|
|
1469
1641
|
|
|
1470
1642
|
|
|
1471
1643
|
class DescribeGeneratedTemplateInput(ServiceRequest):
|
|
@@ -1473,102 +1645,102 @@ class DescribeGeneratedTemplateInput(ServiceRequest):
|
|
|
1473
1645
|
|
|
1474
1646
|
|
|
1475
1647
|
class TemplateProgress(TypedDict, total=False):
|
|
1476
|
-
ResourcesSucceeded:
|
|
1477
|
-
ResourcesFailed:
|
|
1478
|
-
ResourcesProcessing:
|
|
1479
|
-
ResourcesPending:
|
|
1648
|
+
ResourcesSucceeded: ResourcesSucceeded | None
|
|
1649
|
+
ResourcesFailed: ResourcesFailed | None
|
|
1650
|
+
ResourcesProcessing: ResourcesProcessing | None
|
|
1651
|
+
ResourcesPending: ResourcesPending | None
|
|
1480
1652
|
|
|
1481
1653
|
|
|
1482
1654
|
LastUpdatedTime = datetime
|
|
1483
1655
|
|
|
1484
1656
|
|
|
1485
1657
|
class WarningProperty(TypedDict, total=False):
|
|
1486
|
-
PropertyPath:
|
|
1487
|
-
Required:
|
|
1488
|
-
Description:
|
|
1658
|
+
PropertyPath: PropertyPath | None
|
|
1659
|
+
Required: RequiredProperty | None
|
|
1660
|
+
Description: PropertyDescription | None
|
|
1489
1661
|
|
|
1490
1662
|
|
|
1491
|
-
WarningProperties =
|
|
1663
|
+
WarningProperties = list[WarningProperty]
|
|
1492
1664
|
|
|
1493
1665
|
|
|
1494
1666
|
class WarningDetail(TypedDict, total=False):
|
|
1495
|
-
Type:
|
|
1496
|
-
Properties:
|
|
1667
|
+
Type: WarningType | None
|
|
1668
|
+
Properties: WarningProperties | None
|
|
1497
1669
|
|
|
1498
1670
|
|
|
1499
|
-
WarningDetails =
|
|
1671
|
+
WarningDetails = list[WarningDetail]
|
|
1500
1672
|
|
|
1501
1673
|
|
|
1502
1674
|
class ResourceDetail(TypedDict, total=False):
|
|
1503
|
-
ResourceType:
|
|
1504
|
-
LogicalResourceId:
|
|
1505
|
-
ResourceIdentifier:
|
|
1506
|
-
ResourceStatus:
|
|
1507
|
-
ResourceStatusReason:
|
|
1508
|
-
Warnings:
|
|
1675
|
+
ResourceType: ResourceType | None
|
|
1676
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1677
|
+
ResourceIdentifier: ResourceIdentifierProperties | None
|
|
1678
|
+
ResourceStatus: GeneratedTemplateResourceStatus | None
|
|
1679
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1680
|
+
Warnings: WarningDetails | None
|
|
1509
1681
|
|
|
1510
1682
|
|
|
1511
|
-
ResourceDetails =
|
|
1683
|
+
ResourceDetails = list[ResourceDetail]
|
|
1512
1684
|
|
|
1513
1685
|
|
|
1514
1686
|
class DescribeGeneratedTemplateOutput(TypedDict, total=False):
|
|
1515
|
-
GeneratedTemplateId:
|
|
1516
|
-
GeneratedTemplateName:
|
|
1517
|
-
Resources:
|
|
1518
|
-
Status:
|
|
1519
|
-
StatusReason:
|
|
1520
|
-
CreationTime:
|
|
1521
|
-
LastUpdatedTime:
|
|
1522
|
-
Progress:
|
|
1523
|
-
StackId:
|
|
1524
|
-
TemplateConfiguration:
|
|
1525
|
-
TotalWarnings:
|
|
1687
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
1688
|
+
GeneratedTemplateName: GeneratedTemplateName | None
|
|
1689
|
+
Resources: ResourceDetails | None
|
|
1690
|
+
Status: GeneratedTemplateStatus | None
|
|
1691
|
+
StatusReason: TemplateStatusReason | None
|
|
1692
|
+
CreationTime: CreationTime | None
|
|
1693
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
1694
|
+
Progress: TemplateProgress | None
|
|
1695
|
+
StackId: StackId | None
|
|
1696
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
1697
|
+
TotalWarnings: TotalWarnings | None
|
|
1526
1698
|
|
|
1527
1699
|
|
|
1528
1700
|
class DescribeOrganizationsAccessInput(ServiceRequest):
|
|
1529
|
-
CallAs:
|
|
1701
|
+
CallAs: CallAs | None
|
|
1530
1702
|
|
|
1531
1703
|
|
|
1532
1704
|
class DescribeOrganizationsAccessOutput(TypedDict, total=False):
|
|
1533
|
-
Status:
|
|
1705
|
+
Status: OrganizationStatus | None
|
|
1534
1706
|
|
|
1535
1707
|
|
|
1536
1708
|
class DescribePublisherInput(ServiceRequest):
|
|
1537
|
-
PublisherId:
|
|
1709
|
+
PublisherId: PublisherId | None
|
|
1538
1710
|
|
|
1539
1711
|
|
|
1540
1712
|
class DescribePublisherOutput(TypedDict, total=False):
|
|
1541
|
-
PublisherId:
|
|
1542
|
-
PublisherStatus:
|
|
1543
|
-
IdentityProvider:
|
|
1544
|
-
PublisherProfile:
|
|
1713
|
+
PublisherId: PublisherId | None
|
|
1714
|
+
PublisherStatus: PublisherStatus | None
|
|
1715
|
+
IdentityProvider: IdentityProvider | None
|
|
1716
|
+
PublisherProfile: PublisherProfile | None
|
|
1545
1717
|
|
|
1546
1718
|
|
|
1547
1719
|
class DescribeResourceScanInput(ServiceRequest):
|
|
1548
1720
|
ResourceScanId: ResourceScanId
|
|
1549
1721
|
|
|
1550
1722
|
|
|
1551
|
-
ResourceTypeFilters =
|
|
1723
|
+
ResourceTypeFilters = list[ResourceTypeFilter]
|
|
1552
1724
|
|
|
1553
1725
|
|
|
1554
1726
|
class ScanFilter(TypedDict, total=False):
|
|
1555
|
-
Types:
|
|
1727
|
+
Types: ResourceTypeFilters | None
|
|
1556
1728
|
|
|
1557
1729
|
|
|
1558
|
-
ScanFilters =
|
|
1730
|
+
ScanFilters = list[ScanFilter]
|
|
1559
1731
|
|
|
1560
1732
|
|
|
1561
1733
|
class DescribeResourceScanOutput(TypedDict, total=False):
|
|
1562
|
-
ResourceScanId:
|
|
1563
|
-
Status:
|
|
1564
|
-
StatusReason:
|
|
1565
|
-
StartTime:
|
|
1566
|
-
EndTime:
|
|
1567
|
-
PercentageCompleted:
|
|
1568
|
-
ResourceTypes:
|
|
1569
|
-
ResourcesScanned:
|
|
1570
|
-
ResourcesRead:
|
|
1571
|
-
ScanFilters:
|
|
1734
|
+
ResourceScanId: ResourceScanId | None
|
|
1735
|
+
Status: ResourceScanStatus | None
|
|
1736
|
+
StatusReason: ResourceScanStatusReason | None
|
|
1737
|
+
StartTime: Timestamp | None
|
|
1738
|
+
EndTime: Timestamp | None
|
|
1739
|
+
PercentageCompleted: PercentageCompleted | None
|
|
1740
|
+
ResourceTypes: ResourceTypes | None
|
|
1741
|
+
ResourcesScanned: ResourcesScanned | None
|
|
1742
|
+
ResourcesRead: ResourcesRead | None
|
|
1743
|
+
ScanFilters: ScanFilters | None
|
|
1572
1744
|
|
|
1573
1745
|
|
|
1574
1746
|
class DescribeStackDriftDetectionStatusInput(ServiceRequest):
|
|
@@ -1578,102 +1750,103 @@ class DescribeStackDriftDetectionStatusInput(ServiceRequest):
|
|
|
1578
1750
|
class DescribeStackDriftDetectionStatusOutput(TypedDict, total=False):
|
|
1579
1751
|
StackId: StackId
|
|
1580
1752
|
StackDriftDetectionId: StackDriftDetectionId
|
|
1581
|
-
StackDriftStatus:
|
|
1753
|
+
StackDriftStatus: StackDriftStatus | None
|
|
1582
1754
|
DetectionStatus: StackDriftDetectionStatus
|
|
1583
|
-
DetectionStatusReason:
|
|
1584
|
-
DriftedStackResourceCount:
|
|
1755
|
+
DetectionStatusReason: StackDriftDetectionStatusReason | None
|
|
1756
|
+
DriftedStackResourceCount: BoxedInteger | None
|
|
1585
1757
|
Timestamp: Timestamp
|
|
1586
1758
|
|
|
1587
1759
|
|
|
1588
1760
|
class DescribeStackEventsInput(ServiceRequest):
|
|
1589
|
-
StackName:
|
|
1590
|
-
NextToken:
|
|
1761
|
+
StackName: StackName
|
|
1762
|
+
NextToken: NextToken | None
|
|
1591
1763
|
|
|
1592
1764
|
|
|
1593
1765
|
class StackEvent(TypedDict, total=False):
|
|
1594
1766
|
StackId: StackId
|
|
1595
1767
|
EventId: EventId
|
|
1596
1768
|
StackName: StackName
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1769
|
+
OperationId: OperationId | None
|
|
1770
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1771
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1772
|
+
ResourceType: ResourceType | None
|
|
1600
1773
|
Timestamp: Timestamp
|
|
1601
|
-
ResourceStatus:
|
|
1602
|
-
ResourceStatusReason:
|
|
1603
|
-
ResourceProperties:
|
|
1604
|
-
ClientRequestToken:
|
|
1605
|
-
HookType:
|
|
1606
|
-
HookStatus:
|
|
1607
|
-
HookStatusReason:
|
|
1608
|
-
HookInvocationPoint:
|
|
1609
|
-
HookInvocationId:
|
|
1610
|
-
HookFailureMode:
|
|
1611
|
-
DetailedStatus:
|
|
1774
|
+
ResourceStatus: ResourceStatus | None
|
|
1775
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1776
|
+
ResourceProperties: ResourceProperties | None
|
|
1777
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1778
|
+
HookType: HookType | None
|
|
1779
|
+
HookStatus: HookStatus | None
|
|
1780
|
+
HookStatusReason: HookStatusReason | None
|
|
1781
|
+
HookInvocationPoint: HookInvocationPoint | None
|
|
1782
|
+
HookInvocationId: HookInvocationId | None
|
|
1783
|
+
HookFailureMode: HookFailureMode | None
|
|
1784
|
+
DetailedStatus: DetailedStatus | None
|
|
1612
1785
|
|
|
1613
1786
|
|
|
1614
|
-
StackEvents =
|
|
1787
|
+
StackEvents = list[StackEvent]
|
|
1615
1788
|
|
|
1616
1789
|
|
|
1617
1790
|
class DescribeStackEventsOutput(TypedDict, total=False):
|
|
1618
|
-
StackEvents:
|
|
1619
|
-
NextToken:
|
|
1791
|
+
StackEvents: StackEvents | None
|
|
1792
|
+
NextToken: NextToken | None
|
|
1620
1793
|
|
|
1621
1794
|
|
|
1622
1795
|
class DescribeStackInstanceInput(ServiceRequest):
|
|
1623
1796
|
StackSetName: StackSetName
|
|
1624
1797
|
StackInstanceAccount: Account
|
|
1625
1798
|
StackInstanceRegion: Region
|
|
1626
|
-
CallAs:
|
|
1799
|
+
CallAs: CallAs | None
|
|
1627
1800
|
|
|
1628
1801
|
|
|
1629
1802
|
class StackInstanceComprehensiveStatus(TypedDict, total=False):
|
|
1630
|
-
DetailedStatus:
|
|
1803
|
+
DetailedStatus: StackInstanceDetailedStatus | None
|
|
1631
1804
|
|
|
1632
1805
|
|
|
1633
1806
|
class StackInstance(TypedDict, total=False):
|
|
1634
|
-
StackSetId:
|
|
1635
|
-
Region:
|
|
1636
|
-
Account:
|
|
1637
|
-
StackId:
|
|
1638
|
-
ParameterOverrides:
|
|
1639
|
-
Status:
|
|
1640
|
-
StackInstanceStatus:
|
|
1641
|
-
StatusReason:
|
|
1642
|
-
OrganizationalUnitId:
|
|
1643
|
-
DriftStatus:
|
|
1644
|
-
LastDriftCheckTimestamp:
|
|
1645
|
-
LastOperationId:
|
|
1807
|
+
StackSetId: StackSetId | None
|
|
1808
|
+
Region: Region | None
|
|
1809
|
+
Account: Account | None
|
|
1810
|
+
StackId: StackId | None
|
|
1811
|
+
ParameterOverrides: Parameters | None
|
|
1812
|
+
Status: StackInstanceStatus | None
|
|
1813
|
+
StackInstanceStatus: StackInstanceComprehensiveStatus | None
|
|
1814
|
+
StatusReason: Reason | None
|
|
1815
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
1816
|
+
DriftStatus: StackDriftStatus | None
|
|
1817
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
1818
|
+
LastOperationId: ClientRequestToken | None
|
|
1646
1819
|
|
|
1647
1820
|
|
|
1648
1821
|
class DescribeStackInstanceOutput(TypedDict, total=False):
|
|
1649
|
-
StackInstance:
|
|
1822
|
+
StackInstance: StackInstance | None
|
|
1650
1823
|
|
|
1651
1824
|
|
|
1652
1825
|
class DescribeStackRefactorInput(ServiceRequest):
|
|
1653
1826
|
StackRefactorId: StackRefactorId
|
|
1654
1827
|
|
|
1655
1828
|
|
|
1656
|
-
StackIds =
|
|
1829
|
+
StackIds = list[StackId]
|
|
1657
1830
|
|
|
1658
1831
|
|
|
1659
1832
|
class DescribeStackRefactorOutput(TypedDict, total=False):
|
|
1660
|
-
Description:
|
|
1661
|
-
StackRefactorId:
|
|
1662
|
-
StackIds:
|
|
1663
|
-
ExecutionStatus:
|
|
1664
|
-
ExecutionStatusReason:
|
|
1665
|
-
Status:
|
|
1666
|
-
StatusReason:
|
|
1833
|
+
Description: Description | None
|
|
1834
|
+
StackRefactorId: StackRefactorId | None
|
|
1835
|
+
StackIds: StackIds | None
|
|
1836
|
+
ExecutionStatus: StackRefactorExecutionStatus | None
|
|
1837
|
+
ExecutionStatusReason: ExecutionStatusReason | None
|
|
1838
|
+
Status: StackRefactorStatus | None
|
|
1839
|
+
StatusReason: StackRefactorStatusReason | None
|
|
1667
1840
|
|
|
1668
1841
|
|
|
1669
|
-
StackResourceDriftStatusFilters =
|
|
1842
|
+
StackResourceDriftStatusFilters = list[StackResourceDriftStatus]
|
|
1670
1843
|
|
|
1671
1844
|
|
|
1672
1845
|
class DescribeStackResourceDriftsInput(ServiceRequest):
|
|
1673
1846
|
StackName: StackNameOrId
|
|
1674
|
-
StackResourceDriftStatusFilters:
|
|
1675
|
-
NextToken:
|
|
1676
|
-
MaxResults:
|
|
1847
|
+
StackResourceDriftStatusFilters: StackResourceDriftStatusFilters | None
|
|
1848
|
+
NextToken: NextToken | None
|
|
1849
|
+
MaxResults: BoxedMaxResults | None
|
|
1677
1850
|
|
|
1678
1851
|
|
|
1679
1852
|
class PropertyDifference(TypedDict, total=False):
|
|
@@ -1683,7 +1856,7 @@ class PropertyDifference(TypedDict, total=False):
|
|
|
1683
1856
|
DifferenceType: DifferenceType
|
|
1684
1857
|
|
|
1685
1858
|
|
|
1686
|
-
PropertyDifferences =
|
|
1859
|
+
PropertyDifferences = list[PropertyDifference]
|
|
1687
1860
|
|
|
1688
1861
|
|
|
1689
1862
|
class PhysicalResourceIdContextKeyValuePair(TypedDict, total=False):
|
|
@@ -1691,30 +1864,30 @@ class PhysicalResourceIdContextKeyValuePair(TypedDict, total=False):
|
|
|
1691
1864
|
Value: Value
|
|
1692
1865
|
|
|
1693
1866
|
|
|
1694
|
-
PhysicalResourceIdContext =
|
|
1867
|
+
PhysicalResourceIdContext = list[PhysicalResourceIdContextKeyValuePair]
|
|
1695
1868
|
|
|
1696
1869
|
|
|
1697
1870
|
class StackResourceDrift(TypedDict, total=False):
|
|
1698
1871
|
StackId: StackId
|
|
1699
1872
|
LogicalResourceId: LogicalResourceId
|
|
1700
|
-
PhysicalResourceId:
|
|
1701
|
-
PhysicalResourceIdContext:
|
|
1873
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1874
|
+
PhysicalResourceIdContext: PhysicalResourceIdContext | None
|
|
1702
1875
|
ResourceType: ResourceType
|
|
1703
|
-
ExpectedProperties:
|
|
1704
|
-
ActualProperties:
|
|
1705
|
-
PropertyDifferences:
|
|
1876
|
+
ExpectedProperties: Properties | None
|
|
1877
|
+
ActualProperties: Properties | None
|
|
1878
|
+
PropertyDifferences: PropertyDifferences | None
|
|
1706
1879
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
1707
1880
|
Timestamp: Timestamp
|
|
1708
|
-
ModuleInfo:
|
|
1709
|
-
DriftStatusReason:
|
|
1881
|
+
ModuleInfo: ModuleInfo | None
|
|
1882
|
+
DriftStatusReason: StackResourceDriftStatusReason | None
|
|
1710
1883
|
|
|
1711
1884
|
|
|
1712
|
-
StackResourceDrifts =
|
|
1885
|
+
StackResourceDrifts = list[StackResourceDrift]
|
|
1713
1886
|
|
|
1714
1887
|
|
|
1715
1888
|
class DescribeStackResourceDriftsOutput(TypedDict, total=False):
|
|
1716
1889
|
StackResourceDrifts: StackResourceDrifts
|
|
1717
|
-
NextToken:
|
|
1890
|
+
NextToken: NextToken | None
|
|
1718
1891
|
|
|
1719
1892
|
|
|
1720
1893
|
class DescribeStackResourceInput(ServiceRequest):
|
|
@@ -1724,232 +1897,241 @@ class DescribeStackResourceInput(ServiceRequest):
|
|
|
1724
1897
|
|
|
1725
1898
|
class StackResourceDriftInformation(TypedDict, total=False):
|
|
1726
1899
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
1727
|
-
LastCheckTimestamp:
|
|
1900
|
+
LastCheckTimestamp: Timestamp | None
|
|
1728
1901
|
|
|
1729
1902
|
|
|
1730
1903
|
class StackResourceDetail(TypedDict, total=False):
|
|
1731
|
-
StackName:
|
|
1732
|
-
StackId:
|
|
1904
|
+
StackName: StackName | None
|
|
1905
|
+
StackId: StackId | None
|
|
1733
1906
|
LogicalResourceId: LogicalResourceId
|
|
1734
|
-
PhysicalResourceId:
|
|
1907
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1735
1908
|
ResourceType: ResourceType
|
|
1736
1909
|
LastUpdatedTimestamp: Timestamp
|
|
1737
1910
|
ResourceStatus: ResourceStatus
|
|
1738
|
-
ResourceStatusReason:
|
|
1739
|
-
Description:
|
|
1740
|
-
Metadata:
|
|
1741
|
-
DriftInformation:
|
|
1742
|
-
ModuleInfo:
|
|
1911
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1912
|
+
Description: Description | None
|
|
1913
|
+
Metadata: Metadata | None
|
|
1914
|
+
DriftInformation: StackResourceDriftInformation | None
|
|
1915
|
+
ModuleInfo: ModuleInfo | None
|
|
1743
1916
|
|
|
1744
1917
|
|
|
1745
1918
|
class DescribeStackResourceOutput(TypedDict, total=False):
|
|
1746
|
-
StackResourceDetail:
|
|
1919
|
+
StackResourceDetail: StackResourceDetail | None
|
|
1747
1920
|
|
|
1748
1921
|
|
|
1749
1922
|
class DescribeStackResourcesInput(ServiceRequest):
|
|
1750
|
-
StackName:
|
|
1751
|
-
LogicalResourceId:
|
|
1752
|
-
PhysicalResourceId:
|
|
1923
|
+
StackName: StackName | None
|
|
1924
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1925
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1753
1926
|
|
|
1754
1927
|
|
|
1755
1928
|
class StackResource(TypedDict, total=False):
|
|
1756
|
-
StackName:
|
|
1757
|
-
StackId:
|
|
1929
|
+
StackName: StackName | None
|
|
1930
|
+
StackId: StackId | None
|
|
1758
1931
|
LogicalResourceId: LogicalResourceId
|
|
1759
|
-
PhysicalResourceId:
|
|
1932
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1760
1933
|
ResourceType: ResourceType
|
|
1761
1934
|
Timestamp: Timestamp
|
|
1762
1935
|
ResourceStatus: ResourceStatus
|
|
1763
|
-
ResourceStatusReason:
|
|
1764
|
-
Description:
|
|
1765
|
-
DriftInformation:
|
|
1766
|
-
ModuleInfo:
|
|
1936
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1937
|
+
Description: Description | None
|
|
1938
|
+
DriftInformation: StackResourceDriftInformation | None
|
|
1939
|
+
ModuleInfo: ModuleInfo | None
|
|
1767
1940
|
|
|
1768
1941
|
|
|
1769
|
-
StackResources =
|
|
1942
|
+
StackResources = list[StackResource]
|
|
1770
1943
|
|
|
1771
1944
|
|
|
1772
1945
|
class DescribeStackResourcesOutput(TypedDict, total=False):
|
|
1773
|
-
StackResources:
|
|
1946
|
+
StackResources: StackResources | None
|
|
1774
1947
|
|
|
1775
1948
|
|
|
1776
1949
|
class DescribeStackSetInput(ServiceRequest):
|
|
1777
1950
|
StackSetName: StackSetName
|
|
1778
|
-
CallAs:
|
|
1951
|
+
CallAs: CallAs | None
|
|
1779
1952
|
|
|
1780
1953
|
|
|
1781
1954
|
class DescribeStackSetOperationInput(ServiceRequest):
|
|
1782
1955
|
StackSetName: StackSetName
|
|
1783
1956
|
OperationId: ClientRequestToken
|
|
1784
|
-
CallAs:
|
|
1957
|
+
CallAs: CallAs | None
|
|
1785
1958
|
|
|
1786
1959
|
|
|
1787
1960
|
class StackSetOperationStatusDetails(TypedDict, total=False):
|
|
1788
|
-
FailedStackInstancesCount:
|
|
1961
|
+
FailedStackInstancesCount: FailedStackInstancesCount | None
|
|
1789
1962
|
|
|
1790
1963
|
|
|
1791
1964
|
class StackSetDriftDetectionDetails(TypedDict, total=False):
|
|
1792
|
-
DriftStatus:
|
|
1793
|
-
DriftDetectionStatus:
|
|
1794
|
-
LastDriftCheckTimestamp:
|
|
1795
|
-
TotalStackInstancesCount:
|
|
1796
|
-
DriftedStackInstancesCount:
|
|
1797
|
-
InSyncStackInstancesCount:
|
|
1798
|
-
InProgressStackInstancesCount:
|
|
1799
|
-
FailedStackInstancesCount:
|
|
1965
|
+
DriftStatus: StackSetDriftStatus | None
|
|
1966
|
+
DriftDetectionStatus: StackSetDriftDetectionStatus | None
|
|
1967
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
1968
|
+
TotalStackInstancesCount: TotalStackInstancesCount | None
|
|
1969
|
+
DriftedStackInstancesCount: DriftedStackInstancesCount | None
|
|
1970
|
+
InSyncStackInstancesCount: InSyncStackInstancesCount | None
|
|
1971
|
+
InProgressStackInstancesCount: InProgressStackInstancesCount | None
|
|
1972
|
+
FailedStackInstancesCount: FailedStackInstancesCount | None
|
|
1800
1973
|
|
|
1801
1974
|
|
|
1802
1975
|
class StackSetOperation(TypedDict, total=False):
|
|
1803
|
-
OperationId:
|
|
1804
|
-
StackSetId:
|
|
1805
|
-
Action:
|
|
1806
|
-
Status:
|
|
1807
|
-
OperationPreferences:
|
|
1808
|
-
RetainStacks:
|
|
1809
|
-
AdministrationRoleARN:
|
|
1810
|
-
ExecutionRoleName:
|
|
1811
|
-
CreationTimestamp:
|
|
1812
|
-
EndTimestamp:
|
|
1813
|
-
DeploymentTargets:
|
|
1814
|
-
StackSetDriftDetectionDetails:
|
|
1815
|
-
StatusReason:
|
|
1816
|
-
StatusDetails:
|
|
1976
|
+
OperationId: ClientRequestToken | None
|
|
1977
|
+
StackSetId: StackSetId | None
|
|
1978
|
+
Action: StackSetOperationAction | None
|
|
1979
|
+
Status: StackSetOperationStatus | None
|
|
1980
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1981
|
+
RetainStacks: RetainStacksNullable | None
|
|
1982
|
+
AdministrationRoleARN: RoleARN | None
|
|
1983
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
1984
|
+
CreationTimestamp: Timestamp | None
|
|
1985
|
+
EndTimestamp: Timestamp | None
|
|
1986
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1987
|
+
StackSetDriftDetectionDetails: StackSetDriftDetectionDetails | None
|
|
1988
|
+
StatusReason: StackSetOperationStatusReason | None
|
|
1989
|
+
StatusDetails: StackSetOperationStatusDetails | None
|
|
1817
1990
|
|
|
1818
1991
|
|
|
1819
1992
|
class DescribeStackSetOperationOutput(TypedDict, total=False):
|
|
1820
|
-
StackSetOperation:
|
|
1993
|
+
StackSetOperation: StackSetOperation | None
|
|
1821
1994
|
|
|
1822
1995
|
|
|
1823
1996
|
class StackSet(TypedDict, total=False):
|
|
1824
|
-
StackSetName:
|
|
1825
|
-
StackSetId:
|
|
1826
|
-
Description:
|
|
1827
|
-
Status:
|
|
1828
|
-
TemplateBody:
|
|
1829
|
-
Parameters:
|
|
1830
|
-
Capabilities:
|
|
1831
|
-
Tags:
|
|
1832
|
-
StackSetARN:
|
|
1833
|
-
AdministrationRoleARN:
|
|
1834
|
-
ExecutionRoleName:
|
|
1835
|
-
StackSetDriftDetectionDetails:
|
|
1836
|
-
AutoDeployment:
|
|
1837
|
-
PermissionModel:
|
|
1838
|
-
OrganizationalUnitIds:
|
|
1839
|
-
ManagedExecution:
|
|
1840
|
-
Regions:
|
|
1997
|
+
StackSetName: StackSetName | None
|
|
1998
|
+
StackSetId: StackSetId | None
|
|
1999
|
+
Description: Description | None
|
|
2000
|
+
Status: StackSetStatus | None
|
|
2001
|
+
TemplateBody: TemplateBody | None
|
|
2002
|
+
Parameters: Parameters | None
|
|
2003
|
+
Capabilities: Capabilities | None
|
|
2004
|
+
Tags: Tags | None
|
|
2005
|
+
StackSetARN: StackSetARN | None
|
|
2006
|
+
AdministrationRoleARN: RoleARN | None
|
|
2007
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
2008
|
+
StackSetDriftDetectionDetails: StackSetDriftDetectionDetails | None
|
|
2009
|
+
AutoDeployment: AutoDeployment | None
|
|
2010
|
+
PermissionModel: PermissionModels | None
|
|
2011
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
2012
|
+
ManagedExecution: ManagedExecution | None
|
|
2013
|
+
Regions: RegionList | None
|
|
1841
2014
|
|
|
1842
2015
|
|
|
1843
2016
|
class DescribeStackSetOutput(TypedDict, total=False):
|
|
1844
|
-
StackSet:
|
|
2017
|
+
StackSet: StackSet | None
|
|
1845
2018
|
|
|
1846
2019
|
|
|
1847
2020
|
class DescribeStacksInput(ServiceRequest):
|
|
1848
|
-
StackName:
|
|
1849
|
-
NextToken:
|
|
2021
|
+
StackName: StackName | None
|
|
2022
|
+
NextToken: NextToken | None
|
|
2023
|
+
|
|
2024
|
+
|
|
2025
|
+
class OperationEntry(TypedDict, total=False):
|
|
2026
|
+
OperationType: OperationType | None
|
|
2027
|
+
OperationId: OperationId | None
|
|
2028
|
+
|
|
2029
|
+
|
|
2030
|
+
LastOperations = list[OperationEntry]
|
|
1850
2031
|
|
|
1851
2032
|
|
|
1852
2033
|
class StackDriftInformation(TypedDict, total=False):
|
|
1853
2034
|
StackDriftStatus: StackDriftStatus
|
|
1854
|
-
LastCheckTimestamp:
|
|
2035
|
+
LastCheckTimestamp: Timestamp | None
|
|
1855
2036
|
|
|
1856
2037
|
|
|
1857
2038
|
class Output(TypedDict, total=False):
|
|
1858
|
-
OutputKey:
|
|
1859
|
-
OutputValue:
|
|
1860
|
-
Description:
|
|
1861
|
-
ExportName:
|
|
2039
|
+
OutputKey: OutputKey | None
|
|
2040
|
+
OutputValue: OutputValue | None
|
|
2041
|
+
Description: Description | None
|
|
2042
|
+
ExportName: ExportName | None
|
|
1862
2043
|
|
|
1863
2044
|
|
|
1864
|
-
Outputs =
|
|
2045
|
+
Outputs = list[Output]
|
|
1865
2046
|
|
|
1866
2047
|
|
|
1867
2048
|
class Stack(TypedDict, total=False):
|
|
1868
|
-
StackId:
|
|
2049
|
+
StackId: StackId | None
|
|
1869
2050
|
StackName: StackName
|
|
1870
|
-
ChangeSetId:
|
|
1871
|
-
Description:
|
|
1872
|
-
Parameters:
|
|
2051
|
+
ChangeSetId: ChangeSetId | None
|
|
2052
|
+
Description: Description | None
|
|
2053
|
+
Parameters: Parameters | None
|
|
1873
2054
|
CreationTime: CreationTime
|
|
1874
|
-
DeletionTime:
|
|
1875
|
-
LastUpdatedTime:
|
|
1876
|
-
RollbackConfiguration:
|
|
2055
|
+
DeletionTime: DeletionTime | None
|
|
2056
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
2057
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1877
2058
|
StackStatus: StackStatus
|
|
1878
|
-
StackStatusReason:
|
|
1879
|
-
DisableRollback:
|
|
1880
|
-
NotificationARNs:
|
|
1881
|
-
TimeoutInMinutes:
|
|
1882
|
-
Capabilities:
|
|
1883
|
-
Outputs:
|
|
1884
|
-
RoleARN:
|
|
1885
|
-
Tags:
|
|
1886
|
-
EnableTerminationProtection:
|
|
1887
|
-
ParentId:
|
|
1888
|
-
RootId:
|
|
1889
|
-
DriftInformation:
|
|
1890
|
-
RetainExceptOnCreate:
|
|
1891
|
-
DeletionMode:
|
|
1892
|
-
DetailedStatus:
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
2059
|
+
StackStatusReason: StackStatusReason | None
|
|
2060
|
+
DisableRollback: DisableRollback | None
|
|
2061
|
+
NotificationARNs: NotificationARNs | None
|
|
2062
|
+
TimeoutInMinutes: TimeoutMinutes | None
|
|
2063
|
+
Capabilities: Capabilities | None
|
|
2064
|
+
Outputs: Outputs | None
|
|
2065
|
+
RoleARN: RoleARN | None
|
|
2066
|
+
Tags: Tags | None
|
|
2067
|
+
EnableTerminationProtection: EnableTerminationProtection | None
|
|
2068
|
+
ParentId: StackId | None
|
|
2069
|
+
RootId: StackId | None
|
|
2070
|
+
DriftInformation: StackDriftInformation | None
|
|
2071
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2072
|
+
DeletionMode: DeletionMode | None
|
|
2073
|
+
DetailedStatus: DetailedStatus | None
|
|
2074
|
+
LastOperations: LastOperations | None
|
|
2075
|
+
|
|
2076
|
+
|
|
2077
|
+
Stacks = list[Stack]
|
|
1896
2078
|
|
|
1897
2079
|
|
|
1898
2080
|
class DescribeStacksOutput(TypedDict, total=False):
|
|
1899
|
-
Stacks:
|
|
1900
|
-
NextToken:
|
|
2081
|
+
Stacks: Stacks | None
|
|
2082
|
+
NextToken: NextToken | None
|
|
1901
2083
|
|
|
1902
2084
|
|
|
1903
2085
|
class DescribeTypeInput(ServiceRequest):
|
|
1904
|
-
Type:
|
|
1905
|
-
TypeName:
|
|
1906
|
-
Arn:
|
|
1907
|
-
VersionId:
|
|
1908
|
-
PublisherId:
|
|
1909
|
-
PublicVersionNumber:
|
|
2086
|
+
Type: RegistryType | None
|
|
2087
|
+
TypeName: TypeName | None
|
|
2088
|
+
Arn: TypeArn | None
|
|
2089
|
+
VersionId: TypeVersionId | None
|
|
2090
|
+
PublisherId: PublisherId | None
|
|
2091
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
1910
2092
|
|
|
1911
2093
|
|
|
1912
|
-
SupportedMajorVersions =
|
|
2094
|
+
SupportedMajorVersions = list[SupportedMajorVersion]
|
|
1913
2095
|
|
|
1914
2096
|
|
|
1915
2097
|
class RequiredActivatedType(TypedDict, total=False):
|
|
1916
|
-
TypeNameAlias:
|
|
1917
|
-
OriginalTypeName:
|
|
1918
|
-
PublisherId:
|
|
1919
|
-
SupportedMajorVersions:
|
|
2098
|
+
TypeNameAlias: TypeName | None
|
|
2099
|
+
OriginalTypeName: TypeName | None
|
|
2100
|
+
PublisherId: PublisherId | None
|
|
2101
|
+
SupportedMajorVersions: SupportedMajorVersions | None
|
|
1920
2102
|
|
|
1921
2103
|
|
|
1922
|
-
RequiredActivatedTypes =
|
|
2104
|
+
RequiredActivatedTypes = list[RequiredActivatedType]
|
|
1923
2105
|
|
|
1924
2106
|
|
|
1925
2107
|
class DescribeTypeOutput(TypedDict, total=False):
|
|
1926
|
-
Arn:
|
|
1927
|
-
Type:
|
|
1928
|
-
TypeName:
|
|
1929
|
-
DefaultVersionId:
|
|
1930
|
-
IsDefaultVersion:
|
|
1931
|
-
TypeTestsStatus:
|
|
1932
|
-
TypeTestsStatusDescription:
|
|
1933
|
-
Description:
|
|
1934
|
-
Schema:
|
|
1935
|
-
ProvisioningType:
|
|
1936
|
-
DeprecatedStatus:
|
|
1937
|
-
LoggingConfig:
|
|
1938
|
-
RequiredActivatedTypes:
|
|
1939
|
-
ExecutionRoleArn:
|
|
1940
|
-
Visibility:
|
|
1941
|
-
SourceUrl:
|
|
1942
|
-
DocumentationUrl:
|
|
1943
|
-
LastUpdated:
|
|
1944
|
-
TimeCreated:
|
|
1945
|
-
ConfigurationSchema:
|
|
1946
|
-
PublisherId:
|
|
1947
|
-
OriginalTypeName:
|
|
1948
|
-
OriginalTypeArn:
|
|
1949
|
-
PublicVersionNumber:
|
|
1950
|
-
LatestPublicVersion:
|
|
1951
|
-
IsActivated:
|
|
1952
|
-
AutoUpdate:
|
|
2108
|
+
Arn: TypeArn | None
|
|
2109
|
+
Type: RegistryType | None
|
|
2110
|
+
TypeName: TypeName | None
|
|
2111
|
+
DefaultVersionId: TypeVersionId | None
|
|
2112
|
+
IsDefaultVersion: IsDefaultVersion | None
|
|
2113
|
+
TypeTestsStatus: TypeTestsStatus | None
|
|
2114
|
+
TypeTestsStatusDescription: TypeTestsStatusDescription | None
|
|
2115
|
+
Description: Description | None
|
|
2116
|
+
Schema: TypeSchema | None
|
|
2117
|
+
ProvisioningType: ProvisioningType | None
|
|
2118
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
2119
|
+
LoggingConfig: LoggingConfig | None
|
|
2120
|
+
RequiredActivatedTypes: RequiredActivatedTypes | None
|
|
2121
|
+
ExecutionRoleArn: RoleArn | None
|
|
2122
|
+
Visibility: Visibility | None
|
|
2123
|
+
SourceUrl: OptionalSecureUrl | None
|
|
2124
|
+
DocumentationUrl: OptionalSecureUrl | None
|
|
2125
|
+
LastUpdated: Timestamp | None
|
|
2126
|
+
TimeCreated: Timestamp | None
|
|
2127
|
+
ConfigurationSchema: ConfigurationSchema | None
|
|
2128
|
+
PublisherId: PublisherId | None
|
|
2129
|
+
OriginalTypeName: TypeName | None
|
|
2130
|
+
OriginalTypeArn: TypeArn | None
|
|
2131
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2132
|
+
LatestPublicVersion: PublicVersionNumber | None
|
|
2133
|
+
IsActivated: IsActivated | None
|
|
2134
|
+
AutoUpdate: AutoUpdate | None
|
|
1953
2135
|
|
|
1954
2136
|
|
|
1955
2137
|
class DescribeTypeRegistrationInput(ServiceRequest):
|
|
@@ -1957,18 +2139,18 @@ class DescribeTypeRegistrationInput(ServiceRequest):
|
|
|
1957
2139
|
|
|
1958
2140
|
|
|
1959
2141
|
class DescribeTypeRegistrationOutput(TypedDict, total=False):
|
|
1960
|
-
ProgressStatus:
|
|
1961
|
-
Description:
|
|
1962
|
-
TypeArn:
|
|
1963
|
-
TypeVersionArn:
|
|
2142
|
+
ProgressStatus: RegistrationStatus | None
|
|
2143
|
+
Description: Description | None
|
|
2144
|
+
TypeArn: TypeArn | None
|
|
2145
|
+
TypeVersionArn: TypeArn | None
|
|
1964
2146
|
|
|
1965
2147
|
|
|
1966
|
-
LogicalResourceIds =
|
|
2148
|
+
LogicalResourceIds = list[LogicalResourceId]
|
|
1967
2149
|
|
|
1968
2150
|
|
|
1969
2151
|
class DetectStackDriftInput(ServiceRequest):
|
|
1970
2152
|
StackName: StackNameOrId
|
|
1971
|
-
LogicalResourceIds:
|
|
2153
|
+
LogicalResourceIds: LogicalResourceIds | None
|
|
1972
2154
|
|
|
1973
2155
|
|
|
1974
2156
|
class DetectStackDriftOutput(TypedDict, total=False):
|
|
@@ -1986,31 +2168,31 @@ class DetectStackResourceDriftOutput(TypedDict, total=False):
|
|
|
1986
2168
|
|
|
1987
2169
|
class DetectStackSetDriftInput(ServiceRequest):
|
|
1988
2170
|
StackSetName: StackSetNameOrId
|
|
1989
|
-
OperationPreferences:
|
|
1990
|
-
OperationId:
|
|
1991
|
-
CallAs:
|
|
2171
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2172
|
+
OperationId: ClientRequestToken | None
|
|
2173
|
+
CallAs: CallAs | None
|
|
1992
2174
|
|
|
1993
2175
|
|
|
1994
2176
|
class DetectStackSetDriftOutput(TypedDict, total=False):
|
|
1995
|
-
OperationId:
|
|
2177
|
+
OperationId: ClientRequestToken | None
|
|
1996
2178
|
|
|
1997
2179
|
|
|
1998
2180
|
class EstimateTemplateCostInput(ServiceRequest):
|
|
1999
|
-
TemplateBody:
|
|
2000
|
-
TemplateURL:
|
|
2001
|
-
Parameters:
|
|
2181
|
+
TemplateBody: TemplateBody | None
|
|
2182
|
+
TemplateURL: TemplateURL | None
|
|
2183
|
+
Parameters: Parameters | None
|
|
2002
2184
|
|
|
2003
2185
|
|
|
2004
2186
|
class EstimateTemplateCostOutput(TypedDict, total=False):
|
|
2005
|
-
Url:
|
|
2187
|
+
Url: Url | None
|
|
2006
2188
|
|
|
2007
2189
|
|
|
2008
2190
|
class ExecuteChangeSetInput(ServiceRequest):
|
|
2009
2191
|
ChangeSetName: ChangeSetNameOrId
|
|
2010
|
-
StackName:
|
|
2011
|
-
ClientRequestToken:
|
|
2012
|
-
DisableRollback:
|
|
2013
|
-
RetainExceptOnCreate:
|
|
2192
|
+
StackName: StackNameOrId | None
|
|
2193
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2194
|
+
DisableRollback: DisableRollback | None
|
|
2195
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2014
2196
|
|
|
2015
2197
|
|
|
2016
2198
|
class ExecuteChangeSetOutput(TypedDict, total=False):
|
|
@@ -2022,22 +2204,49 @@ class ExecuteStackRefactorInput(ServiceRequest):
|
|
|
2022
2204
|
|
|
2023
2205
|
|
|
2024
2206
|
class Export(TypedDict, total=False):
|
|
2025
|
-
ExportingStackId:
|
|
2026
|
-
Name:
|
|
2027
|
-
Value:
|
|
2207
|
+
ExportingStackId: StackId | None
|
|
2208
|
+
Name: ExportName | None
|
|
2209
|
+
Value: ExportValue | None
|
|
2028
2210
|
|
|
2029
2211
|
|
|
2030
|
-
Exports =
|
|
2212
|
+
Exports = list[Export]
|
|
2031
2213
|
|
|
2032
2214
|
|
|
2033
2215
|
class GetGeneratedTemplateInput(ServiceRequest):
|
|
2034
|
-
Format:
|
|
2216
|
+
Format: TemplateFormat | None
|
|
2035
2217
|
GeneratedTemplateName: GeneratedTemplateName
|
|
2036
2218
|
|
|
2037
2219
|
|
|
2038
2220
|
class GetGeneratedTemplateOutput(TypedDict, total=False):
|
|
2039
|
-
Status:
|
|
2040
|
-
TemplateBody:
|
|
2221
|
+
Status: GeneratedTemplateStatus | None
|
|
2222
|
+
TemplateBody: TemplateBody | None
|
|
2223
|
+
|
|
2224
|
+
|
|
2225
|
+
class GetHookResultInput(ServiceRequest):
|
|
2226
|
+
HookResultId: HookInvocationId | None
|
|
2227
|
+
|
|
2228
|
+
|
|
2229
|
+
class HookTarget(TypedDict, total=False):
|
|
2230
|
+
TargetType: HookTargetType
|
|
2231
|
+
TargetTypeName: HookTargetTypeName
|
|
2232
|
+
TargetId: HookTargetId
|
|
2233
|
+
Action: HookTargetAction
|
|
2234
|
+
|
|
2235
|
+
|
|
2236
|
+
class GetHookResultOutput(TypedDict, total=False):
|
|
2237
|
+
HookResultId: HookInvocationId | None
|
|
2238
|
+
InvocationPoint: HookInvocationPoint | None
|
|
2239
|
+
FailureMode: HookFailureMode | None
|
|
2240
|
+
TypeName: HookTypeName | None
|
|
2241
|
+
OriginalTypeName: HookTypeName | None
|
|
2242
|
+
TypeVersionId: HookTypeVersionId | None
|
|
2243
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
2244
|
+
TypeArn: HookTypeArn | None
|
|
2245
|
+
Status: HookStatus | None
|
|
2246
|
+
HookStatusReason: HookStatusReason | None
|
|
2247
|
+
InvokedAt: Timestamp | None
|
|
2248
|
+
Target: HookTarget | None
|
|
2249
|
+
Annotations: AnnotationList | None
|
|
2041
2250
|
|
|
2042
2251
|
|
|
2043
2252
|
class GetStackPolicyInput(ServiceRequest):
|
|
@@ -2045,188 +2254,188 @@ class GetStackPolicyInput(ServiceRequest):
|
|
|
2045
2254
|
|
|
2046
2255
|
|
|
2047
2256
|
class GetStackPolicyOutput(TypedDict, total=False):
|
|
2048
|
-
StackPolicyBody:
|
|
2257
|
+
StackPolicyBody: StackPolicyBody | None
|
|
2049
2258
|
|
|
2050
2259
|
|
|
2051
2260
|
class GetTemplateInput(ServiceRequest):
|
|
2052
|
-
StackName:
|
|
2053
|
-
ChangeSetName:
|
|
2054
|
-
TemplateStage:
|
|
2261
|
+
StackName: StackName | None
|
|
2262
|
+
ChangeSetName: ChangeSetNameOrId | None
|
|
2263
|
+
TemplateStage: TemplateStage | None
|
|
2055
2264
|
|
|
2056
2265
|
|
|
2057
|
-
StageList =
|
|
2266
|
+
StageList = list[TemplateStage]
|
|
2058
2267
|
|
|
2059
2268
|
|
|
2060
2269
|
class GetTemplateOutput(TypedDict, total=False):
|
|
2061
|
-
TemplateBody:
|
|
2062
|
-
StagesAvailable:
|
|
2270
|
+
TemplateBody: TemplateBody | None
|
|
2271
|
+
StagesAvailable: StageList | None
|
|
2063
2272
|
|
|
2064
2273
|
|
|
2065
2274
|
class TemplateSummaryConfig(TypedDict, total=False):
|
|
2066
|
-
TreatUnrecognizedResourceTypesAsWarnings:
|
|
2275
|
+
TreatUnrecognizedResourceTypesAsWarnings: TreatUnrecognizedResourceTypesAsWarnings | None
|
|
2067
2276
|
|
|
2068
2277
|
|
|
2069
2278
|
class GetTemplateSummaryInput(ServiceRequest):
|
|
2070
|
-
TemplateBody:
|
|
2071
|
-
TemplateURL:
|
|
2072
|
-
StackName:
|
|
2073
|
-
StackSetName:
|
|
2074
|
-
CallAs:
|
|
2075
|
-
TemplateSummaryConfig:
|
|
2279
|
+
TemplateBody: TemplateBody | None
|
|
2280
|
+
TemplateURL: TemplateURL | None
|
|
2281
|
+
StackName: StackNameOrId | None
|
|
2282
|
+
StackSetName: StackSetNameOrId | None
|
|
2283
|
+
CallAs: CallAs | None
|
|
2284
|
+
TemplateSummaryConfig: TemplateSummaryConfig | None
|
|
2076
2285
|
|
|
2077
2286
|
|
|
2078
2287
|
class Warnings(TypedDict, total=False):
|
|
2079
|
-
UnrecognizedResourceTypes:
|
|
2288
|
+
UnrecognizedResourceTypes: ResourceTypes | None
|
|
2080
2289
|
|
|
2081
2290
|
|
|
2082
|
-
ResourceIdentifiers =
|
|
2291
|
+
ResourceIdentifiers = list[ResourceIdentifierPropertyKey]
|
|
2083
2292
|
|
|
2084
2293
|
|
|
2085
2294
|
class ResourceIdentifierSummary(TypedDict, total=False):
|
|
2086
|
-
ResourceType:
|
|
2087
|
-
LogicalResourceIds:
|
|
2088
|
-
ResourceIdentifiers:
|
|
2295
|
+
ResourceType: ResourceType | None
|
|
2296
|
+
LogicalResourceIds: LogicalResourceIds | None
|
|
2297
|
+
ResourceIdentifiers: ResourceIdentifiers | None
|
|
2089
2298
|
|
|
2090
2299
|
|
|
2091
|
-
ResourceIdentifierSummaries =
|
|
2092
|
-
TransformsList =
|
|
2300
|
+
ResourceIdentifierSummaries = list[ResourceIdentifierSummary]
|
|
2301
|
+
TransformsList = list[TransformName]
|
|
2093
2302
|
|
|
2094
2303
|
|
|
2095
2304
|
class ParameterConstraints(TypedDict, total=False):
|
|
2096
|
-
AllowedValues:
|
|
2305
|
+
AllowedValues: AllowedValues | None
|
|
2097
2306
|
|
|
2098
2307
|
|
|
2099
2308
|
class ParameterDeclaration(TypedDict, total=False):
|
|
2100
|
-
ParameterKey:
|
|
2101
|
-
DefaultValue:
|
|
2102
|
-
ParameterType:
|
|
2103
|
-
NoEcho:
|
|
2104
|
-
Description:
|
|
2105
|
-
ParameterConstraints:
|
|
2309
|
+
ParameterKey: ParameterKey | None
|
|
2310
|
+
DefaultValue: ParameterValue | None
|
|
2311
|
+
ParameterType: ParameterType | None
|
|
2312
|
+
NoEcho: NoEcho | None
|
|
2313
|
+
Description: Description | None
|
|
2314
|
+
ParameterConstraints: ParameterConstraints | None
|
|
2106
2315
|
|
|
2107
2316
|
|
|
2108
|
-
ParameterDeclarations =
|
|
2317
|
+
ParameterDeclarations = list[ParameterDeclaration]
|
|
2109
2318
|
|
|
2110
2319
|
|
|
2111
2320
|
class GetTemplateSummaryOutput(TypedDict, total=False):
|
|
2112
|
-
Parameters:
|
|
2113
|
-
Description:
|
|
2114
|
-
Capabilities:
|
|
2115
|
-
CapabilitiesReason:
|
|
2116
|
-
ResourceTypes:
|
|
2117
|
-
Version:
|
|
2118
|
-
Metadata:
|
|
2119
|
-
DeclaredTransforms:
|
|
2120
|
-
ResourceIdentifierSummaries:
|
|
2121
|
-
Warnings:
|
|
2321
|
+
Parameters: ParameterDeclarations | None
|
|
2322
|
+
Description: Description | None
|
|
2323
|
+
Capabilities: Capabilities | None
|
|
2324
|
+
CapabilitiesReason: CapabilitiesReason | None
|
|
2325
|
+
ResourceTypes: ResourceTypes | None
|
|
2326
|
+
Version: Version | None
|
|
2327
|
+
Metadata: Metadata | None
|
|
2328
|
+
DeclaredTransforms: TransformsList | None
|
|
2329
|
+
ResourceIdentifierSummaries: ResourceIdentifierSummaries | None
|
|
2330
|
+
Warnings: Warnings | None
|
|
2122
2331
|
|
|
2123
2332
|
|
|
2124
2333
|
class HookResultSummary(TypedDict, total=False):
|
|
2125
|
-
HookResultId:
|
|
2126
|
-
InvocationPoint:
|
|
2127
|
-
FailureMode:
|
|
2128
|
-
TypeName:
|
|
2129
|
-
TypeVersionId:
|
|
2130
|
-
TypeConfigurationVersionId:
|
|
2131
|
-
Status:
|
|
2132
|
-
HookStatusReason:
|
|
2133
|
-
InvokedAt:
|
|
2134
|
-
TargetType:
|
|
2135
|
-
TargetId:
|
|
2136
|
-
TypeArn:
|
|
2137
|
-
HookExecutionTarget:
|
|
2334
|
+
HookResultId: HookInvocationId | None
|
|
2335
|
+
InvocationPoint: HookInvocationPoint | None
|
|
2336
|
+
FailureMode: HookFailureMode | None
|
|
2337
|
+
TypeName: HookTypeName | None
|
|
2338
|
+
TypeVersionId: HookTypeVersionId | None
|
|
2339
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
2340
|
+
Status: HookStatus | None
|
|
2341
|
+
HookStatusReason: HookStatusReason | None
|
|
2342
|
+
InvokedAt: Timestamp | None
|
|
2343
|
+
TargetType: ListHookResultsTargetType | None
|
|
2344
|
+
TargetId: HookResultId | None
|
|
2345
|
+
TypeArn: HookTypeArn | None
|
|
2346
|
+
HookExecutionTarget: HookResultId | None
|
|
2138
2347
|
|
|
2139
2348
|
|
|
2140
|
-
HookResultSummaries =
|
|
2141
|
-
StackIdList =
|
|
2349
|
+
HookResultSummaries = list[HookResultSummary]
|
|
2350
|
+
StackIdList = list[StackId]
|
|
2142
2351
|
|
|
2143
2352
|
|
|
2144
2353
|
class ImportStacksToStackSetInput(ServiceRequest):
|
|
2145
2354
|
StackSetName: StackSetNameOrId
|
|
2146
|
-
StackIds:
|
|
2147
|
-
StackIdsUrl:
|
|
2148
|
-
OrganizationalUnitIds:
|
|
2149
|
-
OperationPreferences:
|
|
2150
|
-
OperationId:
|
|
2151
|
-
CallAs:
|
|
2355
|
+
StackIds: StackIdList | None
|
|
2356
|
+
StackIdsUrl: StackIdsUrl | None
|
|
2357
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
2358
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2359
|
+
OperationId: ClientRequestToken | None
|
|
2360
|
+
CallAs: CallAs | None
|
|
2152
2361
|
|
|
2153
2362
|
|
|
2154
2363
|
class ImportStacksToStackSetOutput(TypedDict, total=False):
|
|
2155
|
-
OperationId:
|
|
2364
|
+
OperationId: ClientRequestToken | None
|
|
2156
2365
|
|
|
2157
2366
|
|
|
2158
|
-
Imports =
|
|
2159
|
-
JazzLogicalResourceIds =
|
|
2160
|
-
JazzResourceIdentifierProperties =
|
|
2367
|
+
Imports = list[StackName]
|
|
2368
|
+
JazzLogicalResourceIds = list[LogicalResourceId]
|
|
2369
|
+
JazzResourceIdentifierProperties = dict[
|
|
2161
2370
|
JazzResourceIdentifierPropertyKey, JazzResourceIdentifierPropertyValue
|
|
2162
2371
|
]
|
|
2163
2372
|
|
|
2164
2373
|
|
|
2165
2374
|
class ListChangeSetsInput(ServiceRequest):
|
|
2166
2375
|
StackName: StackNameOrId
|
|
2167
|
-
NextToken:
|
|
2376
|
+
NextToken: NextToken | None
|
|
2168
2377
|
|
|
2169
2378
|
|
|
2170
2379
|
class ListChangeSetsOutput(TypedDict, total=False):
|
|
2171
|
-
Summaries:
|
|
2172
|
-
NextToken:
|
|
2380
|
+
Summaries: ChangeSetSummaries | None
|
|
2381
|
+
NextToken: NextToken | None
|
|
2173
2382
|
|
|
2174
2383
|
|
|
2175
2384
|
class ListExportsInput(ServiceRequest):
|
|
2176
|
-
NextToken:
|
|
2385
|
+
NextToken: NextToken | None
|
|
2177
2386
|
|
|
2178
2387
|
|
|
2179
2388
|
class ListExportsOutput(TypedDict, total=False):
|
|
2180
|
-
Exports:
|
|
2181
|
-
NextToken:
|
|
2389
|
+
Exports: Exports | None
|
|
2390
|
+
NextToken: NextToken | None
|
|
2182
2391
|
|
|
2183
2392
|
|
|
2184
2393
|
class ListGeneratedTemplatesInput(ServiceRequest):
|
|
2185
|
-
NextToken:
|
|
2186
|
-
MaxResults:
|
|
2394
|
+
NextToken: NextToken | None
|
|
2395
|
+
MaxResults: MaxResults | None
|
|
2187
2396
|
|
|
2188
2397
|
|
|
2189
2398
|
class TemplateSummary(TypedDict, total=False):
|
|
2190
|
-
GeneratedTemplateId:
|
|
2191
|
-
GeneratedTemplateName:
|
|
2192
|
-
Status:
|
|
2193
|
-
StatusReason:
|
|
2194
|
-
CreationTime:
|
|
2195
|
-
LastUpdatedTime:
|
|
2196
|
-
NumberOfResources:
|
|
2399
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
2400
|
+
GeneratedTemplateName: GeneratedTemplateName | None
|
|
2401
|
+
Status: GeneratedTemplateStatus | None
|
|
2402
|
+
StatusReason: TemplateStatusReason | None
|
|
2403
|
+
CreationTime: CreationTime | None
|
|
2404
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
2405
|
+
NumberOfResources: NumberOfResources | None
|
|
2197
2406
|
|
|
2198
2407
|
|
|
2199
|
-
TemplateSummaries =
|
|
2408
|
+
TemplateSummaries = list[TemplateSummary]
|
|
2200
2409
|
|
|
2201
2410
|
|
|
2202
2411
|
class ListGeneratedTemplatesOutput(TypedDict, total=False):
|
|
2203
|
-
Summaries:
|
|
2204
|
-
NextToken:
|
|
2412
|
+
Summaries: TemplateSummaries | None
|
|
2413
|
+
NextToken: NextToken | None
|
|
2205
2414
|
|
|
2206
2415
|
|
|
2207
2416
|
class ListHookResultsInput(ServiceRequest):
|
|
2208
|
-
TargetType:
|
|
2209
|
-
TargetId:
|
|
2210
|
-
TypeArn:
|
|
2211
|
-
Status:
|
|
2212
|
-
NextToken:
|
|
2417
|
+
TargetType: ListHookResultsTargetType | None
|
|
2418
|
+
TargetId: HookResultId | None
|
|
2419
|
+
TypeArn: HookTypeArn | None
|
|
2420
|
+
Status: HookStatus | None
|
|
2421
|
+
NextToken: NextToken | None
|
|
2213
2422
|
|
|
2214
2423
|
|
|
2215
2424
|
class ListHookResultsOutput(TypedDict, total=False):
|
|
2216
|
-
TargetType:
|
|
2217
|
-
TargetId:
|
|
2218
|
-
HookResults:
|
|
2219
|
-
NextToken:
|
|
2425
|
+
TargetType: ListHookResultsTargetType | None
|
|
2426
|
+
TargetId: HookResultId | None
|
|
2427
|
+
HookResults: HookResultSummaries | None
|
|
2428
|
+
NextToken: NextToken | None
|
|
2220
2429
|
|
|
2221
2430
|
|
|
2222
2431
|
class ListImportsInput(ServiceRequest):
|
|
2223
2432
|
ExportName: ExportName
|
|
2224
|
-
NextToken:
|
|
2433
|
+
NextToken: NextToken | None
|
|
2225
2434
|
|
|
2226
2435
|
|
|
2227
2436
|
class ListImportsOutput(TypedDict, total=False):
|
|
2228
|
-
Imports:
|
|
2229
|
-
NextToken:
|
|
2437
|
+
Imports: Imports | None
|
|
2438
|
+
NextToken: NextToken | None
|
|
2230
2439
|
|
|
2231
2440
|
|
|
2232
2441
|
class ScannedResourceIdentifier(TypedDict, total=False):
|
|
@@ -2234,475 +2443,476 @@ class ScannedResourceIdentifier(TypedDict, total=False):
|
|
|
2234
2443
|
ResourceIdentifier: JazzResourceIdentifierProperties
|
|
2235
2444
|
|
|
2236
2445
|
|
|
2237
|
-
ScannedResourceIdentifiers =
|
|
2446
|
+
ScannedResourceIdentifiers = list[ScannedResourceIdentifier]
|
|
2238
2447
|
|
|
2239
2448
|
|
|
2240
2449
|
class ListResourceScanRelatedResourcesInput(ServiceRequest):
|
|
2241
2450
|
ResourceScanId: ResourceScanId
|
|
2242
2451
|
Resources: ScannedResourceIdentifiers
|
|
2243
|
-
NextToken:
|
|
2244
|
-
MaxResults:
|
|
2452
|
+
NextToken: NextToken | None
|
|
2453
|
+
MaxResults: BoxedMaxResults | None
|
|
2245
2454
|
|
|
2246
2455
|
|
|
2247
2456
|
class ScannedResource(TypedDict, total=False):
|
|
2248
|
-
ResourceType:
|
|
2249
|
-
ResourceIdentifier:
|
|
2250
|
-
ManagedByStack:
|
|
2457
|
+
ResourceType: ResourceType | None
|
|
2458
|
+
ResourceIdentifier: JazzResourceIdentifierProperties | None
|
|
2459
|
+
ManagedByStack: ManagedByStack | None
|
|
2251
2460
|
|
|
2252
2461
|
|
|
2253
|
-
RelatedResources =
|
|
2462
|
+
RelatedResources = list[ScannedResource]
|
|
2254
2463
|
|
|
2255
2464
|
|
|
2256
2465
|
class ListResourceScanRelatedResourcesOutput(TypedDict, total=False):
|
|
2257
|
-
RelatedResources:
|
|
2258
|
-
NextToken:
|
|
2466
|
+
RelatedResources: RelatedResources | None
|
|
2467
|
+
NextToken: NextToken | None
|
|
2259
2468
|
|
|
2260
2469
|
|
|
2261
2470
|
class ListResourceScanResourcesInput(ServiceRequest):
|
|
2262
2471
|
ResourceScanId: ResourceScanId
|
|
2263
|
-
ResourceIdentifier:
|
|
2264
|
-
ResourceTypePrefix:
|
|
2265
|
-
TagKey:
|
|
2266
|
-
TagValue:
|
|
2267
|
-
NextToken:
|
|
2268
|
-
MaxResults:
|
|
2472
|
+
ResourceIdentifier: ResourceIdentifier | None
|
|
2473
|
+
ResourceTypePrefix: ResourceTypePrefix | None
|
|
2474
|
+
TagKey: TagKey | None
|
|
2475
|
+
TagValue: TagValue | None
|
|
2476
|
+
NextToken: NextToken | None
|
|
2477
|
+
MaxResults: ResourceScannerMaxResults | None
|
|
2269
2478
|
|
|
2270
2479
|
|
|
2271
|
-
ScannedResources =
|
|
2480
|
+
ScannedResources = list[ScannedResource]
|
|
2272
2481
|
|
|
2273
2482
|
|
|
2274
2483
|
class ListResourceScanResourcesOutput(TypedDict, total=False):
|
|
2275
|
-
Resources:
|
|
2276
|
-
NextToken:
|
|
2484
|
+
Resources: ScannedResources | None
|
|
2485
|
+
NextToken: NextToken | None
|
|
2277
2486
|
|
|
2278
2487
|
|
|
2279
2488
|
class ListResourceScansInput(ServiceRequest):
|
|
2280
|
-
NextToken:
|
|
2281
|
-
MaxResults:
|
|
2282
|
-
ScanTypeFilter:
|
|
2489
|
+
NextToken: NextToken | None
|
|
2490
|
+
MaxResults: ResourceScannerMaxResults | None
|
|
2491
|
+
ScanTypeFilter: ScanType | None
|
|
2283
2492
|
|
|
2284
2493
|
|
|
2285
2494
|
class ResourceScanSummary(TypedDict, total=False):
|
|
2286
|
-
ResourceScanId:
|
|
2287
|
-
Status:
|
|
2288
|
-
StatusReason:
|
|
2289
|
-
StartTime:
|
|
2290
|
-
EndTime:
|
|
2291
|
-
PercentageCompleted:
|
|
2292
|
-
ScanType:
|
|
2495
|
+
ResourceScanId: ResourceScanId | None
|
|
2496
|
+
Status: ResourceScanStatus | None
|
|
2497
|
+
StatusReason: ResourceScanStatusReason | None
|
|
2498
|
+
StartTime: Timestamp | None
|
|
2499
|
+
EndTime: Timestamp | None
|
|
2500
|
+
PercentageCompleted: PercentageCompleted | None
|
|
2501
|
+
ScanType: ScanType | None
|
|
2293
2502
|
|
|
2294
2503
|
|
|
2295
|
-
ResourceScanSummaries =
|
|
2504
|
+
ResourceScanSummaries = list[ResourceScanSummary]
|
|
2296
2505
|
|
|
2297
2506
|
|
|
2298
2507
|
class ListResourceScansOutput(TypedDict, total=False):
|
|
2299
|
-
ResourceScanSummaries:
|
|
2300
|
-
NextToken:
|
|
2508
|
+
ResourceScanSummaries: ResourceScanSummaries | None
|
|
2509
|
+
NextToken: NextToken | None
|
|
2301
2510
|
|
|
2302
2511
|
|
|
2303
2512
|
class ListStackInstanceResourceDriftsInput(ServiceRequest):
|
|
2304
2513
|
StackSetName: StackSetNameOrId
|
|
2305
|
-
NextToken:
|
|
2306
|
-
MaxResults:
|
|
2307
|
-
StackInstanceResourceDriftStatuses:
|
|
2514
|
+
NextToken: NextToken | None
|
|
2515
|
+
MaxResults: MaxResults | None
|
|
2516
|
+
StackInstanceResourceDriftStatuses: StackResourceDriftStatusFilters | None
|
|
2308
2517
|
StackInstanceAccount: Account
|
|
2309
2518
|
StackInstanceRegion: Region
|
|
2310
2519
|
OperationId: ClientRequestToken
|
|
2311
|
-
CallAs:
|
|
2520
|
+
CallAs: CallAs | None
|
|
2312
2521
|
|
|
2313
2522
|
|
|
2314
2523
|
class StackInstanceResourceDriftsSummary(TypedDict, total=False):
|
|
2315
2524
|
StackId: StackId
|
|
2316
2525
|
LogicalResourceId: LogicalResourceId
|
|
2317
|
-
PhysicalResourceId:
|
|
2318
|
-
PhysicalResourceIdContext:
|
|
2526
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2527
|
+
PhysicalResourceIdContext: PhysicalResourceIdContext | None
|
|
2319
2528
|
ResourceType: ResourceType
|
|
2320
|
-
PropertyDifferences:
|
|
2529
|
+
PropertyDifferences: PropertyDifferences | None
|
|
2321
2530
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
2322
2531
|
Timestamp: Timestamp
|
|
2323
2532
|
|
|
2324
2533
|
|
|
2325
|
-
StackInstanceResourceDriftsSummaries =
|
|
2534
|
+
StackInstanceResourceDriftsSummaries = list[StackInstanceResourceDriftsSummary]
|
|
2326
2535
|
|
|
2327
2536
|
|
|
2328
2537
|
class ListStackInstanceResourceDriftsOutput(TypedDict, total=False):
|
|
2329
|
-
Summaries:
|
|
2330
|
-
NextToken:
|
|
2538
|
+
Summaries: StackInstanceResourceDriftsSummaries | None
|
|
2539
|
+
NextToken: NextToken | None
|
|
2331
2540
|
|
|
2332
2541
|
|
|
2333
2542
|
class StackInstanceFilter(TypedDict, total=False):
|
|
2334
|
-
Name:
|
|
2335
|
-
Values:
|
|
2543
|
+
Name: StackInstanceFilterName | None
|
|
2544
|
+
Values: StackInstanceFilterValues | None
|
|
2336
2545
|
|
|
2337
2546
|
|
|
2338
|
-
StackInstanceFilters =
|
|
2547
|
+
StackInstanceFilters = list[StackInstanceFilter]
|
|
2339
2548
|
|
|
2340
2549
|
|
|
2341
2550
|
class ListStackInstancesInput(ServiceRequest):
|
|
2342
2551
|
StackSetName: StackSetName
|
|
2343
|
-
NextToken:
|
|
2344
|
-
MaxResults:
|
|
2345
|
-
Filters:
|
|
2346
|
-
StackInstanceAccount:
|
|
2347
|
-
StackInstanceRegion:
|
|
2348
|
-
CallAs:
|
|
2552
|
+
NextToken: NextToken | None
|
|
2553
|
+
MaxResults: MaxResults | None
|
|
2554
|
+
Filters: StackInstanceFilters | None
|
|
2555
|
+
StackInstanceAccount: Account | None
|
|
2556
|
+
StackInstanceRegion: Region | None
|
|
2557
|
+
CallAs: CallAs | None
|
|
2349
2558
|
|
|
2350
2559
|
|
|
2351
2560
|
class StackInstanceSummary(TypedDict, total=False):
|
|
2352
|
-
StackSetId:
|
|
2353
|
-
Region:
|
|
2354
|
-
Account:
|
|
2355
|
-
StackId:
|
|
2356
|
-
Status:
|
|
2357
|
-
StatusReason:
|
|
2358
|
-
StackInstanceStatus:
|
|
2359
|
-
OrganizationalUnitId:
|
|
2360
|
-
DriftStatus:
|
|
2361
|
-
LastDriftCheckTimestamp:
|
|
2362
|
-
LastOperationId:
|
|
2561
|
+
StackSetId: StackSetId | None
|
|
2562
|
+
Region: Region | None
|
|
2563
|
+
Account: Account | None
|
|
2564
|
+
StackId: StackId | None
|
|
2565
|
+
Status: StackInstanceStatus | None
|
|
2566
|
+
StatusReason: Reason | None
|
|
2567
|
+
StackInstanceStatus: StackInstanceComprehensiveStatus | None
|
|
2568
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2569
|
+
DriftStatus: StackDriftStatus | None
|
|
2570
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
2571
|
+
LastOperationId: ClientRequestToken | None
|
|
2363
2572
|
|
|
2364
2573
|
|
|
2365
|
-
StackInstanceSummaries =
|
|
2574
|
+
StackInstanceSummaries = list[StackInstanceSummary]
|
|
2366
2575
|
|
|
2367
2576
|
|
|
2368
2577
|
class ListStackInstancesOutput(TypedDict, total=False):
|
|
2369
|
-
Summaries:
|
|
2370
|
-
NextToken:
|
|
2578
|
+
Summaries: StackInstanceSummaries | None
|
|
2579
|
+
NextToken: NextToken | None
|
|
2371
2580
|
|
|
2372
2581
|
|
|
2373
2582
|
class ListStackRefactorActionsInput(ServiceRequest):
|
|
2374
2583
|
StackRefactorId: StackRefactorId
|
|
2375
|
-
NextToken:
|
|
2376
|
-
MaxResults:
|
|
2584
|
+
NextToken: NextToken | None
|
|
2585
|
+
MaxResults: MaxResults | None
|
|
2377
2586
|
|
|
2378
2587
|
|
|
2379
|
-
StackRefactorUntagResources =
|
|
2380
|
-
StackRefactorTagResources =
|
|
2588
|
+
StackRefactorUntagResources = list[TagKey]
|
|
2589
|
+
StackRefactorTagResources = list[Tag]
|
|
2381
2590
|
|
|
2382
2591
|
|
|
2383
2592
|
class StackRefactorAction(TypedDict, total=False):
|
|
2384
|
-
Action:
|
|
2385
|
-
Entity:
|
|
2386
|
-
PhysicalResourceId:
|
|
2387
|
-
ResourceIdentifier:
|
|
2388
|
-
Description:
|
|
2389
|
-
Detection:
|
|
2390
|
-
DetectionReason:
|
|
2391
|
-
TagResources:
|
|
2392
|
-
UntagResources:
|
|
2393
|
-
ResourceMapping:
|
|
2593
|
+
Action: StackRefactorActionType | None
|
|
2594
|
+
Entity: StackRefactorActionEntity | None
|
|
2595
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2596
|
+
ResourceIdentifier: StackRefactorResourceIdentifier | None
|
|
2597
|
+
Description: Description | None
|
|
2598
|
+
Detection: StackRefactorDetection | None
|
|
2599
|
+
DetectionReason: DetectionReason | None
|
|
2600
|
+
TagResources: StackRefactorTagResources | None
|
|
2601
|
+
UntagResources: StackRefactorUntagResources | None
|
|
2602
|
+
ResourceMapping: ResourceMapping | None
|
|
2394
2603
|
|
|
2395
2604
|
|
|
2396
|
-
StackRefactorActions =
|
|
2605
|
+
StackRefactorActions = list[StackRefactorAction]
|
|
2397
2606
|
|
|
2398
2607
|
|
|
2399
2608
|
class ListStackRefactorActionsOutput(TypedDict, total=False):
|
|
2400
2609
|
StackRefactorActions: StackRefactorActions
|
|
2401
|
-
NextToken:
|
|
2610
|
+
NextToken: NextToken | None
|
|
2402
2611
|
|
|
2403
2612
|
|
|
2404
|
-
StackRefactorExecutionStatusFilter =
|
|
2613
|
+
StackRefactorExecutionStatusFilter = list[StackRefactorExecutionStatus]
|
|
2405
2614
|
|
|
2406
2615
|
|
|
2407
2616
|
class ListStackRefactorsInput(ServiceRequest):
|
|
2408
|
-
ExecutionStatusFilter:
|
|
2409
|
-
NextToken:
|
|
2410
|
-
MaxResults:
|
|
2617
|
+
ExecutionStatusFilter: StackRefactorExecutionStatusFilter | None
|
|
2618
|
+
NextToken: NextToken | None
|
|
2619
|
+
MaxResults: MaxResults | None
|
|
2411
2620
|
|
|
2412
2621
|
|
|
2413
2622
|
class StackRefactorSummary(TypedDict, total=False):
|
|
2414
|
-
StackRefactorId:
|
|
2415
|
-
Description:
|
|
2416
|
-
ExecutionStatus:
|
|
2417
|
-
ExecutionStatusReason:
|
|
2418
|
-
Status:
|
|
2419
|
-
StatusReason:
|
|
2623
|
+
StackRefactorId: StackRefactorId | None
|
|
2624
|
+
Description: Description | None
|
|
2625
|
+
ExecutionStatus: StackRefactorExecutionStatus | None
|
|
2626
|
+
ExecutionStatusReason: ExecutionStatusReason | None
|
|
2627
|
+
Status: StackRefactorStatus | None
|
|
2628
|
+
StatusReason: StackRefactorStatusReason | None
|
|
2420
2629
|
|
|
2421
2630
|
|
|
2422
|
-
StackRefactorSummaries =
|
|
2631
|
+
StackRefactorSummaries = list[StackRefactorSummary]
|
|
2423
2632
|
|
|
2424
2633
|
|
|
2425
2634
|
class ListStackRefactorsOutput(TypedDict, total=False):
|
|
2426
2635
|
StackRefactorSummaries: StackRefactorSummaries
|
|
2427
|
-
NextToken:
|
|
2636
|
+
NextToken: NextToken | None
|
|
2428
2637
|
|
|
2429
2638
|
|
|
2430
2639
|
class ListStackResourcesInput(ServiceRequest):
|
|
2431
2640
|
StackName: StackName
|
|
2432
|
-
NextToken:
|
|
2641
|
+
NextToken: NextToken | None
|
|
2433
2642
|
|
|
2434
2643
|
|
|
2435
2644
|
class StackResourceDriftInformationSummary(TypedDict, total=False):
|
|
2436
2645
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
2437
|
-
LastCheckTimestamp:
|
|
2646
|
+
LastCheckTimestamp: Timestamp | None
|
|
2438
2647
|
|
|
2439
2648
|
|
|
2440
2649
|
class StackResourceSummary(TypedDict, total=False):
|
|
2441
2650
|
LogicalResourceId: LogicalResourceId
|
|
2442
|
-
PhysicalResourceId:
|
|
2651
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2443
2652
|
ResourceType: ResourceType
|
|
2444
2653
|
LastUpdatedTimestamp: Timestamp
|
|
2445
2654
|
ResourceStatus: ResourceStatus
|
|
2446
|
-
ResourceStatusReason:
|
|
2447
|
-
DriftInformation:
|
|
2448
|
-
ModuleInfo:
|
|
2655
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
2656
|
+
DriftInformation: StackResourceDriftInformationSummary | None
|
|
2657
|
+
ModuleInfo: ModuleInfo | None
|
|
2449
2658
|
|
|
2450
2659
|
|
|
2451
|
-
StackResourceSummaries =
|
|
2660
|
+
StackResourceSummaries = list[StackResourceSummary]
|
|
2452
2661
|
|
|
2453
2662
|
|
|
2454
2663
|
class ListStackResourcesOutput(TypedDict, total=False):
|
|
2455
|
-
StackResourceSummaries:
|
|
2456
|
-
NextToken:
|
|
2664
|
+
StackResourceSummaries: StackResourceSummaries | None
|
|
2665
|
+
NextToken: NextToken | None
|
|
2457
2666
|
|
|
2458
2667
|
|
|
2459
2668
|
class ListStackSetAutoDeploymentTargetsInput(ServiceRequest):
|
|
2460
2669
|
StackSetName: StackSetNameOrId
|
|
2461
|
-
NextToken:
|
|
2462
|
-
MaxResults:
|
|
2463
|
-
CallAs:
|
|
2670
|
+
NextToken: NextToken | None
|
|
2671
|
+
MaxResults: MaxResults | None
|
|
2672
|
+
CallAs: CallAs | None
|
|
2464
2673
|
|
|
2465
2674
|
|
|
2466
2675
|
class StackSetAutoDeploymentTargetSummary(TypedDict, total=False):
|
|
2467
|
-
OrganizationalUnitId:
|
|
2468
|
-
Regions:
|
|
2676
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2677
|
+
Regions: RegionList | None
|
|
2469
2678
|
|
|
2470
2679
|
|
|
2471
|
-
StackSetAutoDeploymentTargetSummaries =
|
|
2680
|
+
StackSetAutoDeploymentTargetSummaries = list[StackSetAutoDeploymentTargetSummary]
|
|
2472
2681
|
|
|
2473
2682
|
|
|
2474
2683
|
class ListStackSetAutoDeploymentTargetsOutput(TypedDict, total=False):
|
|
2475
|
-
Summaries:
|
|
2476
|
-
NextToken:
|
|
2684
|
+
Summaries: StackSetAutoDeploymentTargetSummaries | None
|
|
2685
|
+
NextToken: NextToken | None
|
|
2477
2686
|
|
|
2478
2687
|
|
|
2479
2688
|
class OperationResultFilter(TypedDict, total=False):
|
|
2480
|
-
Name:
|
|
2481
|
-
Values:
|
|
2689
|
+
Name: OperationResultFilterName | None
|
|
2690
|
+
Values: OperationResultFilterValues | None
|
|
2482
2691
|
|
|
2483
2692
|
|
|
2484
|
-
OperationResultFilters =
|
|
2693
|
+
OperationResultFilters = list[OperationResultFilter]
|
|
2485
2694
|
|
|
2486
2695
|
|
|
2487
2696
|
class ListStackSetOperationResultsInput(ServiceRequest):
|
|
2488
2697
|
StackSetName: StackSetName
|
|
2489
2698
|
OperationId: ClientRequestToken
|
|
2490
|
-
NextToken:
|
|
2491
|
-
MaxResults:
|
|
2492
|
-
CallAs:
|
|
2493
|
-
Filters:
|
|
2699
|
+
NextToken: NextToken | None
|
|
2700
|
+
MaxResults: MaxResults | None
|
|
2701
|
+
CallAs: CallAs | None
|
|
2702
|
+
Filters: OperationResultFilters | None
|
|
2494
2703
|
|
|
2495
2704
|
|
|
2496
2705
|
class StackSetOperationResultSummary(TypedDict, total=False):
|
|
2497
|
-
Account:
|
|
2498
|
-
Region:
|
|
2499
|
-
Status:
|
|
2500
|
-
StatusReason:
|
|
2501
|
-
AccountGateResult:
|
|
2502
|
-
OrganizationalUnitId:
|
|
2706
|
+
Account: Account | None
|
|
2707
|
+
Region: Region | None
|
|
2708
|
+
Status: StackSetOperationResultStatus | None
|
|
2709
|
+
StatusReason: Reason | None
|
|
2710
|
+
AccountGateResult: AccountGateResult | None
|
|
2711
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2503
2712
|
|
|
2504
2713
|
|
|
2505
|
-
StackSetOperationResultSummaries =
|
|
2714
|
+
StackSetOperationResultSummaries = list[StackSetOperationResultSummary]
|
|
2506
2715
|
|
|
2507
2716
|
|
|
2508
2717
|
class ListStackSetOperationResultsOutput(TypedDict, total=False):
|
|
2509
|
-
Summaries:
|
|
2510
|
-
NextToken:
|
|
2718
|
+
Summaries: StackSetOperationResultSummaries | None
|
|
2719
|
+
NextToken: NextToken | None
|
|
2511
2720
|
|
|
2512
2721
|
|
|
2513
2722
|
class ListStackSetOperationsInput(ServiceRequest):
|
|
2514
2723
|
StackSetName: StackSetName
|
|
2515
|
-
NextToken:
|
|
2516
|
-
MaxResults:
|
|
2517
|
-
CallAs:
|
|
2724
|
+
NextToken: NextToken | None
|
|
2725
|
+
MaxResults: MaxResults | None
|
|
2726
|
+
CallAs: CallAs | None
|
|
2518
2727
|
|
|
2519
2728
|
|
|
2520
2729
|
class StackSetOperationSummary(TypedDict, total=False):
|
|
2521
|
-
OperationId:
|
|
2522
|
-
Action:
|
|
2523
|
-
Status:
|
|
2524
|
-
CreationTimestamp:
|
|
2525
|
-
EndTimestamp:
|
|
2526
|
-
StatusReason:
|
|
2527
|
-
StatusDetails:
|
|
2528
|
-
OperationPreferences:
|
|
2730
|
+
OperationId: ClientRequestToken | None
|
|
2731
|
+
Action: StackSetOperationAction | None
|
|
2732
|
+
Status: StackSetOperationStatus | None
|
|
2733
|
+
CreationTimestamp: Timestamp | None
|
|
2734
|
+
EndTimestamp: Timestamp | None
|
|
2735
|
+
StatusReason: StackSetOperationStatusReason | None
|
|
2736
|
+
StatusDetails: StackSetOperationStatusDetails | None
|
|
2737
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2529
2738
|
|
|
2530
2739
|
|
|
2531
|
-
StackSetOperationSummaries =
|
|
2740
|
+
StackSetOperationSummaries = list[StackSetOperationSummary]
|
|
2532
2741
|
|
|
2533
2742
|
|
|
2534
2743
|
class ListStackSetOperationsOutput(TypedDict, total=False):
|
|
2535
|
-
Summaries:
|
|
2536
|
-
NextToken:
|
|
2744
|
+
Summaries: StackSetOperationSummaries | None
|
|
2745
|
+
NextToken: NextToken | None
|
|
2537
2746
|
|
|
2538
2747
|
|
|
2539
2748
|
class ListStackSetsInput(ServiceRequest):
|
|
2540
|
-
NextToken:
|
|
2541
|
-
MaxResults:
|
|
2542
|
-
Status:
|
|
2543
|
-
CallAs:
|
|
2749
|
+
NextToken: NextToken | None
|
|
2750
|
+
MaxResults: MaxResults | None
|
|
2751
|
+
Status: StackSetStatus | None
|
|
2752
|
+
CallAs: CallAs | None
|
|
2544
2753
|
|
|
2545
2754
|
|
|
2546
2755
|
class StackSetSummary(TypedDict, total=False):
|
|
2547
|
-
StackSetName:
|
|
2548
|
-
StackSetId:
|
|
2549
|
-
Description:
|
|
2550
|
-
Status:
|
|
2551
|
-
AutoDeployment:
|
|
2552
|
-
PermissionModel:
|
|
2553
|
-
DriftStatus:
|
|
2554
|
-
LastDriftCheckTimestamp:
|
|
2555
|
-
ManagedExecution:
|
|
2756
|
+
StackSetName: StackSetName | None
|
|
2757
|
+
StackSetId: StackSetId | None
|
|
2758
|
+
Description: Description | None
|
|
2759
|
+
Status: StackSetStatus | None
|
|
2760
|
+
AutoDeployment: AutoDeployment | None
|
|
2761
|
+
PermissionModel: PermissionModels | None
|
|
2762
|
+
DriftStatus: StackDriftStatus | None
|
|
2763
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
2764
|
+
ManagedExecution: ManagedExecution | None
|
|
2556
2765
|
|
|
2557
2766
|
|
|
2558
|
-
StackSetSummaries =
|
|
2767
|
+
StackSetSummaries = list[StackSetSummary]
|
|
2559
2768
|
|
|
2560
2769
|
|
|
2561
2770
|
class ListStackSetsOutput(TypedDict, total=False):
|
|
2562
|
-
Summaries:
|
|
2563
|
-
NextToken:
|
|
2771
|
+
Summaries: StackSetSummaries | None
|
|
2772
|
+
NextToken: NextToken | None
|
|
2564
2773
|
|
|
2565
2774
|
|
|
2566
|
-
StackStatusFilter =
|
|
2775
|
+
StackStatusFilter = list[StackStatus]
|
|
2567
2776
|
|
|
2568
2777
|
|
|
2569
2778
|
class ListStacksInput(ServiceRequest):
|
|
2570
|
-
NextToken:
|
|
2571
|
-
StackStatusFilter:
|
|
2779
|
+
NextToken: NextToken | None
|
|
2780
|
+
StackStatusFilter: StackStatusFilter | None
|
|
2572
2781
|
|
|
2573
2782
|
|
|
2574
2783
|
class StackDriftInformationSummary(TypedDict, total=False):
|
|
2575
2784
|
StackDriftStatus: StackDriftStatus
|
|
2576
|
-
LastCheckTimestamp:
|
|
2785
|
+
LastCheckTimestamp: Timestamp | None
|
|
2577
2786
|
|
|
2578
2787
|
|
|
2579
2788
|
class StackSummary(TypedDict, total=False):
|
|
2580
|
-
StackId:
|
|
2789
|
+
StackId: StackId | None
|
|
2581
2790
|
StackName: StackName
|
|
2582
|
-
TemplateDescription:
|
|
2791
|
+
TemplateDescription: TemplateDescription | None
|
|
2583
2792
|
CreationTime: CreationTime
|
|
2584
|
-
LastUpdatedTime:
|
|
2585
|
-
DeletionTime:
|
|
2793
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
2794
|
+
DeletionTime: DeletionTime | None
|
|
2586
2795
|
StackStatus: StackStatus
|
|
2587
|
-
StackStatusReason:
|
|
2588
|
-
ParentId:
|
|
2589
|
-
RootId:
|
|
2590
|
-
DriftInformation:
|
|
2796
|
+
StackStatusReason: StackStatusReason | None
|
|
2797
|
+
ParentId: StackId | None
|
|
2798
|
+
RootId: StackId | None
|
|
2799
|
+
DriftInformation: StackDriftInformationSummary | None
|
|
2800
|
+
LastOperations: LastOperations | None
|
|
2591
2801
|
|
|
2592
2802
|
|
|
2593
|
-
StackSummaries =
|
|
2803
|
+
StackSummaries = list[StackSummary]
|
|
2594
2804
|
|
|
2595
2805
|
|
|
2596
2806
|
class ListStacksOutput(TypedDict, total=False):
|
|
2597
|
-
StackSummaries:
|
|
2598
|
-
NextToken:
|
|
2807
|
+
StackSummaries: StackSummaries | None
|
|
2808
|
+
NextToken: NextToken | None
|
|
2599
2809
|
|
|
2600
2810
|
|
|
2601
2811
|
class ListTypeRegistrationsInput(ServiceRequest):
|
|
2602
|
-
Type:
|
|
2603
|
-
TypeName:
|
|
2604
|
-
TypeArn:
|
|
2605
|
-
RegistrationStatusFilter:
|
|
2606
|
-
MaxResults:
|
|
2607
|
-
NextToken:
|
|
2812
|
+
Type: RegistryType | None
|
|
2813
|
+
TypeName: TypeName | None
|
|
2814
|
+
TypeArn: TypeArn | None
|
|
2815
|
+
RegistrationStatusFilter: RegistrationStatus | None
|
|
2816
|
+
MaxResults: MaxResults | None
|
|
2817
|
+
NextToken: NextToken | None
|
|
2608
2818
|
|
|
2609
2819
|
|
|
2610
|
-
RegistrationTokenList =
|
|
2820
|
+
RegistrationTokenList = list[RegistrationToken]
|
|
2611
2821
|
|
|
2612
2822
|
|
|
2613
2823
|
class ListTypeRegistrationsOutput(TypedDict, total=False):
|
|
2614
|
-
RegistrationTokenList:
|
|
2615
|
-
NextToken:
|
|
2824
|
+
RegistrationTokenList: RegistrationTokenList | None
|
|
2825
|
+
NextToken: NextToken | None
|
|
2616
2826
|
|
|
2617
2827
|
|
|
2618
2828
|
class ListTypeVersionsInput(ServiceRequest):
|
|
2619
|
-
Type:
|
|
2620
|
-
TypeName:
|
|
2621
|
-
Arn:
|
|
2622
|
-
MaxResults:
|
|
2623
|
-
NextToken:
|
|
2624
|
-
DeprecatedStatus:
|
|
2625
|
-
PublisherId:
|
|
2829
|
+
Type: RegistryType | None
|
|
2830
|
+
TypeName: TypeName | None
|
|
2831
|
+
Arn: TypeArn | None
|
|
2832
|
+
MaxResults: MaxResults | None
|
|
2833
|
+
NextToken: NextToken | None
|
|
2834
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
2835
|
+
PublisherId: PublisherId | None
|
|
2626
2836
|
|
|
2627
2837
|
|
|
2628
2838
|
class TypeVersionSummary(TypedDict, total=False):
|
|
2629
|
-
Type:
|
|
2630
|
-
TypeName:
|
|
2631
|
-
VersionId:
|
|
2632
|
-
IsDefaultVersion:
|
|
2633
|
-
Arn:
|
|
2634
|
-
TimeCreated:
|
|
2635
|
-
Description:
|
|
2636
|
-
PublicVersionNumber:
|
|
2839
|
+
Type: RegistryType | None
|
|
2840
|
+
TypeName: TypeName | None
|
|
2841
|
+
VersionId: TypeVersionId | None
|
|
2842
|
+
IsDefaultVersion: IsDefaultVersion | None
|
|
2843
|
+
Arn: TypeArn | None
|
|
2844
|
+
TimeCreated: Timestamp | None
|
|
2845
|
+
Description: Description | None
|
|
2846
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2637
2847
|
|
|
2638
2848
|
|
|
2639
|
-
TypeVersionSummaries =
|
|
2849
|
+
TypeVersionSummaries = list[TypeVersionSummary]
|
|
2640
2850
|
|
|
2641
2851
|
|
|
2642
2852
|
class ListTypeVersionsOutput(TypedDict, total=False):
|
|
2643
|
-
TypeVersionSummaries:
|
|
2644
|
-
NextToken:
|
|
2853
|
+
TypeVersionSummaries: TypeVersionSummaries | None
|
|
2854
|
+
NextToken: NextToken | None
|
|
2645
2855
|
|
|
2646
2856
|
|
|
2647
2857
|
class TypeFilters(TypedDict, total=False):
|
|
2648
|
-
Category:
|
|
2649
|
-
PublisherId:
|
|
2650
|
-
TypeNamePrefix:
|
|
2858
|
+
Category: Category | None
|
|
2859
|
+
PublisherId: PublisherId | None
|
|
2860
|
+
TypeNamePrefix: TypeNamePrefix | None
|
|
2651
2861
|
|
|
2652
2862
|
|
|
2653
2863
|
class ListTypesInput(ServiceRequest):
|
|
2654
|
-
Visibility:
|
|
2655
|
-
ProvisioningType:
|
|
2656
|
-
DeprecatedStatus:
|
|
2657
|
-
Type:
|
|
2658
|
-
Filters:
|
|
2659
|
-
MaxResults:
|
|
2660
|
-
NextToken:
|
|
2864
|
+
Visibility: Visibility | None
|
|
2865
|
+
ProvisioningType: ProvisioningType | None
|
|
2866
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
2867
|
+
Type: RegistryType | None
|
|
2868
|
+
Filters: TypeFilters | None
|
|
2869
|
+
MaxResults: MaxResults | None
|
|
2870
|
+
NextToken: NextToken | None
|
|
2661
2871
|
|
|
2662
2872
|
|
|
2663
2873
|
class TypeSummary(TypedDict, total=False):
|
|
2664
|
-
Type:
|
|
2665
|
-
TypeName:
|
|
2666
|
-
DefaultVersionId:
|
|
2667
|
-
TypeArn:
|
|
2668
|
-
LastUpdated:
|
|
2669
|
-
Description:
|
|
2670
|
-
PublisherId:
|
|
2671
|
-
OriginalTypeName:
|
|
2672
|
-
PublicVersionNumber:
|
|
2673
|
-
LatestPublicVersion:
|
|
2674
|
-
PublisherIdentity:
|
|
2675
|
-
PublisherName:
|
|
2676
|
-
IsActivated:
|
|
2874
|
+
Type: RegistryType | None
|
|
2875
|
+
TypeName: TypeName | None
|
|
2876
|
+
DefaultVersionId: TypeVersionId | None
|
|
2877
|
+
TypeArn: TypeArn | None
|
|
2878
|
+
LastUpdated: Timestamp | None
|
|
2879
|
+
Description: Description | None
|
|
2880
|
+
PublisherId: PublisherId | None
|
|
2881
|
+
OriginalTypeName: TypeName | None
|
|
2882
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2883
|
+
LatestPublicVersion: PublicVersionNumber | None
|
|
2884
|
+
PublisherIdentity: IdentityProvider | None
|
|
2885
|
+
PublisherName: PublisherName | None
|
|
2886
|
+
IsActivated: IsActivated | None
|
|
2677
2887
|
|
|
2678
2888
|
|
|
2679
|
-
TypeSummaries =
|
|
2889
|
+
TypeSummaries = list[TypeSummary]
|
|
2680
2890
|
|
|
2681
2891
|
|
|
2682
2892
|
class ListTypesOutput(TypedDict, total=False):
|
|
2683
|
-
TypeSummaries:
|
|
2684
|
-
NextToken:
|
|
2893
|
+
TypeSummaries: TypeSummaries | None
|
|
2894
|
+
NextToken: NextToken | None
|
|
2685
2895
|
|
|
2686
2896
|
|
|
2687
2897
|
class PublishTypeInput(ServiceRequest):
|
|
2688
|
-
Type:
|
|
2689
|
-
Arn:
|
|
2690
|
-
TypeName:
|
|
2691
|
-
PublicVersionNumber:
|
|
2898
|
+
Type: ThirdPartyType | None
|
|
2899
|
+
Arn: PrivateTypeArn | None
|
|
2900
|
+
TypeName: TypeName | None
|
|
2901
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2692
2902
|
|
|
2693
2903
|
|
|
2694
2904
|
class PublishTypeOutput(TypedDict, total=False):
|
|
2695
|
-
PublicTypeArn:
|
|
2905
|
+
PublicTypeArn: TypeArn | None
|
|
2696
2906
|
|
|
2697
2907
|
|
|
2698
2908
|
class RecordHandlerProgressInput(ServiceRequest):
|
|
2699
2909
|
BearerToken: ClientToken
|
|
2700
2910
|
OperationStatus: OperationStatus
|
|
2701
|
-
CurrentOperationStatus:
|
|
2702
|
-
StatusMessage:
|
|
2703
|
-
ErrorCode:
|
|
2704
|
-
ResourceModel:
|
|
2705
|
-
ClientRequestToken:
|
|
2911
|
+
CurrentOperationStatus: OperationStatus | None
|
|
2912
|
+
StatusMessage: StatusMessage | None
|
|
2913
|
+
ErrorCode: HandlerErrorCode | None
|
|
2914
|
+
ResourceModel: ResourceModel | None
|
|
2915
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2706
2916
|
|
|
2707
2917
|
|
|
2708
2918
|
class RecordHandlerProgressOutput(TypedDict, total=False):
|
|
@@ -2710,61 +2920,62 @@ class RecordHandlerProgressOutput(TypedDict, total=False):
|
|
|
2710
2920
|
|
|
2711
2921
|
|
|
2712
2922
|
class RegisterPublisherInput(ServiceRequest):
|
|
2713
|
-
AcceptTermsAndConditions:
|
|
2714
|
-
ConnectionArn:
|
|
2923
|
+
AcceptTermsAndConditions: AcceptTermsAndConditions | None
|
|
2924
|
+
ConnectionArn: ConnectionArn | None
|
|
2715
2925
|
|
|
2716
2926
|
|
|
2717
2927
|
class RegisterPublisherOutput(TypedDict, total=False):
|
|
2718
|
-
PublisherId:
|
|
2928
|
+
PublisherId: PublisherId | None
|
|
2719
2929
|
|
|
2720
2930
|
|
|
2721
2931
|
class RegisterTypeInput(ServiceRequest):
|
|
2722
|
-
Type:
|
|
2932
|
+
Type: RegistryType | None
|
|
2723
2933
|
TypeName: TypeName
|
|
2724
2934
|
SchemaHandlerPackage: S3Url
|
|
2725
|
-
LoggingConfig:
|
|
2726
|
-
ExecutionRoleArn:
|
|
2727
|
-
ClientRequestToken:
|
|
2935
|
+
LoggingConfig: LoggingConfig | None
|
|
2936
|
+
ExecutionRoleArn: RoleArn | None
|
|
2937
|
+
ClientRequestToken: RequestToken | None
|
|
2728
2938
|
|
|
2729
2939
|
|
|
2730
2940
|
class RegisterTypeOutput(TypedDict, total=False):
|
|
2731
|
-
RegistrationToken:
|
|
2941
|
+
RegistrationToken: RegistrationToken | None
|
|
2732
2942
|
|
|
2733
2943
|
|
|
2734
2944
|
class RollbackStackInput(ServiceRequest):
|
|
2735
2945
|
StackName: StackNameOrId
|
|
2736
|
-
RoleARN:
|
|
2737
|
-
ClientRequestToken:
|
|
2738
|
-
RetainExceptOnCreate:
|
|
2946
|
+
RoleARN: RoleARN | None
|
|
2947
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2948
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2739
2949
|
|
|
2740
2950
|
|
|
2741
2951
|
class RollbackStackOutput(TypedDict, total=False):
|
|
2742
|
-
StackId:
|
|
2952
|
+
StackId: StackId | None
|
|
2953
|
+
OperationId: OperationId | None
|
|
2743
2954
|
|
|
2744
2955
|
|
|
2745
2956
|
class SetStackPolicyInput(ServiceRequest):
|
|
2746
2957
|
StackName: StackName
|
|
2747
|
-
StackPolicyBody:
|
|
2748
|
-
StackPolicyURL:
|
|
2958
|
+
StackPolicyBody: StackPolicyBody | None
|
|
2959
|
+
StackPolicyURL: StackPolicyURL | None
|
|
2749
2960
|
|
|
2750
2961
|
|
|
2751
2962
|
class SetTypeConfigurationInput(ServiceRequest):
|
|
2752
|
-
TypeArn:
|
|
2963
|
+
TypeArn: TypeArn | None
|
|
2753
2964
|
Configuration: TypeConfiguration
|
|
2754
|
-
ConfigurationAlias:
|
|
2755
|
-
TypeName:
|
|
2756
|
-
Type:
|
|
2965
|
+
ConfigurationAlias: TypeConfigurationAlias | None
|
|
2966
|
+
TypeName: TypeName | None
|
|
2967
|
+
Type: ThirdPartyType | None
|
|
2757
2968
|
|
|
2758
2969
|
|
|
2759
2970
|
class SetTypeConfigurationOutput(TypedDict, total=False):
|
|
2760
|
-
ConfigurationArn:
|
|
2971
|
+
ConfigurationArn: TypeConfigurationArn | None
|
|
2761
2972
|
|
|
2762
2973
|
|
|
2763
2974
|
class SetTypeDefaultVersionInput(ServiceRequest):
|
|
2764
|
-
Arn:
|
|
2765
|
-
Type:
|
|
2766
|
-
TypeName:
|
|
2767
|
-
VersionId:
|
|
2975
|
+
Arn: PrivateTypeArn | None
|
|
2976
|
+
Type: RegistryType | None
|
|
2977
|
+
TypeName: TypeName | None
|
|
2978
|
+
VersionId: TypeVersionId | None
|
|
2768
2979
|
|
|
2769
2980
|
|
|
2770
2981
|
class SetTypeDefaultVersionOutput(TypedDict, total=False):
|
|
@@ -2779,18 +2990,18 @@ class SignalResourceInput(ServiceRequest):
|
|
|
2779
2990
|
|
|
2780
2991
|
|
|
2781
2992
|
class StartResourceScanInput(ServiceRequest):
|
|
2782
|
-
ClientRequestToken:
|
|
2783
|
-
ScanFilters:
|
|
2993
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2994
|
+
ScanFilters: ScanFilters | None
|
|
2784
2995
|
|
|
2785
2996
|
|
|
2786
2997
|
class StartResourceScanOutput(TypedDict, total=False):
|
|
2787
|
-
ResourceScanId:
|
|
2998
|
+
ResourceScanId: ResourceScanId | None
|
|
2788
2999
|
|
|
2789
3000
|
|
|
2790
3001
|
class StopStackSetOperationInput(ServiceRequest):
|
|
2791
3002
|
StackSetName: StackSetName
|
|
2792
3003
|
OperationId: ClientRequestToken
|
|
2793
|
-
CallAs:
|
|
3004
|
+
CallAs: CallAs | None
|
|
2794
3005
|
|
|
2795
3006
|
|
|
2796
3007
|
class StopStackSetOperationOutput(TypedDict, total=False):
|
|
@@ -2798,104 +3009,105 @@ class StopStackSetOperationOutput(TypedDict, total=False):
|
|
|
2798
3009
|
|
|
2799
3010
|
|
|
2800
3011
|
class TemplateParameter(TypedDict, total=False):
|
|
2801
|
-
ParameterKey:
|
|
2802
|
-
DefaultValue:
|
|
2803
|
-
NoEcho:
|
|
2804
|
-
Description:
|
|
3012
|
+
ParameterKey: ParameterKey | None
|
|
3013
|
+
DefaultValue: ParameterValue | None
|
|
3014
|
+
NoEcho: NoEcho | None
|
|
3015
|
+
Description: Description | None
|
|
2805
3016
|
|
|
2806
3017
|
|
|
2807
|
-
TemplateParameters =
|
|
3018
|
+
TemplateParameters = list[TemplateParameter]
|
|
2808
3019
|
|
|
2809
3020
|
|
|
2810
3021
|
class TestTypeInput(ServiceRequest):
|
|
2811
|
-
Arn:
|
|
2812
|
-
Type:
|
|
2813
|
-
TypeName:
|
|
2814
|
-
VersionId:
|
|
2815
|
-
LogDeliveryBucket:
|
|
3022
|
+
Arn: TypeArn | None
|
|
3023
|
+
Type: ThirdPartyType | None
|
|
3024
|
+
TypeName: TypeName | None
|
|
3025
|
+
VersionId: TypeVersionId | None
|
|
3026
|
+
LogDeliveryBucket: S3Bucket | None
|
|
2816
3027
|
|
|
2817
3028
|
|
|
2818
3029
|
class TestTypeOutput(TypedDict, total=False):
|
|
2819
|
-
TypeVersionArn:
|
|
3030
|
+
TypeVersionArn: TypeArn | None
|
|
2820
3031
|
|
|
2821
3032
|
|
|
2822
3033
|
class UpdateGeneratedTemplateInput(ServiceRequest):
|
|
2823
3034
|
GeneratedTemplateName: GeneratedTemplateName
|
|
2824
|
-
NewGeneratedTemplateName:
|
|
2825
|
-
AddResources:
|
|
2826
|
-
RemoveResources:
|
|
2827
|
-
RefreshAllResources:
|
|
2828
|
-
TemplateConfiguration:
|
|
3035
|
+
NewGeneratedTemplateName: GeneratedTemplateName | None
|
|
3036
|
+
AddResources: ResourceDefinitions | None
|
|
3037
|
+
RemoveResources: JazzLogicalResourceIds | None
|
|
3038
|
+
RefreshAllResources: RefreshAllResources | None
|
|
3039
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
2829
3040
|
|
|
2830
3041
|
|
|
2831
3042
|
class UpdateGeneratedTemplateOutput(TypedDict, total=False):
|
|
2832
|
-
GeneratedTemplateId:
|
|
3043
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
2833
3044
|
|
|
2834
3045
|
|
|
2835
3046
|
class UpdateStackInput(ServiceRequest):
|
|
2836
3047
|
StackName: StackName
|
|
2837
|
-
TemplateBody:
|
|
2838
|
-
TemplateURL:
|
|
2839
|
-
UsePreviousTemplate:
|
|
2840
|
-
StackPolicyDuringUpdateBody:
|
|
2841
|
-
StackPolicyDuringUpdateURL:
|
|
2842
|
-
Parameters:
|
|
2843
|
-
Capabilities:
|
|
2844
|
-
ResourceTypes:
|
|
2845
|
-
RoleARN:
|
|
2846
|
-
RollbackConfiguration:
|
|
2847
|
-
StackPolicyBody:
|
|
2848
|
-
StackPolicyURL:
|
|
2849
|
-
NotificationARNs:
|
|
2850
|
-
Tags:
|
|
2851
|
-
DisableRollback:
|
|
2852
|
-
ClientRequestToken:
|
|
2853
|
-
RetainExceptOnCreate:
|
|
3048
|
+
TemplateBody: TemplateBody | None
|
|
3049
|
+
TemplateURL: TemplateURL | None
|
|
3050
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
3051
|
+
StackPolicyDuringUpdateBody: StackPolicyDuringUpdateBody | None
|
|
3052
|
+
StackPolicyDuringUpdateURL: StackPolicyDuringUpdateURL | None
|
|
3053
|
+
Parameters: Parameters | None
|
|
3054
|
+
Capabilities: Capabilities | None
|
|
3055
|
+
ResourceTypes: ResourceTypes | None
|
|
3056
|
+
RoleARN: RoleARN | None
|
|
3057
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
3058
|
+
StackPolicyBody: StackPolicyBody | None
|
|
3059
|
+
StackPolicyURL: StackPolicyURL | None
|
|
3060
|
+
NotificationARNs: NotificationARNs | None
|
|
3061
|
+
Tags: Tags | None
|
|
3062
|
+
DisableRollback: DisableRollback | None
|
|
3063
|
+
ClientRequestToken: ClientRequestToken | None
|
|
3064
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2854
3065
|
|
|
2855
3066
|
|
|
2856
3067
|
class UpdateStackInstancesInput(ServiceRequest):
|
|
2857
3068
|
StackSetName: StackSetNameOrId
|
|
2858
|
-
Accounts:
|
|
2859
|
-
DeploymentTargets:
|
|
3069
|
+
Accounts: AccountList | None
|
|
3070
|
+
DeploymentTargets: DeploymentTargets | None
|
|
2860
3071
|
Regions: RegionList
|
|
2861
|
-
ParameterOverrides:
|
|
2862
|
-
OperationPreferences:
|
|
2863
|
-
OperationId:
|
|
2864
|
-
CallAs:
|
|
3072
|
+
ParameterOverrides: Parameters | None
|
|
3073
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
3074
|
+
OperationId: ClientRequestToken | None
|
|
3075
|
+
CallAs: CallAs | None
|
|
2865
3076
|
|
|
2866
3077
|
|
|
2867
3078
|
class UpdateStackInstancesOutput(TypedDict, total=False):
|
|
2868
|
-
OperationId:
|
|
3079
|
+
OperationId: ClientRequestToken | None
|
|
2869
3080
|
|
|
2870
3081
|
|
|
2871
3082
|
class UpdateStackOutput(TypedDict, total=False):
|
|
2872
|
-
StackId:
|
|
3083
|
+
StackId: StackId | None
|
|
3084
|
+
OperationId: OperationId | None
|
|
2873
3085
|
|
|
2874
3086
|
|
|
2875
3087
|
class UpdateStackSetInput(ServiceRequest):
|
|
2876
3088
|
StackSetName: StackSetName
|
|
2877
|
-
Description:
|
|
2878
|
-
TemplateBody:
|
|
2879
|
-
TemplateURL:
|
|
2880
|
-
UsePreviousTemplate:
|
|
2881
|
-
Parameters:
|
|
2882
|
-
Capabilities:
|
|
2883
|
-
Tags:
|
|
2884
|
-
OperationPreferences:
|
|
2885
|
-
AdministrationRoleARN:
|
|
2886
|
-
ExecutionRoleName:
|
|
2887
|
-
DeploymentTargets:
|
|
2888
|
-
PermissionModel:
|
|
2889
|
-
AutoDeployment:
|
|
2890
|
-
OperationId:
|
|
2891
|
-
Accounts:
|
|
2892
|
-
Regions:
|
|
2893
|
-
CallAs:
|
|
2894
|
-
ManagedExecution:
|
|
3089
|
+
Description: Description | None
|
|
3090
|
+
TemplateBody: TemplateBody | None
|
|
3091
|
+
TemplateURL: TemplateURL | None
|
|
3092
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
3093
|
+
Parameters: Parameters | None
|
|
3094
|
+
Capabilities: Capabilities | None
|
|
3095
|
+
Tags: Tags | None
|
|
3096
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
3097
|
+
AdministrationRoleARN: RoleARN | None
|
|
3098
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
3099
|
+
DeploymentTargets: DeploymentTargets | None
|
|
3100
|
+
PermissionModel: PermissionModels | None
|
|
3101
|
+
AutoDeployment: AutoDeployment | None
|
|
3102
|
+
OperationId: ClientRequestToken | None
|
|
3103
|
+
Accounts: AccountList | None
|
|
3104
|
+
Regions: RegionList | None
|
|
3105
|
+
CallAs: CallAs | None
|
|
3106
|
+
ManagedExecution: ManagedExecution | None
|
|
2895
3107
|
|
|
2896
3108
|
|
|
2897
3109
|
class UpdateStackSetOutput(TypedDict, total=False):
|
|
2898
|
-
OperationId:
|
|
3110
|
+
OperationId: ClientRequestToken | None
|
|
2899
3111
|
|
|
2900
3112
|
|
|
2901
3113
|
class UpdateTerminationProtectionInput(ServiceRequest):
|
|
@@ -2904,25 +3116,25 @@ class UpdateTerminationProtectionInput(ServiceRequest):
|
|
|
2904
3116
|
|
|
2905
3117
|
|
|
2906
3118
|
class UpdateTerminationProtectionOutput(TypedDict, total=False):
|
|
2907
|
-
StackId:
|
|
3119
|
+
StackId: StackId | None
|
|
2908
3120
|
|
|
2909
3121
|
|
|
2910
3122
|
class ValidateTemplateInput(ServiceRequest):
|
|
2911
|
-
TemplateBody:
|
|
2912
|
-
TemplateURL:
|
|
3123
|
+
TemplateBody: TemplateBody | None
|
|
3124
|
+
TemplateURL: TemplateURL | None
|
|
2913
3125
|
|
|
2914
3126
|
|
|
2915
3127
|
class ValidateTemplateOutput(TypedDict, total=False):
|
|
2916
|
-
Parameters:
|
|
2917
|
-
Description:
|
|
2918
|
-
Capabilities:
|
|
2919
|
-
CapabilitiesReason:
|
|
2920
|
-
DeclaredTransforms:
|
|
3128
|
+
Parameters: TemplateParameters | None
|
|
3129
|
+
Description: Description | None
|
|
3130
|
+
Capabilities: Capabilities | None
|
|
3131
|
+
CapabilitiesReason: CapabilitiesReason | None
|
|
3132
|
+
DeclaredTransforms: TransformsList | None
|
|
2921
3133
|
|
|
2922
3134
|
|
|
2923
3135
|
class CloudformationApi:
|
|
2924
|
-
service = "cloudformation"
|
|
2925
|
-
version = "2010-05-15"
|
|
3136
|
+
service: str = "cloudformation"
|
|
3137
|
+
version: str = "2010-05-15"
|
|
2926
3138
|
|
|
2927
3139
|
@handler("ActivateOrganizationsAccess")
|
|
2928
3140
|
def activate_organizations_access(
|
|
@@ -2990,6 +3202,7 @@ class CloudformationApi:
|
|
|
2990
3202
|
include_nested_stacks: IncludeNestedStacks | None = None,
|
|
2991
3203
|
on_stack_failure: OnStackFailure | None = None,
|
|
2992
3204
|
import_existing_resources: ImportExistingResources | None = None,
|
|
3205
|
+
deployment_mode: DeploymentMode | None = None,
|
|
2993
3206
|
**kwargs,
|
|
2994
3207
|
) -> CreateChangeSetOutput:
|
|
2995
3208
|
raise NotImplementedError
|
|
@@ -3186,6 +3399,19 @@ class CloudformationApi:
|
|
|
3186
3399
|
) -> DescribeChangeSetHooksOutput:
|
|
3187
3400
|
raise NotImplementedError
|
|
3188
3401
|
|
|
3402
|
+
@handler("DescribeEvents")
|
|
3403
|
+
def describe_events(
|
|
3404
|
+
self,
|
|
3405
|
+
context: RequestContext,
|
|
3406
|
+
stack_name: StackNameOrId | None = None,
|
|
3407
|
+
change_set_name: ChangeSetNameOrId | None = None,
|
|
3408
|
+
operation_id: OperationId | None = None,
|
|
3409
|
+
filters: EventFilter | None = None,
|
|
3410
|
+
next_token: NextToken | None = None,
|
|
3411
|
+
**kwargs,
|
|
3412
|
+
) -> DescribeEventsOutput:
|
|
3413
|
+
raise NotImplementedError
|
|
3414
|
+
|
|
3189
3415
|
@handler("DescribeGeneratedTemplate")
|
|
3190
3416
|
def describe_generated_template(
|
|
3191
3417
|
self, context: RequestContext, generated_template_name: GeneratedTemplateName, **kwargs
|
|
@@ -3220,7 +3446,7 @@ class CloudformationApi:
|
|
|
3220
3446
|
def describe_stack_events(
|
|
3221
3447
|
self,
|
|
3222
3448
|
context: RequestContext,
|
|
3223
|
-
stack_name: StackName
|
|
3449
|
+
stack_name: StackName,
|
|
3224
3450
|
next_token: NextToken | None = None,
|
|
3225
3451
|
**kwargs,
|
|
3226
3452
|
) -> DescribeStackEventsOutput:
|
|
@@ -3392,6 +3618,12 @@ class CloudformationApi:
|
|
|
3392
3618
|
) -> GetGeneratedTemplateOutput:
|
|
3393
3619
|
raise NotImplementedError
|
|
3394
3620
|
|
|
3621
|
+
@handler("GetHookResult")
|
|
3622
|
+
def get_hook_result(
|
|
3623
|
+
self, context: RequestContext, hook_result_id: HookInvocationId | None = None, **kwargs
|
|
3624
|
+
) -> GetHookResultOutput:
|
|
3625
|
+
raise NotImplementedError
|
|
3626
|
+
|
|
3395
3627
|
@handler("GetStackPolicy")
|
|
3396
3628
|
def get_stack_policy(
|
|
3397
3629
|
self, context: RequestContext, stack_name: StackName, **kwargs
|