localstack-core 4.7.1.dev139__py3-none-any.whl → 4.10.1.dev42__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of localstack-core might be problematic. Click here for more details.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +560 -559
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1041 -969
- localstack/aws/api/cloudwatch/__init__.py +408 -368
- localstack/aws/api/config/__init__.py +788 -786
- localstack/aws/api/core.py +4 -0
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +9713 -8573
- 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 +646 -572
- localstack/aws/api/kinesis/__init__.py +251 -144
- localstack/aws/api/kms/__init__.py +343 -333
- localstack/aws/api/lambda_/__init__.py +585 -571
- localstack/aws/api/logs/__init__.py +682 -666
- localstack/aws/api/opensearch/__init__.py +814 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1192 -1164
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +67 -67
- localstack/aws/api/route53/__init__.py +256 -254
- localstack/aws/api/route53resolver/__init__.py +396 -396
- localstack/aws/api/s3/__init__.py +1358 -1345
- localstack/aws/api/s3control/__init__.py +616 -584
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +193 -193
- 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 +1978 -1970
- localstack/aws/api/stepfunctions/__init__.py +323 -323
- localstack/aws/api/sts/__init__.py +90 -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/client.py +7 -2
- localstack/aws/forwarder.py +52 -5
- localstack/aws/handlers/analytics.py +1 -1
- localstack/aws/handlers/logging.py +12 -2
- localstack/aws/handlers/metric_handler.py +41 -1
- localstack/aws/handlers/service.py +43 -10
- localstack/aws/protocol/parser.py +440 -21
- localstack/aws/protocol/serializer.py +684 -64
- localstack/aws/protocol/service_router.py +120 -20
- localstack/aws/scaffold.py +15 -17
- localstack/aws/skeleton.py +4 -2
- localstack/aws/spec-patches.json +58 -0
- localstack/aws/spec.py +33 -13
- localstack/cli/exceptions.py +1 -1
- localstack/cli/localstack.py +10 -5
- localstack/cli/lpm.py +3 -4
- localstack/cli/profiles.py +1 -2
- localstack/config.py +18 -12
- localstack/constants.py +4 -29
- localstack/dev/kubernetes/__main__.py +39 -4
- localstack/dev/run/paths.py +1 -1
- localstack/dns/plugins.py +5 -1
- localstack/dns/server.py +12 -3
- localstack/packages/api.py +9 -8
- localstack/packages/core.py +2 -2
- localstack/packages/plugins.py +0 -8
- localstack/runtime/init.py +1 -1
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +85 -12
- localstack/services/apigateway/next_gen/execute_api/integrations/aws.py +3 -0
- localstack/services/apigateway/next_gen/execute_api/integrations/http.py +3 -3
- localstack/services/apigateway/next_gen/execute_api/test_invoke.py +50 -6
- localstack/services/apigateway/next_gen/provider.py +5 -0
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/entities.py +12 -1
- localstack/services/cloudformation/engine/v2/change_set_model.py +0 -3
- localstack/services/cloudformation/engine/v2/change_set_model_describer.py +14 -0
- localstack/services/cloudformation/engine/v2/change_set_model_executor.py +13 -15
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +118 -24
- localstack/services/cloudformation/engine/v2/change_set_model_transform.py +4 -1
- localstack/services/cloudformation/engine/v2/change_set_model_validator.py +5 -14
- localstack/services/cloudformation/engine/v2/change_set_model_visitor.py +1 -0
- localstack/services/cloudformation/engine/v2/resolving.py +6 -4
- localstack/services/cloudformation/engine/yaml_parser.py +9 -2
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/resource_provider.py +5 -1
- localstack/services/cloudformation/resources.py +24149 -0
- localstack/services/cloudformation/v2/entities.py +6 -3
- localstack/services/cloudformation/v2/provider.py +178 -33
- localstack/services/cloudformation/v2/types.py +8 -4
- localstack/services/cloudwatch/provider_v2.py +25 -28
- localstack/services/dynamodb/packages.py +2 -1
- localstack/services/dynamodb/provider.py +42 -0
- localstack/services/dynamodb/v2/provider.py +42 -0
- localstack/services/ecr/resource_providers/aws_ecr_repository.py +5 -2
- localstack/services/es/provider.py +2 -2
- localstack/services/events/event_rule_engine.py +31 -13
- localstack/services/events/models.py +4 -5
- localstack/services/events/target.py +17 -9
- localstack/services/iam/provider.py +11 -116
- localstack/services/iam/resources/policy_simulator.py +133 -0
- localstack/services/kinesis/models.py +15 -2
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kinesis/provider.py +77 -0
- localstack/services/kms/models.py +34 -4
- localstack/services/kms/provider.py +107 -21
- localstack/services/lambda_/api_utils.py +3 -1
- localstack/services/lambda_/invocation/internal_sqs_queue.py +5 -9
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +1 -1
- localstack/services/lambda_/runtimes.py +8 -3
- localstack/services/logs/provider.py +36 -19
- localstack/services/moto.py +2 -1
- localstack/services/opensearch/cluster.py +15 -7
- localstack/services/opensearch/packages.py +26 -7
- localstack/services/opensearch/provider.py +6 -1
- localstack/services/opensearch/versions.py +56 -7
- localstack/services/s3/constants.py +5 -2
- localstack/services/s3/cors.py +4 -4
- localstack/services/s3/notifications.py +1 -1
- localstack/services/s3/presigned_url.py +27 -43
- localstack/services/s3/provider.py +68 -12
- localstack/services/s3/utils.py +42 -11
- localstack/services/ses/provider.py +16 -7
- localstack/services/sns/constants.py +7 -1
- localstack/services/sns/v2/models.py +190 -0
- localstack/services/sns/v2/provider.py +992 -2
- localstack/services/sns/v2/utils.py +138 -0
- localstack/services/sqs/developer_api.py +205 -0
- localstack/services/sqs/models.py +79 -13
- localstack/services/sqs/provider.py +8 -309
- localstack/services/sqs/query_api.py +1 -1
- localstack/services/sqs/utils.py +121 -2
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +1 -1
- localstack/testing/aws/cloudformation_utils.py +1 -1
- localstack/testing/pytest/cloudformation/fixtures.py +3 -3
- localstack/testing/pytest/container.py +4 -5
- localstack/testing/pytest/fixtures.py +20 -19
- localstack/testing/pytest/in_memory_localstack.py +0 -4
- localstack/testing/pytest/marking.py +13 -4
- localstack/testing/pytest/stepfunctions/utils.py +4 -3
- localstack/testing/pytest/util.py +1 -1
- localstack/testing/pytest/validation_tracking.py +1 -2
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/events.py +2 -2
- localstack/utils/analytics/metadata.py +1 -2
- localstack/utils/analytics/metrics/counter.py +6 -8
- localstack/utils/analytics/publisher.py +1 -2
- localstack/utils/analytics/service_request_aggregator.py +2 -2
- localstack/utils/archives.py +11 -11
- localstack/utils/aws/arns.py +17 -9
- localstack/utils/aws/aws_responses.py +7 -7
- localstack/utils/aws/aws_stack.py +2 -3
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/aws/message_forwarding.py +1 -2
- localstack/utils/aws/request_context.py +4 -5
- localstack/utils/batch_policy.py +3 -3
- localstack/utils/bootstrap.py +7 -7
- localstack/utils/catalog/catalog.py +139 -0
- localstack/utils/catalog/catalog_loader.py +119 -0
- localstack/utils/catalog/common.py +58 -0
- localstack/utils/catalog/plugins.py +28 -0
- localstack/utils/cloudwatch/cloudwatch_util.py +5 -5
- localstack/utils/collections.py +7 -8
- localstack/utils/config_listener.py +1 -1
- localstack/utils/container_networking.py +2 -3
- localstack/utils/container_utils/container_client.py +115 -131
- localstack/utils/container_utils/docker_cmd_client.py +42 -42
- localstack/utils/container_utils/docker_sdk_client.py +63 -62
- localstack/utils/crypto.py +109 -0
- localstack/utils/diagnose.py +2 -3
- localstack/utils/docker_utils.py +3 -4
- localstack/utils/files.py +31 -7
- localstack/utils/functions.py +3 -2
- localstack/utils/http.py +4 -5
- localstack/utils/json.py +19 -5
- localstack/utils/kinesis/kinesis_connector.py +2 -1
- localstack/utils/net.py +6 -6
- localstack/utils/no_exit_argument_parser.py +2 -2
- localstack/utils/numbers.py +9 -2
- localstack/utils/objects.py +6 -5
- localstack/utils/patch.py +2 -1
- localstack/utils/run.py +10 -9
- localstack/utils/scheduler.py +11 -11
- localstack/utils/server/tcp_proxy.py +2 -2
- localstack/utils/serving.py +2 -3
- localstack/utils/strings.py +10 -11
- localstack/utils/sync.py +126 -1
- localstack/utils/tagging.py +1 -4
- localstack/utils/testutil.py +5 -4
- localstack/utils/threads.py +2 -2
- localstack/utils/time.py +11 -3
- localstack/utils/urls.py +1 -3
- localstack/version.py +2 -2
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/METADATA +19 -13
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/RECORD +203 -199
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/entry_points.txt +4 -2
- localstack_core-4.10.1.dev42.dist-info/plux.json +1 -0
- localstack/packages/terraform.py +0 -46
- localstack/services/cloudformation/deploy.html +0 -144
- localstack/services/cloudformation/deploy_ui.py +0 -47
- localstack/services/cloudformation/plugins.py +0 -12
- localstack_core-4.7.1.dev139.dist-info/plux.json +0 -1
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack +0 -0
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.7.1.dev139.data → localstack_core-4.10.1.dev42.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/WHEEL +0 -0
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.7.1.dev139.dist-info → localstack_core-4.10.1.dev42.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
|
|
@@ -50,6 +52,7 @@ HookInvocationCount = int
|
|
|
50
52
|
HookInvocationId = str
|
|
51
53
|
HookResultId = str
|
|
52
54
|
HookStatusReason = str
|
|
55
|
+
HookTargetId = str
|
|
53
56
|
HookTargetTypeName = str
|
|
54
57
|
HookType = str
|
|
55
58
|
HookTypeArn = str
|
|
@@ -107,6 +110,8 @@ Reason = str
|
|
|
107
110
|
RefreshAllResources = bool
|
|
108
111
|
Region = str
|
|
109
112
|
RegistrationToken = str
|
|
113
|
+
RemediationMessageRemediationMessage = str
|
|
114
|
+
RemediationMessageStatusMessage = str
|
|
110
115
|
RequestToken = str
|
|
111
116
|
RequiredProperty = bool
|
|
112
117
|
ResourceIdentifier = str
|
|
@@ -204,6 +209,20 @@ class AccountGateStatus(StrEnum):
|
|
|
204
209
|
SKIPPED = "SKIPPED"
|
|
205
210
|
|
|
206
211
|
|
|
212
|
+
class AnnotationSeverityLevel(StrEnum):
|
|
213
|
+
INFORMATIONAL = "INFORMATIONAL"
|
|
214
|
+
LOW = "LOW"
|
|
215
|
+
MEDIUM = "MEDIUM"
|
|
216
|
+
HIGH = "HIGH"
|
|
217
|
+
CRITICAL = "CRITICAL"
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
class AnnotationStatus(StrEnum):
|
|
221
|
+
PASSED = "PASSED"
|
|
222
|
+
FAILED = "FAILED"
|
|
223
|
+
SKIPPED = "SKIPPED"
|
|
224
|
+
|
|
225
|
+
|
|
207
226
|
class AttributeChangeType(StrEnum):
|
|
208
227
|
Add = "Add"
|
|
209
228
|
Remove = "Remove"
|
|
@@ -377,6 +396,13 @@ class HookStatus(StrEnum):
|
|
|
377
396
|
HOOK_FAILED = "HOOK_FAILED"
|
|
378
397
|
|
|
379
398
|
|
|
399
|
+
class HookTargetAction(StrEnum):
|
|
400
|
+
CREATE = "CREATE"
|
|
401
|
+
UPDATE = "UPDATE"
|
|
402
|
+
DELETE = "DELETE"
|
|
403
|
+
IMPORT = "IMPORT"
|
|
404
|
+
|
|
405
|
+
|
|
380
406
|
class HookTargetType(StrEnum):
|
|
381
407
|
RESOURCE = "RESOURCE"
|
|
382
408
|
|
|
@@ -722,6 +748,7 @@ class WarningType(StrEnum):
|
|
|
722
748
|
UNSUPPORTED_PROPERTIES = "UNSUPPORTED_PROPERTIES"
|
|
723
749
|
MUTUALLY_EXCLUSIVE_TYPES = "MUTUALLY_EXCLUSIVE_TYPES"
|
|
724
750
|
EXCLUDED_PROPERTIES = "EXCLUDED_PROPERTIES"
|
|
751
|
+
EXCLUDED_RESOURCES = "EXCLUDED_RESOURCES"
|
|
725
752
|
|
|
726
753
|
|
|
727
754
|
class AlreadyExistsException(ServiceException):
|
|
@@ -899,17 +926,17 @@ class TypeNotFoundException(ServiceException):
|
|
|
899
926
|
|
|
900
927
|
|
|
901
928
|
class AccountGateResult(TypedDict, total=False):
|
|
902
|
-
Status:
|
|
903
|
-
StatusReason:
|
|
929
|
+
Status: AccountGateStatus | None
|
|
930
|
+
StatusReason: AccountGateStatusReason | None
|
|
904
931
|
|
|
905
932
|
|
|
906
933
|
class AccountLimit(TypedDict, total=False):
|
|
907
|
-
Name:
|
|
908
|
-
Value:
|
|
934
|
+
Name: LimitName | None
|
|
935
|
+
Value: LimitValue | None
|
|
909
936
|
|
|
910
937
|
|
|
911
|
-
AccountLimitList =
|
|
912
|
-
AccountList =
|
|
938
|
+
AccountLimitList = list[AccountLimit]
|
|
939
|
+
AccountList = list[Account]
|
|
913
940
|
|
|
914
941
|
|
|
915
942
|
class ActivateOrganizationsAccessInput(ServiceRequest):
|
|
@@ -929,46 +956,58 @@ class LoggingConfig(TypedDict, total=False):
|
|
|
929
956
|
|
|
930
957
|
|
|
931
958
|
class ActivateTypeInput(ServiceRequest):
|
|
932
|
-
Type:
|
|
933
|
-
PublicTypeArn:
|
|
934
|
-
PublisherId:
|
|
935
|
-
TypeName:
|
|
936
|
-
TypeNameAlias:
|
|
937
|
-
AutoUpdate:
|
|
938
|
-
LoggingConfig:
|
|
939
|
-
ExecutionRoleArn:
|
|
940
|
-
VersionBump:
|
|
941
|
-
MajorVersion:
|
|
959
|
+
Type: ThirdPartyType | None
|
|
960
|
+
PublicTypeArn: ThirdPartyTypeArn | None
|
|
961
|
+
PublisherId: PublisherId | None
|
|
962
|
+
TypeName: TypeName | None
|
|
963
|
+
TypeNameAlias: TypeName | None
|
|
964
|
+
AutoUpdate: AutoUpdate | None
|
|
965
|
+
LoggingConfig: LoggingConfig | None
|
|
966
|
+
ExecutionRoleArn: RoleArn | None
|
|
967
|
+
VersionBump: VersionBump | None
|
|
968
|
+
MajorVersion: MajorVersion | None
|
|
942
969
|
|
|
943
970
|
|
|
944
971
|
class ActivateTypeOutput(TypedDict, total=False):
|
|
945
|
-
Arn:
|
|
972
|
+
Arn: PrivateTypeArn | None
|
|
973
|
+
|
|
946
974
|
|
|
975
|
+
AllowedValues = list[AllowedValue]
|
|
947
976
|
|
|
948
|
-
|
|
977
|
+
|
|
978
|
+
class Annotation(TypedDict, total=False):
|
|
979
|
+
AnnotationName: AnnotationName | None
|
|
980
|
+
Status: AnnotationStatus | None
|
|
981
|
+
StatusMessage: RemediationMessageStatusMessage | None
|
|
982
|
+
RemediationMessage: RemediationMessageRemediationMessage | None
|
|
983
|
+
RemediationLink: AnnotationRemediationLink | None
|
|
984
|
+
SeverityLevel: AnnotationSeverityLevel | None
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
AnnotationList = list[Annotation]
|
|
949
988
|
|
|
950
989
|
|
|
951
990
|
class AutoDeployment(TypedDict, total=False):
|
|
952
|
-
Enabled:
|
|
953
|
-
RetainStacksOnAccountRemoval:
|
|
991
|
+
Enabled: AutoDeploymentNullable | None
|
|
992
|
+
RetainStacksOnAccountRemoval: RetainStacksOnAccountRemovalNullable | None
|
|
954
993
|
|
|
955
994
|
|
|
956
995
|
class TypeConfigurationIdentifier(TypedDict, total=False):
|
|
957
|
-
TypeArn:
|
|
958
|
-
TypeConfigurationAlias:
|
|
959
|
-
TypeConfigurationArn:
|
|
960
|
-
Type:
|
|
961
|
-
TypeName:
|
|
996
|
+
TypeArn: TypeArn | None
|
|
997
|
+
TypeConfigurationAlias: TypeConfigurationAlias | None
|
|
998
|
+
TypeConfigurationArn: TypeConfigurationArn | None
|
|
999
|
+
Type: ThirdPartyType | None
|
|
1000
|
+
TypeName: TypeName | None
|
|
962
1001
|
|
|
963
1002
|
|
|
964
1003
|
class BatchDescribeTypeConfigurationsError(TypedDict, total=False):
|
|
965
|
-
ErrorCode:
|
|
966
|
-
ErrorMessage:
|
|
967
|
-
TypeConfigurationIdentifier:
|
|
1004
|
+
ErrorCode: ErrorCode | None
|
|
1005
|
+
ErrorMessage: ErrorMessage | None
|
|
1006
|
+
TypeConfigurationIdentifier: TypeConfigurationIdentifier | None
|
|
968
1007
|
|
|
969
1008
|
|
|
970
|
-
BatchDescribeTypeConfigurationsErrors =
|
|
971
|
-
TypeConfigurationIdentifiers =
|
|
1009
|
+
BatchDescribeTypeConfigurationsErrors = list[BatchDescribeTypeConfigurationsError]
|
|
1010
|
+
TypeConfigurationIdentifiers = list[TypeConfigurationIdentifier]
|
|
972
1011
|
|
|
973
1012
|
|
|
974
1013
|
class BatchDescribeTypeConfigurationsInput(ServiceRequest):
|
|
@@ -979,137 +1018,137 @@ Timestamp = datetime
|
|
|
979
1018
|
|
|
980
1019
|
|
|
981
1020
|
class TypeConfigurationDetails(TypedDict, total=False):
|
|
982
|
-
Arn:
|
|
983
|
-
Alias:
|
|
984
|
-
Configuration:
|
|
985
|
-
LastUpdated:
|
|
986
|
-
TypeArn:
|
|
987
|
-
TypeName:
|
|
988
|
-
IsDefaultConfiguration:
|
|
1021
|
+
Arn: TypeConfigurationArn | None
|
|
1022
|
+
Alias: TypeConfigurationAlias | None
|
|
1023
|
+
Configuration: TypeConfiguration | None
|
|
1024
|
+
LastUpdated: Timestamp | None
|
|
1025
|
+
TypeArn: TypeArn | None
|
|
1026
|
+
TypeName: TypeName | None
|
|
1027
|
+
IsDefaultConfiguration: IsDefaultConfiguration | None
|
|
989
1028
|
|
|
990
1029
|
|
|
991
|
-
TypeConfigurationDetailsList =
|
|
992
|
-
UnprocessedTypeConfigurations =
|
|
1030
|
+
TypeConfigurationDetailsList = list[TypeConfigurationDetails]
|
|
1031
|
+
UnprocessedTypeConfigurations = list[TypeConfigurationIdentifier]
|
|
993
1032
|
|
|
994
1033
|
|
|
995
1034
|
class BatchDescribeTypeConfigurationsOutput(TypedDict, total=False):
|
|
996
|
-
Errors:
|
|
997
|
-
UnprocessedTypeConfigurations:
|
|
998
|
-
TypeConfigurations:
|
|
1035
|
+
Errors: BatchDescribeTypeConfigurationsErrors | None
|
|
1036
|
+
UnprocessedTypeConfigurations: UnprocessedTypeConfigurations | None
|
|
1037
|
+
TypeConfigurations: TypeConfigurationDetailsList | None
|
|
999
1038
|
|
|
1000
1039
|
|
|
1001
1040
|
class CancelUpdateStackInput(ServiceRequest):
|
|
1002
1041
|
StackName: StackName
|
|
1003
|
-
ClientRequestToken:
|
|
1042
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1004
1043
|
|
|
1005
1044
|
|
|
1006
|
-
Capabilities =
|
|
1045
|
+
Capabilities = list[Capability]
|
|
1007
1046
|
|
|
1008
1047
|
|
|
1009
1048
|
class ModuleInfo(TypedDict, total=False):
|
|
1010
|
-
TypeHierarchy:
|
|
1011
|
-
LogicalIdHierarchy:
|
|
1049
|
+
TypeHierarchy: TypeHierarchy | None
|
|
1050
|
+
LogicalIdHierarchy: LogicalIdHierarchy | None
|
|
1012
1051
|
|
|
1013
1052
|
|
|
1014
1053
|
class ResourceTargetDefinition(TypedDict, total=False):
|
|
1015
|
-
Attribute:
|
|
1016
|
-
Name:
|
|
1017
|
-
RequiresRecreation:
|
|
1018
|
-
Path:
|
|
1019
|
-
BeforeValue:
|
|
1020
|
-
AfterValue:
|
|
1021
|
-
AttributeChangeType:
|
|
1054
|
+
Attribute: ResourceAttribute | None
|
|
1055
|
+
Name: PropertyName | None
|
|
1056
|
+
RequiresRecreation: RequiresRecreation | None
|
|
1057
|
+
Path: ResourcePropertyPath | None
|
|
1058
|
+
BeforeValue: BeforeValue | None
|
|
1059
|
+
AfterValue: AfterValue | None
|
|
1060
|
+
AttributeChangeType: AttributeChangeType | None
|
|
1022
1061
|
|
|
1023
1062
|
|
|
1024
1063
|
class ResourceChangeDetail(TypedDict, total=False):
|
|
1025
|
-
Target:
|
|
1026
|
-
Evaluation:
|
|
1027
|
-
ChangeSource:
|
|
1028
|
-
CausingEntity:
|
|
1064
|
+
Target: ResourceTargetDefinition | None
|
|
1065
|
+
Evaluation: EvaluationType | None
|
|
1066
|
+
ChangeSource: ChangeSource | None
|
|
1067
|
+
CausingEntity: CausingEntity | None
|
|
1029
1068
|
|
|
1030
1069
|
|
|
1031
|
-
ResourceChangeDetails =
|
|
1032
|
-
Scope =
|
|
1070
|
+
ResourceChangeDetails = list[ResourceChangeDetail]
|
|
1071
|
+
Scope = list[ResourceAttribute]
|
|
1033
1072
|
|
|
1034
1073
|
|
|
1035
1074
|
class ResourceChange(TypedDict, total=False):
|
|
1036
|
-
PolicyAction:
|
|
1037
|
-
Action:
|
|
1038
|
-
LogicalResourceId:
|
|
1039
|
-
PhysicalResourceId:
|
|
1040
|
-
ResourceType:
|
|
1041
|
-
Replacement:
|
|
1042
|
-
Scope:
|
|
1043
|
-
Details:
|
|
1044
|
-
ChangeSetId:
|
|
1045
|
-
ModuleInfo:
|
|
1046
|
-
BeforeContext:
|
|
1047
|
-
AfterContext:
|
|
1075
|
+
PolicyAction: PolicyAction | None
|
|
1076
|
+
Action: ChangeAction | None
|
|
1077
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1078
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1079
|
+
ResourceType: ResourceType | None
|
|
1080
|
+
Replacement: Replacement | None
|
|
1081
|
+
Scope: Scope | None
|
|
1082
|
+
Details: ResourceChangeDetails | None
|
|
1083
|
+
ChangeSetId: ChangeSetId | None
|
|
1084
|
+
ModuleInfo: ModuleInfo | None
|
|
1085
|
+
BeforeContext: BeforeContext | None
|
|
1086
|
+
AfterContext: AfterContext | None
|
|
1048
1087
|
|
|
1049
1088
|
|
|
1050
1089
|
class Change(TypedDict, total=False):
|
|
1051
|
-
Type:
|
|
1052
|
-
HookInvocationCount:
|
|
1053
|
-
ResourceChange:
|
|
1090
|
+
Type: ChangeType | None
|
|
1091
|
+
HookInvocationCount: HookInvocationCount | None
|
|
1092
|
+
ResourceChange: ResourceChange | None
|
|
1054
1093
|
|
|
1055
1094
|
|
|
1056
1095
|
class ChangeSetHookResourceTargetDetails(TypedDict, total=False):
|
|
1057
|
-
LogicalResourceId:
|
|
1058
|
-
ResourceType:
|
|
1059
|
-
ResourceAction:
|
|
1096
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1097
|
+
ResourceType: HookTargetTypeName | None
|
|
1098
|
+
ResourceAction: ChangeAction | None
|
|
1060
1099
|
|
|
1061
1100
|
|
|
1062
1101
|
class ChangeSetHookTargetDetails(TypedDict, total=False):
|
|
1063
|
-
TargetType:
|
|
1064
|
-
ResourceTargetDetails:
|
|
1102
|
+
TargetType: HookTargetType | None
|
|
1103
|
+
ResourceTargetDetails: ChangeSetHookResourceTargetDetails | None
|
|
1065
1104
|
|
|
1066
1105
|
|
|
1067
1106
|
class ChangeSetHook(TypedDict, total=False):
|
|
1068
|
-
InvocationPoint:
|
|
1069
|
-
FailureMode:
|
|
1070
|
-
TypeName:
|
|
1071
|
-
TypeVersionId:
|
|
1072
|
-
TypeConfigurationVersionId:
|
|
1073
|
-
TargetDetails:
|
|
1107
|
+
InvocationPoint: HookInvocationPoint | None
|
|
1108
|
+
FailureMode: HookFailureMode | None
|
|
1109
|
+
TypeName: HookTypeName | None
|
|
1110
|
+
TypeVersionId: HookTypeVersionId | None
|
|
1111
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
1112
|
+
TargetDetails: ChangeSetHookTargetDetails | None
|
|
1074
1113
|
|
|
1075
1114
|
|
|
1076
|
-
ChangeSetHooks =
|
|
1115
|
+
ChangeSetHooks = list[ChangeSetHook]
|
|
1077
1116
|
CreationTime = datetime
|
|
1078
1117
|
|
|
1079
1118
|
|
|
1080
1119
|
class ChangeSetSummary(TypedDict, total=False):
|
|
1081
|
-
StackId:
|
|
1082
|
-
StackName:
|
|
1083
|
-
ChangeSetId:
|
|
1084
|
-
ChangeSetName:
|
|
1085
|
-
ExecutionStatus:
|
|
1086
|
-
Status:
|
|
1087
|
-
StatusReason:
|
|
1088
|
-
CreationTime:
|
|
1089
|
-
Description:
|
|
1090
|
-
IncludeNestedStacks:
|
|
1091
|
-
ParentChangeSetId:
|
|
1092
|
-
RootChangeSetId:
|
|
1093
|
-
ImportExistingResources:
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
ChangeSetSummaries =
|
|
1097
|
-
Changes =
|
|
1098
|
-
ResourcesToSkip =
|
|
1120
|
+
StackId: StackId | None
|
|
1121
|
+
StackName: StackName | None
|
|
1122
|
+
ChangeSetId: ChangeSetId | None
|
|
1123
|
+
ChangeSetName: ChangeSetName | None
|
|
1124
|
+
ExecutionStatus: ExecutionStatus | None
|
|
1125
|
+
Status: ChangeSetStatus | None
|
|
1126
|
+
StatusReason: ChangeSetStatusReason | None
|
|
1127
|
+
CreationTime: CreationTime | None
|
|
1128
|
+
Description: Description | None
|
|
1129
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1130
|
+
ParentChangeSetId: ChangeSetId | None
|
|
1131
|
+
RootChangeSetId: ChangeSetId | None
|
|
1132
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1133
|
+
|
|
1134
|
+
|
|
1135
|
+
ChangeSetSummaries = list[ChangeSetSummary]
|
|
1136
|
+
Changes = list[Change]
|
|
1137
|
+
ResourcesToSkip = list[ResourceToSkip]
|
|
1099
1138
|
|
|
1100
1139
|
|
|
1101
1140
|
class ContinueUpdateRollbackInput(ServiceRequest):
|
|
1102
1141
|
StackName: StackNameOrId
|
|
1103
|
-
RoleARN:
|
|
1104
|
-
ResourcesToSkip:
|
|
1105
|
-
ClientRequestToken:
|
|
1142
|
+
RoleARN: RoleARN | None
|
|
1143
|
+
ResourcesToSkip: ResourcesToSkip | None
|
|
1144
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1106
1145
|
|
|
1107
1146
|
|
|
1108
1147
|
class ContinueUpdateRollbackOutput(TypedDict, total=False):
|
|
1109
1148
|
pass
|
|
1110
1149
|
|
|
1111
1150
|
|
|
1112
|
-
ResourceIdentifierProperties =
|
|
1151
|
+
ResourceIdentifierProperties = dict[ResourceIdentifierPropertyKey, ResourceIdentifierPropertyValue]
|
|
1113
1152
|
|
|
1114
1153
|
|
|
1115
1154
|
class ResourceToImport(TypedDict, total=False):
|
|
@@ -1118,7 +1157,7 @@ class ResourceToImport(TypedDict, total=False):
|
|
|
1118
1157
|
ResourceIdentifier: ResourceIdentifierProperties
|
|
1119
1158
|
|
|
1120
1159
|
|
|
1121
|
-
ResourcesToImport =
|
|
1160
|
+
ResourcesToImport = list[ResourceToImport]
|
|
1122
1161
|
|
|
1123
1162
|
|
|
1124
1163
|
class Tag(TypedDict, total=False):
|
|
@@ -1126,8 +1165,8 @@ class Tag(TypedDict, total=False):
|
|
|
1126
1165
|
Value: TagValue
|
|
1127
1166
|
|
|
1128
1167
|
|
|
1129
|
-
Tags =
|
|
1130
|
-
NotificationARNs =
|
|
1168
|
+
Tags = list[Tag]
|
|
1169
|
+
NotificationARNs = list[NotificationARN]
|
|
1131
1170
|
|
|
1132
1171
|
|
|
1133
1172
|
class RollbackTrigger(TypedDict, total=False):
|
|
@@ -1135,149 +1174,149 @@ class RollbackTrigger(TypedDict, total=False):
|
|
|
1135
1174
|
Type: Type
|
|
1136
1175
|
|
|
1137
1176
|
|
|
1138
|
-
RollbackTriggers =
|
|
1177
|
+
RollbackTriggers = list[RollbackTrigger]
|
|
1139
1178
|
|
|
1140
1179
|
|
|
1141
1180
|
class RollbackConfiguration(TypedDict, total=False):
|
|
1142
|
-
RollbackTriggers:
|
|
1143
|
-
MonitoringTimeInMinutes:
|
|
1181
|
+
RollbackTriggers: RollbackTriggers | None
|
|
1182
|
+
MonitoringTimeInMinutes: MonitoringTimeInMinutes | None
|
|
1144
1183
|
|
|
1145
1184
|
|
|
1146
|
-
ResourceTypes =
|
|
1185
|
+
ResourceTypes = list[ResourceType]
|
|
1147
1186
|
|
|
1148
1187
|
|
|
1149
1188
|
class Parameter(TypedDict, total=False):
|
|
1150
|
-
ParameterKey:
|
|
1151
|
-
ParameterValue:
|
|
1152
|
-
UsePreviousValue:
|
|
1153
|
-
ResolvedValue:
|
|
1189
|
+
ParameterKey: ParameterKey | None
|
|
1190
|
+
ParameterValue: ParameterValue | None
|
|
1191
|
+
UsePreviousValue: UsePreviousValue | None
|
|
1192
|
+
ResolvedValue: ParameterValue | None
|
|
1154
1193
|
|
|
1155
1194
|
|
|
1156
|
-
Parameters =
|
|
1195
|
+
Parameters = list[Parameter]
|
|
1157
1196
|
|
|
1158
1197
|
|
|
1159
1198
|
class CreateChangeSetInput(ServiceRequest):
|
|
1160
1199
|
StackName: StackNameOrId
|
|
1161
|
-
TemplateBody:
|
|
1162
|
-
TemplateURL:
|
|
1163
|
-
UsePreviousTemplate:
|
|
1164
|
-
Parameters:
|
|
1165
|
-
Capabilities:
|
|
1166
|
-
ResourceTypes:
|
|
1167
|
-
RoleARN:
|
|
1168
|
-
RollbackConfiguration:
|
|
1169
|
-
NotificationARNs:
|
|
1170
|
-
Tags:
|
|
1200
|
+
TemplateBody: TemplateBody | None
|
|
1201
|
+
TemplateURL: TemplateURL | None
|
|
1202
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
1203
|
+
Parameters: Parameters | None
|
|
1204
|
+
Capabilities: Capabilities | None
|
|
1205
|
+
ResourceTypes: ResourceTypes | None
|
|
1206
|
+
RoleARN: RoleARN | None
|
|
1207
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1208
|
+
NotificationARNs: NotificationARNs | None
|
|
1209
|
+
Tags: Tags | None
|
|
1171
1210
|
ChangeSetName: ChangeSetName
|
|
1172
|
-
ClientToken:
|
|
1173
|
-
Description:
|
|
1174
|
-
ChangeSetType:
|
|
1175
|
-
ResourcesToImport:
|
|
1176
|
-
IncludeNestedStacks:
|
|
1177
|
-
OnStackFailure:
|
|
1178
|
-
ImportExistingResources:
|
|
1211
|
+
ClientToken: ClientToken | None
|
|
1212
|
+
Description: Description | None
|
|
1213
|
+
ChangeSetType: ChangeSetType | None
|
|
1214
|
+
ResourcesToImport: ResourcesToImport | None
|
|
1215
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1216
|
+
OnStackFailure: OnStackFailure | None
|
|
1217
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1179
1218
|
|
|
1180
1219
|
|
|
1181
1220
|
class CreateChangeSetOutput(TypedDict, total=False):
|
|
1182
|
-
Id:
|
|
1183
|
-
StackId:
|
|
1221
|
+
Id: ChangeSetId | None
|
|
1222
|
+
StackId: StackId | None
|
|
1184
1223
|
|
|
1185
1224
|
|
|
1186
1225
|
class TemplateConfiguration(TypedDict, total=False):
|
|
1187
|
-
DeletionPolicy:
|
|
1188
|
-
UpdateReplacePolicy:
|
|
1226
|
+
DeletionPolicy: GeneratedTemplateDeletionPolicy | None
|
|
1227
|
+
UpdateReplacePolicy: GeneratedTemplateUpdateReplacePolicy | None
|
|
1189
1228
|
|
|
1190
1229
|
|
|
1191
1230
|
class ResourceDefinition(TypedDict, total=False):
|
|
1192
1231
|
ResourceType: ResourceType
|
|
1193
|
-
LogicalResourceId:
|
|
1232
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1194
1233
|
ResourceIdentifier: ResourceIdentifierProperties
|
|
1195
1234
|
|
|
1196
1235
|
|
|
1197
|
-
ResourceDefinitions =
|
|
1236
|
+
ResourceDefinitions = list[ResourceDefinition]
|
|
1198
1237
|
|
|
1199
1238
|
|
|
1200
1239
|
class CreateGeneratedTemplateInput(ServiceRequest):
|
|
1201
|
-
Resources:
|
|
1240
|
+
Resources: ResourceDefinitions | None
|
|
1202
1241
|
GeneratedTemplateName: GeneratedTemplateName
|
|
1203
|
-
StackName:
|
|
1204
|
-
TemplateConfiguration:
|
|
1242
|
+
StackName: StackName | None
|
|
1243
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
1205
1244
|
|
|
1206
1245
|
|
|
1207
1246
|
class CreateGeneratedTemplateOutput(TypedDict, total=False):
|
|
1208
|
-
GeneratedTemplateId:
|
|
1247
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
1209
1248
|
|
|
1210
1249
|
|
|
1211
1250
|
class CreateStackInput(ServiceRequest):
|
|
1212
1251
|
StackName: StackName
|
|
1213
|
-
TemplateBody:
|
|
1214
|
-
TemplateURL:
|
|
1215
|
-
Parameters:
|
|
1216
|
-
DisableRollback:
|
|
1217
|
-
RollbackConfiguration:
|
|
1218
|
-
TimeoutInMinutes:
|
|
1219
|
-
NotificationARNs:
|
|
1220
|
-
Capabilities:
|
|
1221
|
-
ResourceTypes:
|
|
1222
|
-
RoleARN:
|
|
1223
|
-
OnFailure:
|
|
1224
|
-
StackPolicyBody:
|
|
1225
|
-
StackPolicyURL:
|
|
1226
|
-
Tags:
|
|
1227
|
-
ClientRequestToken:
|
|
1228
|
-
EnableTerminationProtection:
|
|
1229
|
-
RetainExceptOnCreate:
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
RegionList =
|
|
1252
|
+
TemplateBody: TemplateBody | None
|
|
1253
|
+
TemplateURL: TemplateURL | None
|
|
1254
|
+
Parameters: Parameters | None
|
|
1255
|
+
DisableRollback: DisableRollback | None
|
|
1256
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1257
|
+
TimeoutInMinutes: TimeoutMinutes | None
|
|
1258
|
+
NotificationARNs: NotificationARNs | None
|
|
1259
|
+
Capabilities: Capabilities | None
|
|
1260
|
+
ResourceTypes: ResourceTypes | None
|
|
1261
|
+
RoleARN: RoleARN | None
|
|
1262
|
+
OnFailure: OnFailure | None
|
|
1263
|
+
StackPolicyBody: StackPolicyBody | None
|
|
1264
|
+
StackPolicyURL: StackPolicyURL | None
|
|
1265
|
+
Tags: Tags | None
|
|
1266
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1267
|
+
EnableTerminationProtection: EnableTerminationProtection | None
|
|
1268
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
RegionList = list[Region]
|
|
1233
1272
|
|
|
1234
1273
|
|
|
1235
1274
|
class StackSetOperationPreferences(TypedDict, total=False):
|
|
1236
|
-
RegionConcurrencyType:
|
|
1237
|
-
RegionOrder:
|
|
1238
|
-
FailureToleranceCount:
|
|
1239
|
-
FailureTolerancePercentage:
|
|
1240
|
-
MaxConcurrentCount:
|
|
1241
|
-
MaxConcurrentPercentage:
|
|
1242
|
-
ConcurrencyMode:
|
|
1275
|
+
RegionConcurrencyType: RegionConcurrencyType | None
|
|
1276
|
+
RegionOrder: RegionList | None
|
|
1277
|
+
FailureToleranceCount: FailureToleranceCount | None
|
|
1278
|
+
FailureTolerancePercentage: FailureTolerancePercentage | None
|
|
1279
|
+
MaxConcurrentCount: MaxConcurrentCount | None
|
|
1280
|
+
MaxConcurrentPercentage: MaxConcurrentPercentage | None
|
|
1281
|
+
ConcurrencyMode: ConcurrencyMode | None
|
|
1243
1282
|
|
|
1244
1283
|
|
|
1245
|
-
OrganizationalUnitIdList =
|
|
1284
|
+
OrganizationalUnitIdList = list[OrganizationalUnitId]
|
|
1246
1285
|
|
|
1247
1286
|
|
|
1248
1287
|
class DeploymentTargets(TypedDict, total=False):
|
|
1249
|
-
Accounts:
|
|
1250
|
-
AccountsUrl:
|
|
1251
|
-
OrganizationalUnitIds:
|
|
1252
|
-
AccountFilterType:
|
|
1288
|
+
Accounts: AccountList | None
|
|
1289
|
+
AccountsUrl: AccountsUrl | None
|
|
1290
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
1291
|
+
AccountFilterType: AccountFilterType | None
|
|
1253
1292
|
|
|
1254
1293
|
|
|
1255
1294
|
class CreateStackInstancesInput(ServiceRequest):
|
|
1256
1295
|
StackSetName: StackSetName
|
|
1257
|
-
Accounts:
|
|
1258
|
-
DeploymentTargets:
|
|
1296
|
+
Accounts: AccountList | None
|
|
1297
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1259
1298
|
Regions: RegionList
|
|
1260
|
-
ParameterOverrides:
|
|
1261
|
-
OperationPreferences:
|
|
1262
|
-
OperationId:
|
|
1263
|
-
CallAs:
|
|
1299
|
+
ParameterOverrides: Parameters | None
|
|
1300
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1301
|
+
OperationId: ClientRequestToken | None
|
|
1302
|
+
CallAs: CallAs | None
|
|
1264
1303
|
|
|
1265
1304
|
|
|
1266
1305
|
class CreateStackInstancesOutput(TypedDict, total=False):
|
|
1267
|
-
OperationId:
|
|
1306
|
+
OperationId: ClientRequestToken | None
|
|
1268
1307
|
|
|
1269
1308
|
|
|
1270
1309
|
class CreateStackOutput(TypedDict, total=False):
|
|
1271
|
-
StackId:
|
|
1310
|
+
StackId: StackId | None
|
|
1272
1311
|
|
|
1273
1312
|
|
|
1274
1313
|
class StackDefinition(TypedDict, total=False):
|
|
1275
|
-
StackName:
|
|
1276
|
-
TemplateBody:
|
|
1277
|
-
TemplateURL:
|
|
1314
|
+
StackName: StackName | None
|
|
1315
|
+
TemplateBody: TemplateBody | None
|
|
1316
|
+
TemplateURL: TemplateURL | None
|
|
1278
1317
|
|
|
1279
1318
|
|
|
1280
|
-
StackDefinitions =
|
|
1319
|
+
StackDefinitions = list[StackDefinition]
|
|
1281
1320
|
|
|
1282
1321
|
|
|
1283
1322
|
class ResourceLocation(TypedDict, total=False):
|
|
@@ -1290,13 +1329,13 @@ class ResourceMapping(TypedDict, total=False):
|
|
|
1290
1329
|
Destination: ResourceLocation
|
|
1291
1330
|
|
|
1292
1331
|
|
|
1293
|
-
ResourceMappings =
|
|
1332
|
+
ResourceMappings = list[ResourceMapping]
|
|
1294
1333
|
|
|
1295
1334
|
|
|
1296
1335
|
class CreateStackRefactorInput(ServiceRequest):
|
|
1297
|
-
Description:
|
|
1298
|
-
EnableStackCreation:
|
|
1299
|
-
ResourceMappings:
|
|
1336
|
+
Description: Description | None
|
|
1337
|
+
EnableStackCreation: EnableStackCreation | None
|
|
1338
|
+
ResourceMappings: ResourceMappings | None
|
|
1300
1339
|
StackDefinitions: StackDefinitions
|
|
1301
1340
|
|
|
1302
1341
|
|
|
@@ -1305,29 +1344,29 @@ class CreateStackRefactorOutput(TypedDict, total=False):
|
|
|
1305
1344
|
|
|
1306
1345
|
|
|
1307
1346
|
class ManagedExecution(TypedDict, total=False):
|
|
1308
|
-
Active:
|
|
1347
|
+
Active: ManagedExecutionNullable | None
|
|
1309
1348
|
|
|
1310
1349
|
|
|
1311
1350
|
class CreateStackSetInput(ServiceRequest):
|
|
1312
1351
|
StackSetName: StackSetName
|
|
1313
|
-
Description:
|
|
1314
|
-
TemplateBody:
|
|
1315
|
-
TemplateURL:
|
|
1316
|
-
StackId:
|
|
1317
|
-
Parameters:
|
|
1318
|
-
Capabilities:
|
|
1319
|
-
Tags:
|
|
1320
|
-
AdministrationRoleARN:
|
|
1321
|
-
ExecutionRoleName:
|
|
1322
|
-
PermissionModel:
|
|
1323
|
-
AutoDeployment:
|
|
1324
|
-
CallAs:
|
|
1325
|
-
ClientRequestToken:
|
|
1326
|
-
ManagedExecution:
|
|
1352
|
+
Description: Description | None
|
|
1353
|
+
TemplateBody: TemplateBody | None
|
|
1354
|
+
TemplateURL: TemplateURL | None
|
|
1355
|
+
StackId: StackId | None
|
|
1356
|
+
Parameters: Parameters | None
|
|
1357
|
+
Capabilities: Capabilities | None
|
|
1358
|
+
Tags: Tags | None
|
|
1359
|
+
AdministrationRoleARN: RoleARN | None
|
|
1360
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
1361
|
+
PermissionModel: PermissionModels | None
|
|
1362
|
+
AutoDeployment: AutoDeployment | None
|
|
1363
|
+
CallAs: CallAs | None
|
|
1364
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1365
|
+
ManagedExecution: ManagedExecution | None
|
|
1327
1366
|
|
|
1328
1367
|
|
|
1329
1368
|
class CreateStackSetOutput(TypedDict, total=False):
|
|
1330
|
-
StackSetId:
|
|
1369
|
+
StackSetId: StackSetId | None
|
|
1331
1370
|
|
|
1332
1371
|
|
|
1333
1372
|
class DeactivateOrganizationsAccessInput(ServiceRequest):
|
|
@@ -1339,9 +1378,9 @@ class DeactivateOrganizationsAccessOutput(TypedDict, total=False):
|
|
|
1339
1378
|
|
|
1340
1379
|
|
|
1341
1380
|
class DeactivateTypeInput(ServiceRequest):
|
|
1342
|
-
TypeName:
|
|
1343
|
-
Type:
|
|
1344
|
-
Arn:
|
|
1381
|
+
TypeName: TypeName | None
|
|
1382
|
+
Type: ThirdPartyType | None
|
|
1383
|
+
Arn: PrivateTypeArn | None
|
|
1345
1384
|
|
|
1346
1385
|
|
|
1347
1386
|
class DeactivateTypeOutput(TypedDict, total=False):
|
|
@@ -1350,7 +1389,7 @@ class DeactivateTypeOutput(TypedDict, total=False):
|
|
|
1350
1389
|
|
|
1351
1390
|
class DeleteChangeSetInput(ServiceRequest):
|
|
1352
1391
|
ChangeSetName: ChangeSetNameOrId
|
|
1353
|
-
StackName:
|
|
1392
|
+
StackName: StackNameOrId | None
|
|
1354
1393
|
|
|
1355
1394
|
|
|
1356
1395
|
class DeleteChangeSetOutput(TypedDict, total=False):
|
|
@@ -1361,35 +1400,35 @@ class DeleteGeneratedTemplateInput(ServiceRequest):
|
|
|
1361
1400
|
GeneratedTemplateName: GeneratedTemplateName
|
|
1362
1401
|
|
|
1363
1402
|
|
|
1364
|
-
RetainResources =
|
|
1403
|
+
RetainResources = list[LogicalResourceId]
|
|
1365
1404
|
|
|
1366
1405
|
|
|
1367
1406
|
class DeleteStackInput(ServiceRequest):
|
|
1368
1407
|
StackName: StackName
|
|
1369
|
-
RetainResources:
|
|
1370
|
-
RoleARN:
|
|
1371
|
-
ClientRequestToken:
|
|
1372
|
-
DeletionMode:
|
|
1408
|
+
RetainResources: RetainResources | None
|
|
1409
|
+
RoleARN: RoleARN | None
|
|
1410
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1411
|
+
DeletionMode: DeletionMode | None
|
|
1373
1412
|
|
|
1374
1413
|
|
|
1375
1414
|
class DeleteStackInstancesInput(ServiceRequest):
|
|
1376
1415
|
StackSetName: StackSetName
|
|
1377
|
-
Accounts:
|
|
1378
|
-
DeploymentTargets:
|
|
1416
|
+
Accounts: AccountList | None
|
|
1417
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1379
1418
|
Regions: RegionList
|
|
1380
|
-
OperationPreferences:
|
|
1419
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1381
1420
|
RetainStacks: RetainStacks
|
|
1382
|
-
OperationId:
|
|
1383
|
-
CallAs:
|
|
1421
|
+
OperationId: ClientRequestToken | None
|
|
1422
|
+
CallAs: CallAs | None
|
|
1384
1423
|
|
|
1385
1424
|
|
|
1386
1425
|
class DeleteStackInstancesOutput(TypedDict, total=False):
|
|
1387
|
-
OperationId:
|
|
1426
|
+
OperationId: ClientRequestToken | None
|
|
1388
1427
|
|
|
1389
1428
|
|
|
1390
1429
|
class DeleteStackSetInput(ServiceRequest):
|
|
1391
1430
|
StackSetName: StackSetName
|
|
1392
|
-
CallAs:
|
|
1431
|
+
CallAs: CallAs | None
|
|
1393
1432
|
|
|
1394
1433
|
|
|
1395
1434
|
class DeleteStackSetOutput(TypedDict, total=False):
|
|
@@ -1400,10 +1439,10 @@ DeletionTime = datetime
|
|
|
1400
1439
|
|
|
1401
1440
|
|
|
1402
1441
|
class DeregisterTypeInput(ServiceRequest):
|
|
1403
|
-
Arn:
|
|
1404
|
-
Type:
|
|
1405
|
-
TypeName:
|
|
1406
|
-
VersionId:
|
|
1442
|
+
Arn: PrivateTypeArn | None
|
|
1443
|
+
Type: RegistryType | None
|
|
1444
|
+
TypeName: TypeName | None
|
|
1445
|
+
VersionId: TypeVersionId | None
|
|
1407
1446
|
|
|
1408
1447
|
|
|
1409
1448
|
class DeregisterTypeOutput(TypedDict, total=False):
|
|
@@ -1411,60 +1450,60 @@ class DeregisterTypeOutput(TypedDict, total=False):
|
|
|
1411
1450
|
|
|
1412
1451
|
|
|
1413
1452
|
class DescribeAccountLimitsInput(ServiceRequest):
|
|
1414
|
-
NextToken:
|
|
1453
|
+
NextToken: NextToken | None
|
|
1415
1454
|
|
|
1416
1455
|
|
|
1417
1456
|
class DescribeAccountLimitsOutput(TypedDict, total=False):
|
|
1418
|
-
AccountLimits:
|
|
1419
|
-
NextToken:
|
|
1457
|
+
AccountLimits: AccountLimitList | None
|
|
1458
|
+
NextToken: NextToken | None
|
|
1420
1459
|
|
|
1421
1460
|
|
|
1422
1461
|
class DescribeChangeSetHooksInput(ServiceRequest):
|
|
1423
1462
|
ChangeSetName: ChangeSetNameOrId
|
|
1424
|
-
StackName:
|
|
1425
|
-
NextToken:
|
|
1426
|
-
LogicalResourceId:
|
|
1463
|
+
StackName: StackNameOrId | None
|
|
1464
|
+
NextToken: NextToken | None
|
|
1465
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1427
1466
|
|
|
1428
1467
|
|
|
1429
1468
|
class DescribeChangeSetHooksOutput(TypedDict, total=False):
|
|
1430
|
-
ChangeSetId:
|
|
1431
|
-
ChangeSetName:
|
|
1432
|
-
Hooks:
|
|
1433
|
-
Status:
|
|
1434
|
-
NextToken:
|
|
1435
|
-
StackId:
|
|
1436
|
-
StackName:
|
|
1469
|
+
ChangeSetId: ChangeSetId | None
|
|
1470
|
+
ChangeSetName: ChangeSetName | None
|
|
1471
|
+
Hooks: ChangeSetHooks | None
|
|
1472
|
+
Status: ChangeSetHooksStatus | None
|
|
1473
|
+
NextToken: NextToken | None
|
|
1474
|
+
StackId: StackId | None
|
|
1475
|
+
StackName: StackName | None
|
|
1437
1476
|
|
|
1438
1477
|
|
|
1439
1478
|
class DescribeChangeSetInput(ServiceRequest):
|
|
1440
1479
|
ChangeSetName: ChangeSetNameOrId
|
|
1441
|
-
StackName:
|
|
1442
|
-
NextToken:
|
|
1443
|
-
IncludePropertyValues:
|
|
1480
|
+
StackName: StackNameOrId | None
|
|
1481
|
+
NextToken: NextToken | None
|
|
1482
|
+
IncludePropertyValues: IncludePropertyValues | None
|
|
1444
1483
|
|
|
1445
1484
|
|
|
1446
1485
|
class DescribeChangeSetOutput(TypedDict, total=False):
|
|
1447
|
-
ChangeSetName:
|
|
1448
|
-
ChangeSetId:
|
|
1449
|
-
StackId:
|
|
1450
|
-
StackName:
|
|
1451
|
-
Description:
|
|
1452
|
-
Parameters:
|
|
1453
|
-
CreationTime:
|
|
1454
|
-
ExecutionStatus:
|
|
1455
|
-
Status:
|
|
1456
|
-
StatusReason:
|
|
1457
|
-
NotificationARNs:
|
|
1458
|
-
RollbackConfiguration:
|
|
1459
|
-
Capabilities:
|
|
1460
|
-
Tags:
|
|
1461
|
-
Changes:
|
|
1462
|
-
NextToken:
|
|
1463
|
-
IncludeNestedStacks:
|
|
1464
|
-
ParentChangeSetId:
|
|
1465
|
-
RootChangeSetId:
|
|
1466
|
-
OnStackFailure:
|
|
1467
|
-
ImportExistingResources:
|
|
1486
|
+
ChangeSetName: ChangeSetName | None
|
|
1487
|
+
ChangeSetId: ChangeSetId | None
|
|
1488
|
+
StackId: StackId | None
|
|
1489
|
+
StackName: StackName | None
|
|
1490
|
+
Description: Description | None
|
|
1491
|
+
Parameters: Parameters | None
|
|
1492
|
+
CreationTime: CreationTime | None
|
|
1493
|
+
ExecutionStatus: ExecutionStatus | None
|
|
1494
|
+
Status: ChangeSetStatus | None
|
|
1495
|
+
StatusReason: ChangeSetStatusReason | None
|
|
1496
|
+
NotificationARNs: NotificationARNs | None
|
|
1497
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1498
|
+
Capabilities: Capabilities | None
|
|
1499
|
+
Tags: Tags | None
|
|
1500
|
+
Changes: Changes | None
|
|
1501
|
+
NextToken: NextToken | None
|
|
1502
|
+
IncludeNestedStacks: IncludeNestedStacks | None
|
|
1503
|
+
ParentChangeSetId: ChangeSetId | None
|
|
1504
|
+
RootChangeSetId: ChangeSetId | None
|
|
1505
|
+
OnStackFailure: OnStackFailure | None
|
|
1506
|
+
ImportExistingResources: ImportExistingResources | None
|
|
1468
1507
|
|
|
1469
1508
|
|
|
1470
1509
|
class DescribeGeneratedTemplateInput(ServiceRequest):
|
|
@@ -1472,102 +1511,102 @@ class DescribeGeneratedTemplateInput(ServiceRequest):
|
|
|
1472
1511
|
|
|
1473
1512
|
|
|
1474
1513
|
class TemplateProgress(TypedDict, total=False):
|
|
1475
|
-
ResourcesSucceeded:
|
|
1476
|
-
ResourcesFailed:
|
|
1477
|
-
ResourcesProcessing:
|
|
1478
|
-
ResourcesPending:
|
|
1514
|
+
ResourcesSucceeded: ResourcesSucceeded | None
|
|
1515
|
+
ResourcesFailed: ResourcesFailed | None
|
|
1516
|
+
ResourcesProcessing: ResourcesProcessing | None
|
|
1517
|
+
ResourcesPending: ResourcesPending | None
|
|
1479
1518
|
|
|
1480
1519
|
|
|
1481
1520
|
LastUpdatedTime = datetime
|
|
1482
1521
|
|
|
1483
1522
|
|
|
1484
1523
|
class WarningProperty(TypedDict, total=False):
|
|
1485
|
-
PropertyPath:
|
|
1486
|
-
Required:
|
|
1487
|
-
Description:
|
|
1524
|
+
PropertyPath: PropertyPath | None
|
|
1525
|
+
Required: RequiredProperty | None
|
|
1526
|
+
Description: PropertyDescription | None
|
|
1488
1527
|
|
|
1489
1528
|
|
|
1490
|
-
WarningProperties =
|
|
1529
|
+
WarningProperties = list[WarningProperty]
|
|
1491
1530
|
|
|
1492
1531
|
|
|
1493
1532
|
class WarningDetail(TypedDict, total=False):
|
|
1494
|
-
Type:
|
|
1495
|
-
Properties:
|
|
1533
|
+
Type: WarningType | None
|
|
1534
|
+
Properties: WarningProperties | None
|
|
1496
1535
|
|
|
1497
1536
|
|
|
1498
|
-
WarningDetails =
|
|
1537
|
+
WarningDetails = list[WarningDetail]
|
|
1499
1538
|
|
|
1500
1539
|
|
|
1501
1540
|
class ResourceDetail(TypedDict, total=False):
|
|
1502
|
-
ResourceType:
|
|
1503
|
-
LogicalResourceId:
|
|
1504
|
-
ResourceIdentifier:
|
|
1505
|
-
ResourceStatus:
|
|
1506
|
-
ResourceStatusReason:
|
|
1507
|
-
Warnings:
|
|
1541
|
+
ResourceType: ResourceType | None
|
|
1542
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1543
|
+
ResourceIdentifier: ResourceIdentifierProperties | None
|
|
1544
|
+
ResourceStatus: GeneratedTemplateResourceStatus | None
|
|
1545
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1546
|
+
Warnings: WarningDetails | None
|
|
1508
1547
|
|
|
1509
1548
|
|
|
1510
|
-
ResourceDetails =
|
|
1549
|
+
ResourceDetails = list[ResourceDetail]
|
|
1511
1550
|
|
|
1512
1551
|
|
|
1513
1552
|
class DescribeGeneratedTemplateOutput(TypedDict, total=False):
|
|
1514
|
-
GeneratedTemplateId:
|
|
1515
|
-
GeneratedTemplateName:
|
|
1516
|
-
Resources:
|
|
1517
|
-
Status:
|
|
1518
|
-
StatusReason:
|
|
1519
|
-
CreationTime:
|
|
1520
|
-
LastUpdatedTime:
|
|
1521
|
-
Progress:
|
|
1522
|
-
StackId:
|
|
1523
|
-
TemplateConfiguration:
|
|
1524
|
-
TotalWarnings:
|
|
1553
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
1554
|
+
GeneratedTemplateName: GeneratedTemplateName | None
|
|
1555
|
+
Resources: ResourceDetails | None
|
|
1556
|
+
Status: GeneratedTemplateStatus | None
|
|
1557
|
+
StatusReason: TemplateStatusReason | None
|
|
1558
|
+
CreationTime: CreationTime | None
|
|
1559
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
1560
|
+
Progress: TemplateProgress | None
|
|
1561
|
+
StackId: StackId | None
|
|
1562
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
1563
|
+
TotalWarnings: TotalWarnings | None
|
|
1525
1564
|
|
|
1526
1565
|
|
|
1527
1566
|
class DescribeOrganizationsAccessInput(ServiceRequest):
|
|
1528
|
-
CallAs:
|
|
1567
|
+
CallAs: CallAs | None
|
|
1529
1568
|
|
|
1530
1569
|
|
|
1531
1570
|
class DescribeOrganizationsAccessOutput(TypedDict, total=False):
|
|
1532
|
-
Status:
|
|
1571
|
+
Status: OrganizationStatus | None
|
|
1533
1572
|
|
|
1534
1573
|
|
|
1535
1574
|
class DescribePublisherInput(ServiceRequest):
|
|
1536
|
-
PublisherId:
|
|
1575
|
+
PublisherId: PublisherId | None
|
|
1537
1576
|
|
|
1538
1577
|
|
|
1539
1578
|
class DescribePublisherOutput(TypedDict, total=False):
|
|
1540
|
-
PublisherId:
|
|
1541
|
-
PublisherStatus:
|
|
1542
|
-
IdentityProvider:
|
|
1543
|
-
PublisherProfile:
|
|
1579
|
+
PublisherId: PublisherId | None
|
|
1580
|
+
PublisherStatus: PublisherStatus | None
|
|
1581
|
+
IdentityProvider: IdentityProvider | None
|
|
1582
|
+
PublisherProfile: PublisherProfile | None
|
|
1544
1583
|
|
|
1545
1584
|
|
|
1546
1585
|
class DescribeResourceScanInput(ServiceRequest):
|
|
1547
1586
|
ResourceScanId: ResourceScanId
|
|
1548
1587
|
|
|
1549
1588
|
|
|
1550
|
-
ResourceTypeFilters =
|
|
1589
|
+
ResourceTypeFilters = list[ResourceTypeFilter]
|
|
1551
1590
|
|
|
1552
1591
|
|
|
1553
1592
|
class ScanFilter(TypedDict, total=False):
|
|
1554
|
-
Types:
|
|
1593
|
+
Types: ResourceTypeFilters | None
|
|
1555
1594
|
|
|
1556
1595
|
|
|
1557
|
-
ScanFilters =
|
|
1596
|
+
ScanFilters = list[ScanFilter]
|
|
1558
1597
|
|
|
1559
1598
|
|
|
1560
1599
|
class DescribeResourceScanOutput(TypedDict, total=False):
|
|
1561
|
-
ResourceScanId:
|
|
1562
|
-
Status:
|
|
1563
|
-
StatusReason:
|
|
1564
|
-
StartTime:
|
|
1565
|
-
EndTime:
|
|
1566
|
-
PercentageCompleted:
|
|
1567
|
-
ResourceTypes:
|
|
1568
|
-
ResourcesScanned:
|
|
1569
|
-
ResourcesRead:
|
|
1570
|
-
ScanFilters:
|
|
1600
|
+
ResourceScanId: ResourceScanId | None
|
|
1601
|
+
Status: ResourceScanStatus | None
|
|
1602
|
+
StatusReason: ResourceScanStatusReason | None
|
|
1603
|
+
StartTime: Timestamp | None
|
|
1604
|
+
EndTime: Timestamp | None
|
|
1605
|
+
PercentageCompleted: PercentageCompleted | None
|
|
1606
|
+
ResourceTypes: ResourceTypes | None
|
|
1607
|
+
ResourcesScanned: ResourcesScanned | None
|
|
1608
|
+
ResourcesRead: ResourcesRead | None
|
|
1609
|
+
ScanFilters: ScanFilters | None
|
|
1571
1610
|
|
|
1572
1611
|
|
|
1573
1612
|
class DescribeStackDriftDetectionStatusInput(ServiceRequest):
|
|
@@ -1577,102 +1616,102 @@ class DescribeStackDriftDetectionStatusInput(ServiceRequest):
|
|
|
1577
1616
|
class DescribeStackDriftDetectionStatusOutput(TypedDict, total=False):
|
|
1578
1617
|
StackId: StackId
|
|
1579
1618
|
StackDriftDetectionId: StackDriftDetectionId
|
|
1580
|
-
StackDriftStatus:
|
|
1619
|
+
StackDriftStatus: StackDriftStatus | None
|
|
1581
1620
|
DetectionStatus: StackDriftDetectionStatus
|
|
1582
|
-
DetectionStatusReason:
|
|
1583
|
-
DriftedStackResourceCount:
|
|
1621
|
+
DetectionStatusReason: StackDriftDetectionStatusReason | None
|
|
1622
|
+
DriftedStackResourceCount: BoxedInteger | None
|
|
1584
1623
|
Timestamp: Timestamp
|
|
1585
1624
|
|
|
1586
1625
|
|
|
1587
1626
|
class DescribeStackEventsInput(ServiceRequest):
|
|
1588
|
-
StackName:
|
|
1589
|
-
NextToken:
|
|
1627
|
+
StackName: StackName
|
|
1628
|
+
NextToken: NextToken | None
|
|
1590
1629
|
|
|
1591
1630
|
|
|
1592
1631
|
class StackEvent(TypedDict, total=False):
|
|
1593
1632
|
StackId: StackId
|
|
1594
1633
|
EventId: EventId
|
|
1595
1634
|
StackName: StackName
|
|
1596
|
-
LogicalResourceId:
|
|
1597
|
-
PhysicalResourceId:
|
|
1598
|
-
ResourceType:
|
|
1635
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1636
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1637
|
+
ResourceType: ResourceType | None
|
|
1599
1638
|
Timestamp: Timestamp
|
|
1600
|
-
ResourceStatus:
|
|
1601
|
-
ResourceStatusReason:
|
|
1602
|
-
ResourceProperties:
|
|
1603
|
-
ClientRequestToken:
|
|
1604
|
-
HookType:
|
|
1605
|
-
HookStatus:
|
|
1606
|
-
HookStatusReason:
|
|
1607
|
-
HookInvocationPoint:
|
|
1608
|
-
HookInvocationId:
|
|
1609
|
-
HookFailureMode:
|
|
1610
|
-
DetailedStatus:
|
|
1639
|
+
ResourceStatus: ResourceStatus | None
|
|
1640
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1641
|
+
ResourceProperties: ResourceProperties | None
|
|
1642
|
+
ClientRequestToken: ClientRequestToken | None
|
|
1643
|
+
HookType: HookType | None
|
|
1644
|
+
HookStatus: HookStatus | None
|
|
1645
|
+
HookStatusReason: HookStatusReason | None
|
|
1646
|
+
HookInvocationPoint: HookInvocationPoint | None
|
|
1647
|
+
HookInvocationId: HookInvocationId | None
|
|
1648
|
+
HookFailureMode: HookFailureMode | None
|
|
1649
|
+
DetailedStatus: DetailedStatus | None
|
|
1611
1650
|
|
|
1612
1651
|
|
|
1613
|
-
StackEvents =
|
|
1652
|
+
StackEvents = list[StackEvent]
|
|
1614
1653
|
|
|
1615
1654
|
|
|
1616
1655
|
class DescribeStackEventsOutput(TypedDict, total=False):
|
|
1617
|
-
StackEvents:
|
|
1618
|
-
NextToken:
|
|
1656
|
+
StackEvents: StackEvents | None
|
|
1657
|
+
NextToken: NextToken | None
|
|
1619
1658
|
|
|
1620
1659
|
|
|
1621
1660
|
class DescribeStackInstanceInput(ServiceRequest):
|
|
1622
1661
|
StackSetName: StackSetName
|
|
1623
1662
|
StackInstanceAccount: Account
|
|
1624
1663
|
StackInstanceRegion: Region
|
|
1625
|
-
CallAs:
|
|
1664
|
+
CallAs: CallAs | None
|
|
1626
1665
|
|
|
1627
1666
|
|
|
1628
1667
|
class StackInstanceComprehensiveStatus(TypedDict, total=False):
|
|
1629
|
-
DetailedStatus:
|
|
1668
|
+
DetailedStatus: StackInstanceDetailedStatus | None
|
|
1630
1669
|
|
|
1631
1670
|
|
|
1632
1671
|
class StackInstance(TypedDict, total=False):
|
|
1633
|
-
StackSetId:
|
|
1634
|
-
Region:
|
|
1635
|
-
Account:
|
|
1636
|
-
StackId:
|
|
1637
|
-
ParameterOverrides:
|
|
1638
|
-
Status:
|
|
1639
|
-
StackInstanceStatus:
|
|
1640
|
-
StatusReason:
|
|
1641
|
-
OrganizationalUnitId:
|
|
1642
|
-
DriftStatus:
|
|
1643
|
-
LastDriftCheckTimestamp:
|
|
1644
|
-
LastOperationId:
|
|
1672
|
+
StackSetId: StackSetId | None
|
|
1673
|
+
Region: Region | None
|
|
1674
|
+
Account: Account | None
|
|
1675
|
+
StackId: StackId | None
|
|
1676
|
+
ParameterOverrides: Parameters | None
|
|
1677
|
+
Status: StackInstanceStatus | None
|
|
1678
|
+
StackInstanceStatus: StackInstanceComprehensiveStatus | None
|
|
1679
|
+
StatusReason: Reason | None
|
|
1680
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
1681
|
+
DriftStatus: StackDriftStatus | None
|
|
1682
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
1683
|
+
LastOperationId: ClientRequestToken | None
|
|
1645
1684
|
|
|
1646
1685
|
|
|
1647
1686
|
class DescribeStackInstanceOutput(TypedDict, total=False):
|
|
1648
|
-
StackInstance:
|
|
1687
|
+
StackInstance: StackInstance | None
|
|
1649
1688
|
|
|
1650
1689
|
|
|
1651
1690
|
class DescribeStackRefactorInput(ServiceRequest):
|
|
1652
1691
|
StackRefactorId: StackRefactorId
|
|
1653
1692
|
|
|
1654
1693
|
|
|
1655
|
-
StackIds =
|
|
1694
|
+
StackIds = list[StackId]
|
|
1656
1695
|
|
|
1657
1696
|
|
|
1658
1697
|
class DescribeStackRefactorOutput(TypedDict, total=False):
|
|
1659
|
-
Description:
|
|
1660
|
-
StackRefactorId:
|
|
1661
|
-
StackIds:
|
|
1662
|
-
ExecutionStatus:
|
|
1663
|
-
ExecutionStatusReason:
|
|
1664
|
-
Status:
|
|
1665
|
-
StatusReason:
|
|
1698
|
+
Description: Description | None
|
|
1699
|
+
StackRefactorId: StackRefactorId | None
|
|
1700
|
+
StackIds: StackIds | None
|
|
1701
|
+
ExecutionStatus: StackRefactorExecutionStatus | None
|
|
1702
|
+
ExecutionStatusReason: ExecutionStatusReason | None
|
|
1703
|
+
Status: StackRefactorStatus | None
|
|
1704
|
+
StatusReason: StackRefactorStatusReason | None
|
|
1666
1705
|
|
|
1667
1706
|
|
|
1668
|
-
StackResourceDriftStatusFilters =
|
|
1707
|
+
StackResourceDriftStatusFilters = list[StackResourceDriftStatus]
|
|
1669
1708
|
|
|
1670
1709
|
|
|
1671
1710
|
class DescribeStackResourceDriftsInput(ServiceRequest):
|
|
1672
1711
|
StackName: StackNameOrId
|
|
1673
|
-
StackResourceDriftStatusFilters:
|
|
1674
|
-
NextToken:
|
|
1675
|
-
MaxResults:
|
|
1712
|
+
StackResourceDriftStatusFilters: StackResourceDriftStatusFilters | None
|
|
1713
|
+
NextToken: NextToken | None
|
|
1714
|
+
MaxResults: BoxedMaxResults | None
|
|
1676
1715
|
|
|
1677
1716
|
|
|
1678
1717
|
class PropertyDifference(TypedDict, total=False):
|
|
@@ -1682,7 +1721,7 @@ class PropertyDifference(TypedDict, total=False):
|
|
|
1682
1721
|
DifferenceType: DifferenceType
|
|
1683
1722
|
|
|
1684
1723
|
|
|
1685
|
-
PropertyDifferences =
|
|
1724
|
+
PropertyDifferences = list[PropertyDifference]
|
|
1686
1725
|
|
|
1687
1726
|
|
|
1688
1727
|
class PhysicalResourceIdContextKeyValuePair(TypedDict, total=False):
|
|
@@ -1690,30 +1729,30 @@ class PhysicalResourceIdContextKeyValuePair(TypedDict, total=False):
|
|
|
1690
1729
|
Value: Value
|
|
1691
1730
|
|
|
1692
1731
|
|
|
1693
|
-
PhysicalResourceIdContext =
|
|
1732
|
+
PhysicalResourceIdContext = list[PhysicalResourceIdContextKeyValuePair]
|
|
1694
1733
|
|
|
1695
1734
|
|
|
1696
1735
|
class StackResourceDrift(TypedDict, total=False):
|
|
1697
1736
|
StackId: StackId
|
|
1698
1737
|
LogicalResourceId: LogicalResourceId
|
|
1699
|
-
PhysicalResourceId:
|
|
1700
|
-
PhysicalResourceIdContext:
|
|
1738
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1739
|
+
PhysicalResourceIdContext: PhysicalResourceIdContext | None
|
|
1701
1740
|
ResourceType: ResourceType
|
|
1702
|
-
ExpectedProperties:
|
|
1703
|
-
ActualProperties:
|
|
1704
|
-
PropertyDifferences:
|
|
1741
|
+
ExpectedProperties: Properties | None
|
|
1742
|
+
ActualProperties: Properties | None
|
|
1743
|
+
PropertyDifferences: PropertyDifferences | None
|
|
1705
1744
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
1706
1745
|
Timestamp: Timestamp
|
|
1707
|
-
ModuleInfo:
|
|
1708
|
-
DriftStatusReason:
|
|
1746
|
+
ModuleInfo: ModuleInfo | None
|
|
1747
|
+
DriftStatusReason: StackResourceDriftStatusReason | None
|
|
1709
1748
|
|
|
1710
1749
|
|
|
1711
|
-
StackResourceDrifts =
|
|
1750
|
+
StackResourceDrifts = list[StackResourceDrift]
|
|
1712
1751
|
|
|
1713
1752
|
|
|
1714
1753
|
class DescribeStackResourceDriftsOutput(TypedDict, total=False):
|
|
1715
1754
|
StackResourceDrifts: StackResourceDrifts
|
|
1716
|
-
NextToken:
|
|
1755
|
+
NextToken: NextToken | None
|
|
1717
1756
|
|
|
1718
1757
|
|
|
1719
1758
|
class DescribeStackResourceInput(ServiceRequest):
|
|
@@ -1723,232 +1762,232 @@ class DescribeStackResourceInput(ServiceRequest):
|
|
|
1723
1762
|
|
|
1724
1763
|
class StackResourceDriftInformation(TypedDict, total=False):
|
|
1725
1764
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
1726
|
-
LastCheckTimestamp:
|
|
1765
|
+
LastCheckTimestamp: Timestamp | None
|
|
1727
1766
|
|
|
1728
1767
|
|
|
1729
1768
|
class StackResourceDetail(TypedDict, total=False):
|
|
1730
|
-
StackName:
|
|
1731
|
-
StackId:
|
|
1769
|
+
StackName: StackName | None
|
|
1770
|
+
StackId: StackId | None
|
|
1732
1771
|
LogicalResourceId: LogicalResourceId
|
|
1733
|
-
PhysicalResourceId:
|
|
1772
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1734
1773
|
ResourceType: ResourceType
|
|
1735
1774
|
LastUpdatedTimestamp: Timestamp
|
|
1736
1775
|
ResourceStatus: ResourceStatus
|
|
1737
|
-
ResourceStatusReason:
|
|
1738
|
-
Description:
|
|
1739
|
-
Metadata:
|
|
1740
|
-
DriftInformation:
|
|
1741
|
-
ModuleInfo:
|
|
1776
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1777
|
+
Description: Description | None
|
|
1778
|
+
Metadata: Metadata | None
|
|
1779
|
+
DriftInformation: StackResourceDriftInformation | None
|
|
1780
|
+
ModuleInfo: ModuleInfo | None
|
|
1742
1781
|
|
|
1743
1782
|
|
|
1744
1783
|
class DescribeStackResourceOutput(TypedDict, total=False):
|
|
1745
|
-
StackResourceDetail:
|
|
1784
|
+
StackResourceDetail: StackResourceDetail | None
|
|
1746
1785
|
|
|
1747
1786
|
|
|
1748
1787
|
class DescribeStackResourcesInput(ServiceRequest):
|
|
1749
|
-
StackName:
|
|
1750
|
-
LogicalResourceId:
|
|
1751
|
-
PhysicalResourceId:
|
|
1788
|
+
StackName: StackName | None
|
|
1789
|
+
LogicalResourceId: LogicalResourceId | None
|
|
1790
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1752
1791
|
|
|
1753
1792
|
|
|
1754
1793
|
class StackResource(TypedDict, total=False):
|
|
1755
|
-
StackName:
|
|
1756
|
-
StackId:
|
|
1794
|
+
StackName: StackName | None
|
|
1795
|
+
StackId: StackId | None
|
|
1757
1796
|
LogicalResourceId: LogicalResourceId
|
|
1758
|
-
PhysicalResourceId:
|
|
1797
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
1759
1798
|
ResourceType: ResourceType
|
|
1760
1799
|
Timestamp: Timestamp
|
|
1761
1800
|
ResourceStatus: ResourceStatus
|
|
1762
|
-
ResourceStatusReason:
|
|
1763
|
-
Description:
|
|
1764
|
-
DriftInformation:
|
|
1765
|
-
ModuleInfo:
|
|
1801
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
1802
|
+
Description: Description | None
|
|
1803
|
+
DriftInformation: StackResourceDriftInformation | None
|
|
1804
|
+
ModuleInfo: ModuleInfo | None
|
|
1766
1805
|
|
|
1767
1806
|
|
|
1768
|
-
StackResources =
|
|
1807
|
+
StackResources = list[StackResource]
|
|
1769
1808
|
|
|
1770
1809
|
|
|
1771
1810
|
class DescribeStackResourcesOutput(TypedDict, total=False):
|
|
1772
|
-
StackResources:
|
|
1811
|
+
StackResources: StackResources | None
|
|
1773
1812
|
|
|
1774
1813
|
|
|
1775
1814
|
class DescribeStackSetInput(ServiceRequest):
|
|
1776
1815
|
StackSetName: StackSetName
|
|
1777
|
-
CallAs:
|
|
1816
|
+
CallAs: CallAs | None
|
|
1778
1817
|
|
|
1779
1818
|
|
|
1780
1819
|
class DescribeStackSetOperationInput(ServiceRequest):
|
|
1781
1820
|
StackSetName: StackSetName
|
|
1782
1821
|
OperationId: ClientRequestToken
|
|
1783
|
-
CallAs:
|
|
1822
|
+
CallAs: CallAs | None
|
|
1784
1823
|
|
|
1785
1824
|
|
|
1786
1825
|
class StackSetOperationStatusDetails(TypedDict, total=False):
|
|
1787
|
-
FailedStackInstancesCount:
|
|
1826
|
+
FailedStackInstancesCount: FailedStackInstancesCount | None
|
|
1788
1827
|
|
|
1789
1828
|
|
|
1790
1829
|
class StackSetDriftDetectionDetails(TypedDict, total=False):
|
|
1791
|
-
DriftStatus:
|
|
1792
|
-
DriftDetectionStatus:
|
|
1793
|
-
LastDriftCheckTimestamp:
|
|
1794
|
-
TotalStackInstancesCount:
|
|
1795
|
-
DriftedStackInstancesCount:
|
|
1796
|
-
InSyncStackInstancesCount:
|
|
1797
|
-
InProgressStackInstancesCount:
|
|
1798
|
-
FailedStackInstancesCount:
|
|
1830
|
+
DriftStatus: StackSetDriftStatus | None
|
|
1831
|
+
DriftDetectionStatus: StackSetDriftDetectionStatus | None
|
|
1832
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
1833
|
+
TotalStackInstancesCount: TotalStackInstancesCount | None
|
|
1834
|
+
DriftedStackInstancesCount: DriftedStackInstancesCount | None
|
|
1835
|
+
InSyncStackInstancesCount: InSyncStackInstancesCount | None
|
|
1836
|
+
InProgressStackInstancesCount: InProgressStackInstancesCount | None
|
|
1837
|
+
FailedStackInstancesCount: FailedStackInstancesCount | None
|
|
1799
1838
|
|
|
1800
1839
|
|
|
1801
1840
|
class StackSetOperation(TypedDict, total=False):
|
|
1802
|
-
OperationId:
|
|
1803
|
-
StackSetId:
|
|
1804
|
-
Action:
|
|
1805
|
-
Status:
|
|
1806
|
-
OperationPreferences:
|
|
1807
|
-
RetainStacks:
|
|
1808
|
-
AdministrationRoleARN:
|
|
1809
|
-
ExecutionRoleName:
|
|
1810
|
-
CreationTimestamp:
|
|
1811
|
-
EndTimestamp:
|
|
1812
|
-
DeploymentTargets:
|
|
1813
|
-
StackSetDriftDetectionDetails:
|
|
1814
|
-
StatusReason:
|
|
1815
|
-
StatusDetails:
|
|
1841
|
+
OperationId: ClientRequestToken | None
|
|
1842
|
+
StackSetId: StackSetId | None
|
|
1843
|
+
Action: StackSetOperationAction | None
|
|
1844
|
+
Status: StackSetOperationStatus | None
|
|
1845
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
1846
|
+
RetainStacks: RetainStacksNullable | None
|
|
1847
|
+
AdministrationRoleARN: RoleARN | None
|
|
1848
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
1849
|
+
CreationTimestamp: Timestamp | None
|
|
1850
|
+
EndTimestamp: Timestamp | None
|
|
1851
|
+
DeploymentTargets: DeploymentTargets | None
|
|
1852
|
+
StackSetDriftDetectionDetails: StackSetDriftDetectionDetails | None
|
|
1853
|
+
StatusReason: StackSetOperationStatusReason | None
|
|
1854
|
+
StatusDetails: StackSetOperationStatusDetails | None
|
|
1816
1855
|
|
|
1817
1856
|
|
|
1818
1857
|
class DescribeStackSetOperationOutput(TypedDict, total=False):
|
|
1819
|
-
StackSetOperation:
|
|
1858
|
+
StackSetOperation: StackSetOperation | None
|
|
1820
1859
|
|
|
1821
1860
|
|
|
1822
1861
|
class StackSet(TypedDict, total=False):
|
|
1823
|
-
StackSetName:
|
|
1824
|
-
StackSetId:
|
|
1825
|
-
Description:
|
|
1826
|
-
Status:
|
|
1827
|
-
TemplateBody:
|
|
1828
|
-
Parameters:
|
|
1829
|
-
Capabilities:
|
|
1830
|
-
Tags:
|
|
1831
|
-
StackSetARN:
|
|
1832
|
-
AdministrationRoleARN:
|
|
1833
|
-
ExecutionRoleName:
|
|
1834
|
-
StackSetDriftDetectionDetails:
|
|
1835
|
-
AutoDeployment:
|
|
1836
|
-
PermissionModel:
|
|
1837
|
-
OrganizationalUnitIds:
|
|
1838
|
-
ManagedExecution:
|
|
1839
|
-
Regions:
|
|
1862
|
+
StackSetName: StackSetName | None
|
|
1863
|
+
StackSetId: StackSetId | None
|
|
1864
|
+
Description: Description | None
|
|
1865
|
+
Status: StackSetStatus | None
|
|
1866
|
+
TemplateBody: TemplateBody | None
|
|
1867
|
+
Parameters: Parameters | None
|
|
1868
|
+
Capabilities: Capabilities | None
|
|
1869
|
+
Tags: Tags | None
|
|
1870
|
+
StackSetARN: StackSetARN | None
|
|
1871
|
+
AdministrationRoleARN: RoleARN | None
|
|
1872
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
1873
|
+
StackSetDriftDetectionDetails: StackSetDriftDetectionDetails | None
|
|
1874
|
+
AutoDeployment: AutoDeployment | None
|
|
1875
|
+
PermissionModel: PermissionModels | None
|
|
1876
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
1877
|
+
ManagedExecution: ManagedExecution | None
|
|
1878
|
+
Regions: RegionList | None
|
|
1840
1879
|
|
|
1841
1880
|
|
|
1842
1881
|
class DescribeStackSetOutput(TypedDict, total=False):
|
|
1843
|
-
StackSet:
|
|
1882
|
+
StackSet: StackSet | None
|
|
1844
1883
|
|
|
1845
1884
|
|
|
1846
1885
|
class DescribeStacksInput(ServiceRequest):
|
|
1847
|
-
StackName:
|
|
1848
|
-
NextToken:
|
|
1886
|
+
StackName: StackName | None
|
|
1887
|
+
NextToken: NextToken | None
|
|
1849
1888
|
|
|
1850
1889
|
|
|
1851
1890
|
class StackDriftInformation(TypedDict, total=False):
|
|
1852
1891
|
StackDriftStatus: StackDriftStatus
|
|
1853
|
-
LastCheckTimestamp:
|
|
1892
|
+
LastCheckTimestamp: Timestamp | None
|
|
1854
1893
|
|
|
1855
1894
|
|
|
1856
1895
|
class Output(TypedDict, total=False):
|
|
1857
|
-
OutputKey:
|
|
1858
|
-
OutputValue:
|
|
1859
|
-
Description:
|
|
1860
|
-
ExportName:
|
|
1896
|
+
OutputKey: OutputKey | None
|
|
1897
|
+
OutputValue: OutputValue | None
|
|
1898
|
+
Description: Description | None
|
|
1899
|
+
ExportName: ExportName | None
|
|
1861
1900
|
|
|
1862
1901
|
|
|
1863
|
-
Outputs =
|
|
1902
|
+
Outputs = list[Output]
|
|
1864
1903
|
|
|
1865
1904
|
|
|
1866
1905
|
class Stack(TypedDict, total=False):
|
|
1867
|
-
StackId:
|
|
1906
|
+
StackId: StackId | None
|
|
1868
1907
|
StackName: StackName
|
|
1869
|
-
ChangeSetId:
|
|
1870
|
-
Description:
|
|
1871
|
-
Parameters:
|
|
1908
|
+
ChangeSetId: ChangeSetId | None
|
|
1909
|
+
Description: Description | None
|
|
1910
|
+
Parameters: Parameters | None
|
|
1872
1911
|
CreationTime: CreationTime
|
|
1873
|
-
DeletionTime:
|
|
1874
|
-
LastUpdatedTime:
|
|
1875
|
-
RollbackConfiguration:
|
|
1912
|
+
DeletionTime: DeletionTime | None
|
|
1913
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
1914
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
1876
1915
|
StackStatus: StackStatus
|
|
1877
|
-
StackStatusReason:
|
|
1878
|
-
DisableRollback:
|
|
1879
|
-
NotificationARNs:
|
|
1880
|
-
TimeoutInMinutes:
|
|
1881
|
-
Capabilities:
|
|
1882
|
-
Outputs:
|
|
1883
|
-
RoleARN:
|
|
1884
|
-
Tags:
|
|
1885
|
-
EnableTerminationProtection:
|
|
1886
|
-
ParentId:
|
|
1887
|
-
RootId:
|
|
1888
|
-
DriftInformation:
|
|
1889
|
-
RetainExceptOnCreate:
|
|
1890
|
-
DeletionMode:
|
|
1891
|
-
DetailedStatus:
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
Stacks =
|
|
1916
|
+
StackStatusReason: StackStatusReason | None
|
|
1917
|
+
DisableRollback: DisableRollback | None
|
|
1918
|
+
NotificationARNs: NotificationARNs | None
|
|
1919
|
+
TimeoutInMinutes: TimeoutMinutes | None
|
|
1920
|
+
Capabilities: Capabilities | None
|
|
1921
|
+
Outputs: Outputs | None
|
|
1922
|
+
RoleARN: RoleARN | None
|
|
1923
|
+
Tags: Tags | None
|
|
1924
|
+
EnableTerminationProtection: EnableTerminationProtection | None
|
|
1925
|
+
ParentId: StackId | None
|
|
1926
|
+
RootId: StackId | None
|
|
1927
|
+
DriftInformation: StackDriftInformation | None
|
|
1928
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
1929
|
+
DeletionMode: DeletionMode | None
|
|
1930
|
+
DetailedStatus: DetailedStatus | None
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
Stacks = list[Stack]
|
|
1895
1934
|
|
|
1896
1935
|
|
|
1897
1936
|
class DescribeStacksOutput(TypedDict, total=False):
|
|
1898
|
-
Stacks:
|
|
1899
|
-
NextToken:
|
|
1937
|
+
Stacks: Stacks | None
|
|
1938
|
+
NextToken: NextToken | None
|
|
1900
1939
|
|
|
1901
1940
|
|
|
1902
1941
|
class DescribeTypeInput(ServiceRequest):
|
|
1903
|
-
Type:
|
|
1904
|
-
TypeName:
|
|
1905
|
-
Arn:
|
|
1906
|
-
VersionId:
|
|
1907
|
-
PublisherId:
|
|
1908
|
-
PublicVersionNumber:
|
|
1942
|
+
Type: RegistryType | None
|
|
1943
|
+
TypeName: TypeName | None
|
|
1944
|
+
Arn: TypeArn | None
|
|
1945
|
+
VersionId: TypeVersionId | None
|
|
1946
|
+
PublisherId: PublisherId | None
|
|
1947
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
1909
1948
|
|
|
1910
1949
|
|
|
1911
|
-
SupportedMajorVersions =
|
|
1950
|
+
SupportedMajorVersions = list[SupportedMajorVersion]
|
|
1912
1951
|
|
|
1913
1952
|
|
|
1914
1953
|
class RequiredActivatedType(TypedDict, total=False):
|
|
1915
|
-
TypeNameAlias:
|
|
1916
|
-
OriginalTypeName:
|
|
1917
|
-
PublisherId:
|
|
1918
|
-
SupportedMajorVersions:
|
|
1954
|
+
TypeNameAlias: TypeName | None
|
|
1955
|
+
OriginalTypeName: TypeName | None
|
|
1956
|
+
PublisherId: PublisherId | None
|
|
1957
|
+
SupportedMajorVersions: SupportedMajorVersions | None
|
|
1919
1958
|
|
|
1920
1959
|
|
|
1921
|
-
RequiredActivatedTypes =
|
|
1960
|
+
RequiredActivatedTypes = list[RequiredActivatedType]
|
|
1922
1961
|
|
|
1923
1962
|
|
|
1924
1963
|
class DescribeTypeOutput(TypedDict, total=False):
|
|
1925
|
-
Arn:
|
|
1926
|
-
Type:
|
|
1927
|
-
TypeName:
|
|
1928
|
-
DefaultVersionId:
|
|
1929
|
-
IsDefaultVersion:
|
|
1930
|
-
TypeTestsStatus:
|
|
1931
|
-
TypeTestsStatusDescription:
|
|
1932
|
-
Description:
|
|
1933
|
-
Schema:
|
|
1934
|
-
ProvisioningType:
|
|
1935
|
-
DeprecatedStatus:
|
|
1936
|
-
LoggingConfig:
|
|
1937
|
-
RequiredActivatedTypes:
|
|
1938
|
-
ExecutionRoleArn:
|
|
1939
|
-
Visibility:
|
|
1940
|
-
SourceUrl:
|
|
1941
|
-
DocumentationUrl:
|
|
1942
|
-
LastUpdated:
|
|
1943
|
-
TimeCreated:
|
|
1944
|
-
ConfigurationSchema:
|
|
1945
|
-
PublisherId:
|
|
1946
|
-
OriginalTypeName:
|
|
1947
|
-
OriginalTypeArn:
|
|
1948
|
-
PublicVersionNumber:
|
|
1949
|
-
LatestPublicVersion:
|
|
1950
|
-
IsActivated:
|
|
1951
|
-
AutoUpdate:
|
|
1964
|
+
Arn: TypeArn | None
|
|
1965
|
+
Type: RegistryType | None
|
|
1966
|
+
TypeName: TypeName | None
|
|
1967
|
+
DefaultVersionId: TypeVersionId | None
|
|
1968
|
+
IsDefaultVersion: IsDefaultVersion | None
|
|
1969
|
+
TypeTestsStatus: TypeTestsStatus | None
|
|
1970
|
+
TypeTestsStatusDescription: TypeTestsStatusDescription | None
|
|
1971
|
+
Description: Description | None
|
|
1972
|
+
Schema: TypeSchema | None
|
|
1973
|
+
ProvisioningType: ProvisioningType | None
|
|
1974
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
1975
|
+
LoggingConfig: LoggingConfig | None
|
|
1976
|
+
RequiredActivatedTypes: RequiredActivatedTypes | None
|
|
1977
|
+
ExecutionRoleArn: RoleArn | None
|
|
1978
|
+
Visibility: Visibility | None
|
|
1979
|
+
SourceUrl: OptionalSecureUrl | None
|
|
1980
|
+
DocumentationUrl: OptionalSecureUrl | None
|
|
1981
|
+
LastUpdated: Timestamp | None
|
|
1982
|
+
TimeCreated: Timestamp | None
|
|
1983
|
+
ConfigurationSchema: ConfigurationSchema | None
|
|
1984
|
+
PublisherId: PublisherId | None
|
|
1985
|
+
OriginalTypeName: TypeName | None
|
|
1986
|
+
OriginalTypeArn: TypeArn | None
|
|
1987
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
1988
|
+
LatestPublicVersion: PublicVersionNumber | None
|
|
1989
|
+
IsActivated: IsActivated | None
|
|
1990
|
+
AutoUpdate: AutoUpdate | None
|
|
1952
1991
|
|
|
1953
1992
|
|
|
1954
1993
|
class DescribeTypeRegistrationInput(ServiceRequest):
|
|
@@ -1956,18 +1995,18 @@ class DescribeTypeRegistrationInput(ServiceRequest):
|
|
|
1956
1995
|
|
|
1957
1996
|
|
|
1958
1997
|
class DescribeTypeRegistrationOutput(TypedDict, total=False):
|
|
1959
|
-
ProgressStatus:
|
|
1960
|
-
Description:
|
|
1961
|
-
TypeArn:
|
|
1962
|
-
TypeVersionArn:
|
|
1998
|
+
ProgressStatus: RegistrationStatus | None
|
|
1999
|
+
Description: Description | None
|
|
2000
|
+
TypeArn: TypeArn | None
|
|
2001
|
+
TypeVersionArn: TypeArn | None
|
|
1963
2002
|
|
|
1964
2003
|
|
|
1965
|
-
LogicalResourceIds =
|
|
2004
|
+
LogicalResourceIds = list[LogicalResourceId]
|
|
1966
2005
|
|
|
1967
2006
|
|
|
1968
2007
|
class DetectStackDriftInput(ServiceRequest):
|
|
1969
2008
|
StackName: StackNameOrId
|
|
1970
|
-
LogicalResourceIds:
|
|
2009
|
+
LogicalResourceIds: LogicalResourceIds | None
|
|
1971
2010
|
|
|
1972
2011
|
|
|
1973
2012
|
class DetectStackDriftOutput(TypedDict, total=False):
|
|
@@ -1985,31 +2024,31 @@ class DetectStackResourceDriftOutput(TypedDict, total=False):
|
|
|
1985
2024
|
|
|
1986
2025
|
class DetectStackSetDriftInput(ServiceRequest):
|
|
1987
2026
|
StackSetName: StackSetNameOrId
|
|
1988
|
-
OperationPreferences:
|
|
1989
|
-
OperationId:
|
|
1990
|
-
CallAs:
|
|
2027
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2028
|
+
OperationId: ClientRequestToken | None
|
|
2029
|
+
CallAs: CallAs | None
|
|
1991
2030
|
|
|
1992
2031
|
|
|
1993
2032
|
class DetectStackSetDriftOutput(TypedDict, total=False):
|
|
1994
|
-
OperationId:
|
|
2033
|
+
OperationId: ClientRequestToken | None
|
|
1995
2034
|
|
|
1996
2035
|
|
|
1997
2036
|
class EstimateTemplateCostInput(ServiceRequest):
|
|
1998
|
-
TemplateBody:
|
|
1999
|
-
TemplateURL:
|
|
2000
|
-
Parameters:
|
|
2037
|
+
TemplateBody: TemplateBody | None
|
|
2038
|
+
TemplateURL: TemplateURL | None
|
|
2039
|
+
Parameters: Parameters | None
|
|
2001
2040
|
|
|
2002
2041
|
|
|
2003
2042
|
class EstimateTemplateCostOutput(TypedDict, total=False):
|
|
2004
|
-
Url:
|
|
2043
|
+
Url: Url | None
|
|
2005
2044
|
|
|
2006
2045
|
|
|
2007
2046
|
class ExecuteChangeSetInput(ServiceRequest):
|
|
2008
2047
|
ChangeSetName: ChangeSetNameOrId
|
|
2009
|
-
StackName:
|
|
2010
|
-
ClientRequestToken:
|
|
2011
|
-
DisableRollback:
|
|
2012
|
-
RetainExceptOnCreate:
|
|
2048
|
+
StackName: StackNameOrId | None
|
|
2049
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2050
|
+
DisableRollback: DisableRollback | None
|
|
2051
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2013
2052
|
|
|
2014
2053
|
|
|
2015
2054
|
class ExecuteChangeSetOutput(TypedDict, total=False):
|
|
@@ -2021,22 +2060,49 @@ class ExecuteStackRefactorInput(ServiceRequest):
|
|
|
2021
2060
|
|
|
2022
2061
|
|
|
2023
2062
|
class Export(TypedDict, total=False):
|
|
2024
|
-
ExportingStackId:
|
|
2025
|
-
Name:
|
|
2026
|
-
Value:
|
|
2063
|
+
ExportingStackId: StackId | None
|
|
2064
|
+
Name: ExportName | None
|
|
2065
|
+
Value: ExportValue | None
|
|
2027
2066
|
|
|
2028
2067
|
|
|
2029
|
-
Exports =
|
|
2068
|
+
Exports = list[Export]
|
|
2030
2069
|
|
|
2031
2070
|
|
|
2032
2071
|
class GetGeneratedTemplateInput(ServiceRequest):
|
|
2033
|
-
Format:
|
|
2072
|
+
Format: TemplateFormat | None
|
|
2034
2073
|
GeneratedTemplateName: GeneratedTemplateName
|
|
2035
2074
|
|
|
2036
2075
|
|
|
2037
2076
|
class GetGeneratedTemplateOutput(TypedDict, total=False):
|
|
2038
|
-
Status:
|
|
2039
|
-
TemplateBody:
|
|
2077
|
+
Status: GeneratedTemplateStatus | None
|
|
2078
|
+
TemplateBody: TemplateBody | None
|
|
2079
|
+
|
|
2080
|
+
|
|
2081
|
+
class GetHookResultInput(ServiceRequest):
|
|
2082
|
+
HookResultId: HookInvocationId | None
|
|
2083
|
+
|
|
2084
|
+
|
|
2085
|
+
class HookTarget(TypedDict, total=False):
|
|
2086
|
+
TargetType: HookTargetType
|
|
2087
|
+
TargetTypeName: HookTargetTypeName
|
|
2088
|
+
TargetId: HookTargetId
|
|
2089
|
+
Action: HookTargetAction
|
|
2090
|
+
|
|
2091
|
+
|
|
2092
|
+
class GetHookResultOutput(TypedDict, total=False):
|
|
2093
|
+
HookResultId: HookInvocationId | None
|
|
2094
|
+
InvocationPoint: HookInvocationPoint | None
|
|
2095
|
+
FailureMode: HookFailureMode | None
|
|
2096
|
+
TypeName: HookTypeName | None
|
|
2097
|
+
OriginalTypeName: HookTypeName | None
|
|
2098
|
+
TypeVersionId: HookTypeVersionId | None
|
|
2099
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
2100
|
+
TypeArn: HookTypeArn | None
|
|
2101
|
+
Status: HookStatus | None
|
|
2102
|
+
HookStatusReason: HookStatusReason | None
|
|
2103
|
+
InvokedAt: Timestamp | None
|
|
2104
|
+
Target: HookTarget | None
|
|
2105
|
+
Annotations: AnnotationList | None
|
|
2040
2106
|
|
|
2041
2107
|
|
|
2042
2108
|
class GetStackPolicyInput(ServiceRequest):
|
|
@@ -2044,188 +2110,188 @@ class GetStackPolicyInput(ServiceRequest):
|
|
|
2044
2110
|
|
|
2045
2111
|
|
|
2046
2112
|
class GetStackPolicyOutput(TypedDict, total=False):
|
|
2047
|
-
StackPolicyBody:
|
|
2113
|
+
StackPolicyBody: StackPolicyBody | None
|
|
2048
2114
|
|
|
2049
2115
|
|
|
2050
2116
|
class GetTemplateInput(ServiceRequest):
|
|
2051
|
-
StackName:
|
|
2052
|
-
ChangeSetName:
|
|
2053
|
-
TemplateStage:
|
|
2117
|
+
StackName: StackName | None
|
|
2118
|
+
ChangeSetName: ChangeSetNameOrId | None
|
|
2119
|
+
TemplateStage: TemplateStage | None
|
|
2054
2120
|
|
|
2055
2121
|
|
|
2056
|
-
StageList =
|
|
2122
|
+
StageList = list[TemplateStage]
|
|
2057
2123
|
|
|
2058
2124
|
|
|
2059
2125
|
class GetTemplateOutput(TypedDict, total=False):
|
|
2060
|
-
TemplateBody:
|
|
2061
|
-
StagesAvailable:
|
|
2126
|
+
TemplateBody: TemplateBody | None
|
|
2127
|
+
StagesAvailable: StageList | None
|
|
2062
2128
|
|
|
2063
2129
|
|
|
2064
2130
|
class TemplateSummaryConfig(TypedDict, total=False):
|
|
2065
|
-
TreatUnrecognizedResourceTypesAsWarnings:
|
|
2131
|
+
TreatUnrecognizedResourceTypesAsWarnings: TreatUnrecognizedResourceTypesAsWarnings | None
|
|
2066
2132
|
|
|
2067
2133
|
|
|
2068
2134
|
class GetTemplateSummaryInput(ServiceRequest):
|
|
2069
|
-
TemplateBody:
|
|
2070
|
-
TemplateURL:
|
|
2071
|
-
StackName:
|
|
2072
|
-
StackSetName:
|
|
2073
|
-
CallAs:
|
|
2074
|
-
TemplateSummaryConfig:
|
|
2135
|
+
TemplateBody: TemplateBody | None
|
|
2136
|
+
TemplateURL: TemplateURL | None
|
|
2137
|
+
StackName: StackNameOrId | None
|
|
2138
|
+
StackSetName: StackSetNameOrId | None
|
|
2139
|
+
CallAs: CallAs | None
|
|
2140
|
+
TemplateSummaryConfig: TemplateSummaryConfig | None
|
|
2075
2141
|
|
|
2076
2142
|
|
|
2077
2143
|
class Warnings(TypedDict, total=False):
|
|
2078
|
-
UnrecognizedResourceTypes:
|
|
2144
|
+
UnrecognizedResourceTypes: ResourceTypes | None
|
|
2079
2145
|
|
|
2080
2146
|
|
|
2081
|
-
ResourceIdentifiers =
|
|
2147
|
+
ResourceIdentifiers = list[ResourceIdentifierPropertyKey]
|
|
2082
2148
|
|
|
2083
2149
|
|
|
2084
2150
|
class ResourceIdentifierSummary(TypedDict, total=False):
|
|
2085
|
-
ResourceType:
|
|
2086
|
-
LogicalResourceIds:
|
|
2087
|
-
ResourceIdentifiers:
|
|
2151
|
+
ResourceType: ResourceType | None
|
|
2152
|
+
LogicalResourceIds: LogicalResourceIds | None
|
|
2153
|
+
ResourceIdentifiers: ResourceIdentifiers | None
|
|
2088
2154
|
|
|
2089
2155
|
|
|
2090
|
-
ResourceIdentifierSummaries =
|
|
2091
|
-
TransformsList =
|
|
2156
|
+
ResourceIdentifierSummaries = list[ResourceIdentifierSummary]
|
|
2157
|
+
TransformsList = list[TransformName]
|
|
2092
2158
|
|
|
2093
2159
|
|
|
2094
2160
|
class ParameterConstraints(TypedDict, total=False):
|
|
2095
|
-
AllowedValues:
|
|
2161
|
+
AllowedValues: AllowedValues | None
|
|
2096
2162
|
|
|
2097
2163
|
|
|
2098
2164
|
class ParameterDeclaration(TypedDict, total=False):
|
|
2099
|
-
ParameterKey:
|
|
2100
|
-
DefaultValue:
|
|
2101
|
-
ParameterType:
|
|
2102
|
-
NoEcho:
|
|
2103
|
-
Description:
|
|
2104
|
-
ParameterConstraints:
|
|
2165
|
+
ParameterKey: ParameterKey | None
|
|
2166
|
+
DefaultValue: ParameterValue | None
|
|
2167
|
+
ParameterType: ParameterType | None
|
|
2168
|
+
NoEcho: NoEcho | None
|
|
2169
|
+
Description: Description | None
|
|
2170
|
+
ParameterConstraints: ParameterConstraints | None
|
|
2105
2171
|
|
|
2106
2172
|
|
|
2107
|
-
ParameterDeclarations =
|
|
2173
|
+
ParameterDeclarations = list[ParameterDeclaration]
|
|
2108
2174
|
|
|
2109
2175
|
|
|
2110
2176
|
class GetTemplateSummaryOutput(TypedDict, total=False):
|
|
2111
|
-
Parameters:
|
|
2112
|
-
Description:
|
|
2113
|
-
Capabilities:
|
|
2114
|
-
CapabilitiesReason:
|
|
2115
|
-
ResourceTypes:
|
|
2116
|
-
Version:
|
|
2117
|
-
Metadata:
|
|
2118
|
-
DeclaredTransforms:
|
|
2119
|
-
ResourceIdentifierSummaries:
|
|
2120
|
-
Warnings:
|
|
2177
|
+
Parameters: ParameterDeclarations | None
|
|
2178
|
+
Description: Description | None
|
|
2179
|
+
Capabilities: Capabilities | None
|
|
2180
|
+
CapabilitiesReason: CapabilitiesReason | None
|
|
2181
|
+
ResourceTypes: ResourceTypes | None
|
|
2182
|
+
Version: Version | None
|
|
2183
|
+
Metadata: Metadata | None
|
|
2184
|
+
DeclaredTransforms: TransformsList | None
|
|
2185
|
+
ResourceIdentifierSummaries: ResourceIdentifierSummaries | None
|
|
2186
|
+
Warnings: Warnings | None
|
|
2121
2187
|
|
|
2122
2188
|
|
|
2123
2189
|
class HookResultSummary(TypedDict, total=False):
|
|
2124
|
-
HookResultId:
|
|
2125
|
-
InvocationPoint:
|
|
2126
|
-
FailureMode:
|
|
2127
|
-
TypeName:
|
|
2128
|
-
TypeVersionId:
|
|
2129
|
-
TypeConfigurationVersionId:
|
|
2130
|
-
Status:
|
|
2131
|
-
HookStatusReason:
|
|
2132
|
-
InvokedAt:
|
|
2133
|
-
TargetType:
|
|
2134
|
-
TargetId:
|
|
2135
|
-
TypeArn:
|
|
2136
|
-
HookExecutionTarget:
|
|
2190
|
+
HookResultId: HookInvocationId | None
|
|
2191
|
+
InvocationPoint: HookInvocationPoint | None
|
|
2192
|
+
FailureMode: HookFailureMode | None
|
|
2193
|
+
TypeName: HookTypeName | None
|
|
2194
|
+
TypeVersionId: HookTypeVersionId | None
|
|
2195
|
+
TypeConfigurationVersionId: HookTypeConfigurationVersionId | None
|
|
2196
|
+
Status: HookStatus | None
|
|
2197
|
+
HookStatusReason: HookStatusReason | None
|
|
2198
|
+
InvokedAt: Timestamp | None
|
|
2199
|
+
TargetType: ListHookResultsTargetType | None
|
|
2200
|
+
TargetId: HookResultId | None
|
|
2201
|
+
TypeArn: HookTypeArn | None
|
|
2202
|
+
HookExecutionTarget: HookResultId | None
|
|
2137
2203
|
|
|
2138
2204
|
|
|
2139
|
-
HookResultSummaries =
|
|
2140
|
-
StackIdList =
|
|
2205
|
+
HookResultSummaries = list[HookResultSummary]
|
|
2206
|
+
StackIdList = list[StackId]
|
|
2141
2207
|
|
|
2142
2208
|
|
|
2143
2209
|
class ImportStacksToStackSetInput(ServiceRequest):
|
|
2144
2210
|
StackSetName: StackSetNameOrId
|
|
2145
|
-
StackIds:
|
|
2146
|
-
StackIdsUrl:
|
|
2147
|
-
OrganizationalUnitIds:
|
|
2148
|
-
OperationPreferences:
|
|
2149
|
-
OperationId:
|
|
2150
|
-
CallAs:
|
|
2211
|
+
StackIds: StackIdList | None
|
|
2212
|
+
StackIdsUrl: StackIdsUrl | None
|
|
2213
|
+
OrganizationalUnitIds: OrganizationalUnitIdList | None
|
|
2214
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2215
|
+
OperationId: ClientRequestToken | None
|
|
2216
|
+
CallAs: CallAs | None
|
|
2151
2217
|
|
|
2152
2218
|
|
|
2153
2219
|
class ImportStacksToStackSetOutput(TypedDict, total=False):
|
|
2154
|
-
OperationId:
|
|
2220
|
+
OperationId: ClientRequestToken | None
|
|
2155
2221
|
|
|
2156
2222
|
|
|
2157
|
-
Imports =
|
|
2158
|
-
JazzLogicalResourceIds =
|
|
2159
|
-
JazzResourceIdentifierProperties =
|
|
2223
|
+
Imports = list[StackName]
|
|
2224
|
+
JazzLogicalResourceIds = list[LogicalResourceId]
|
|
2225
|
+
JazzResourceIdentifierProperties = dict[
|
|
2160
2226
|
JazzResourceIdentifierPropertyKey, JazzResourceIdentifierPropertyValue
|
|
2161
2227
|
]
|
|
2162
2228
|
|
|
2163
2229
|
|
|
2164
2230
|
class ListChangeSetsInput(ServiceRequest):
|
|
2165
2231
|
StackName: StackNameOrId
|
|
2166
|
-
NextToken:
|
|
2232
|
+
NextToken: NextToken | None
|
|
2167
2233
|
|
|
2168
2234
|
|
|
2169
2235
|
class ListChangeSetsOutput(TypedDict, total=False):
|
|
2170
|
-
Summaries:
|
|
2171
|
-
NextToken:
|
|
2236
|
+
Summaries: ChangeSetSummaries | None
|
|
2237
|
+
NextToken: NextToken | None
|
|
2172
2238
|
|
|
2173
2239
|
|
|
2174
2240
|
class ListExportsInput(ServiceRequest):
|
|
2175
|
-
NextToken:
|
|
2241
|
+
NextToken: NextToken | None
|
|
2176
2242
|
|
|
2177
2243
|
|
|
2178
2244
|
class ListExportsOutput(TypedDict, total=False):
|
|
2179
|
-
Exports:
|
|
2180
|
-
NextToken:
|
|
2245
|
+
Exports: Exports | None
|
|
2246
|
+
NextToken: NextToken | None
|
|
2181
2247
|
|
|
2182
2248
|
|
|
2183
2249
|
class ListGeneratedTemplatesInput(ServiceRequest):
|
|
2184
|
-
NextToken:
|
|
2185
|
-
MaxResults:
|
|
2250
|
+
NextToken: NextToken | None
|
|
2251
|
+
MaxResults: MaxResults | None
|
|
2186
2252
|
|
|
2187
2253
|
|
|
2188
2254
|
class TemplateSummary(TypedDict, total=False):
|
|
2189
|
-
GeneratedTemplateId:
|
|
2190
|
-
GeneratedTemplateName:
|
|
2191
|
-
Status:
|
|
2192
|
-
StatusReason:
|
|
2193
|
-
CreationTime:
|
|
2194
|
-
LastUpdatedTime:
|
|
2195
|
-
NumberOfResources:
|
|
2255
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
2256
|
+
GeneratedTemplateName: GeneratedTemplateName | None
|
|
2257
|
+
Status: GeneratedTemplateStatus | None
|
|
2258
|
+
StatusReason: TemplateStatusReason | None
|
|
2259
|
+
CreationTime: CreationTime | None
|
|
2260
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
2261
|
+
NumberOfResources: NumberOfResources | None
|
|
2196
2262
|
|
|
2197
2263
|
|
|
2198
|
-
TemplateSummaries =
|
|
2264
|
+
TemplateSummaries = list[TemplateSummary]
|
|
2199
2265
|
|
|
2200
2266
|
|
|
2201
2267
|
class ListGeneratedTemplatesOutput(TypedDict, total=False):
|
|
2202
|
-
Summaries:
|
|
2203
|
-
NextToken:
|
|
2268
|
+
Summaries: TemplateSummaries | None
|
|
2269
|
+
NextToken: NextToken | None
|
|
2204
2270
|
|
|
2205
2271
|
|
|
2206
2272
|
class ListHookResultsInput(ServiceRequest):
|
|
2207
|
-
TargetType:
|
|
2208
|
-
TargetId:
|
|
2209
|
-
TypeArn:
|
|
2210
|
-
Status:
|
|
2211
|
-
NextToken:
|
|
2273
|
+
TargetType: ListHookResultsTargetType | None
|
|
2274
|
+
TargetId: HookResultId | None
|
|
2275
|
+
TypeArn: HookTypeArn | None
|
|
2276
|
+
Status: HookStatus | None
|
|
2277
|
+
NextToken: NextToken | None
|
|
2212
2278
|
|
|
2213
2279
|
|
|
2214
2280
|
class ListHookResultsOutput(TypedDict, total=False):
|
|
2215
|
-
TargetType:
|
|
2216
|
-
TargetId:
|
|
2217
|
-
HookResults:
|
|
2218
|
-
NextToken:
|
|
2281
|
+
TargetType: ListHookResultsTargetType | None
|
|
2282
|
+
TargetId: HookResultId | None
|
|
2283
|
+
HookResults: HookResultSummaries | None
|
|
2284
|
+
NextToken: NextToken | None
|
|
2219
2285
|
|
|
2220
2286
|
|
|
2221
2287
|
class ListImportsInput(ServiceRequest):
|
|
2222
2288
|
ExportName: ExportName
|
|
2223
|
-
NextToken:
|
|
2289
|
+
NextToken: NextToken | None
|
|
2224
2290
|
|
|
2225
2291
|
|
|
2226
2292
|
class ListImportsOutput(TypedDict, total=False):
|
|
2227
|
-
Imports:
|
|
2228
|
-
NextToken:
|
|
2293
|
+
Imports: Imports | None
|
|
2294
|
+
NextToken: NextToken | None
|
|
2229
2295
|
|
|
2230
2296
|
|
|
2231
2297
|
class ScannedResourceIdentifier(TypedDict, total=False):
|
|
@@ -2233,475 +2299,475 @@ class ScannedResourceIdentifier(TypedDict, total=False):
|
|
|
2233
2299
|
ResourceIdentifier: JazzResourceIdentifierProperties
|
|
2234
2300
|
|
|
2235
2301
|
|
|
2236
|
-
ScannedResourceIdentifiers =
|
|
2302
|
+
ScannedResourceIdentifiers = list[ScannedResourceIdentifier]
|
|
2237
2303
|
|
|
2238
2304
|
|
|
2239
2305
|
class ListResourceScanRelatedResourcesInput(ServiceRequest):
|
|
2240
2306
|
ResourceScanId: ResourceScanId
|
|
2241
2307
|
Resources: ScannedResourceIdentifiers
|
|
2242
|
-
NextToken:
|
|
2243
|
-
MaxResults:
|
|
2308
|
+
NextToken: NextToken | None
|
|
2309
|
+
MaxResults: BoxedMaxResults | None
|
|
2244
2310
|
|
|
2245
2311
|
|
|
2246
2312
|
class ScannedResource(TypedDict, total=False):
|
|
2247
|
-
ResourceType:
|
|
2248
|
-
ResourceIdentifier:
|
|
2249
|
-
ManagedByStack:
|
|
2313
|
+
ResourceType: ResourceType | None
|
|
2314
|
+
ResourceIdentifier: JazzResourceIdentifierProperties | None
|
|
2315
|
+
ManagedByStack: ManagedByStack | None
|
|
2250
2316
|
|
|
2251
2317
|
|
|
2252
|
-
RelatedResources =
|
|
2318
|
+
RelatedResources = list[ScannedResource]
|
|
2253
2319
|
|
|
2254
2320
|
|
|
2255
2321
|
class ListResourceScanRelatedResourcesOutput(TypedDict, total=False):
|
|
2256
|
-
RelatedResources:
|
|
2257
|
-
NextToken:
|
|
2322
|
+
RelatedResources: RelatedResources | None
|
|
2323
|
+
NextToken: NextToken | None
|
|
2258
2324
|
|
|
2259
2325
|
|
|
2260
2326
|
class ListResourceScanResourcesInput(ServiceRequest):
|
|
2261
2327
|
ResourceScanId: ResourceScanId
|
|
2262
|
-
ResourceIdentifier:
|
|
2263
|
-
ResourceTypePrefix:
|
|
2264
|
-
TagKey:
|
|
2265
|
-
TagValue:
|
|
2266
|
-
NextToken:
|
|
2267
|
-
MaxResults:
|
|
2328
|
+
ResourceIdentifier: ResourceIdentifier | None
|
|
2329
|
+
ResourceTypePrefix: ResourceTypePrefix | None
|
|
2330
|
+
TagKey: TagKey | None
|
|
2331
|
+
TagValue: TagValue | None
|
|
2332
|
+
NextToken: NextToken | None
|
|
2333
|
+
MaxResults: ResourceScannerMaxResults | None
|
|
2268
2334
|
|
|
2269
2335
|
|
|
2270
|
-
ScannedResources =
|
|
2336
|
+
ScannedResources = list[ScannedResource]
|
|
2271
2337
|
|
|
2272
2338
|
|
|
2273
2339
|
class ListResourceScanResourcesOutput(TypedDict, total=False):
|
|
2274
|
-
Resources:
|
|
2275
|
-
NextToken:
|
|
2340
|
+
Resources: ScannedResources | None
|
|
2341
|
+
NextToken: NextToken | None
|
|
2276
2342
|
|
|
2277
2343
|
|
|
2278
2344
|
class ListResourceScansInput(ServiceRequest):
|
|
2279
|
-
NextToken:
|
|
2280
|
-
MaxResults:
|
|
2281
|
-
ScanTypeFilter:
|
|
2345
|
+
NextToken: NextToken | None
|
|
2346
|
+
MaxResults: ResourceScannerMaxResults | None
|
|
2347
|
+
ScanTypeFilter: ScanType | None
|
|
2282
2348
|
|
|
2283
2349
|
|
|
2284
2350
|
class ResourceScanSummary(TypedDict, total=False):
|
|
2285
|
-
ResourceScanId:
|
|
2286
|
-
Status:
|
|
2287
|
-
StatusReason:
|
|
2288
|
-
StartTime:
|
|
2289
|
-
EndTime:
|
|
2290
|
-
PercentageCompleted:
|
|
2291
|
-
ScanType:
|
|
2351
|
+
ResourceScanId: ResourceScanId | None
|
|
2352
|
+
Status: ResourceScanStatus | None
|
|
2353
|
+
StatusReason: ResourceScanStatusReason | None
|
|
2354
|
+
StartTime: Timestamp | None
|
|
2355
|
+
EndTime: Timestamp | None
|
|
2356
|
+
PercentageCompleted: PercentageCompleted | None
|
|
2357
|
+
ScanType: ScanType | None
|
|
2292
2358
|
|
|
2293
2359
|
|
|
2294
|
-
ResourceScanSummaries =
|
|
2360
|
+
ResourceScanSummaries = list[ResourceScanSummary]
|
|
2295
2361
|
|
|
2296
2362
|
|
|
2297
2363
|
class ListResourceScansOutput(TypedDict, total=False):
|
|
2298
|
-
ResourceScanSummaries:
|
|
2299
|
-
NextToken:
|
|
2364
|
+
ResourceScanSummaries: ResourceScanSummaries | None
|
|
2365
|
+
NextToken: NextToken | None
|
|
2300
2366
|
|
|
2301
2367
|
|
|
2302
2368
|
class ListStackInstanceResourceDriftsInput(ServiceRequest):
|
|
2303
2369
|
StackSetName: StackSetNameOrId
|
|
2304
|
-
NextToken:
|
|
2305
|
-
MaxResults:
|
|
2306
|
-
StackInstanceResourceDriftStatuses:
|
|
2370
|
+
NextToken: NextToken | None
|
|
2371
|
+
MaxResults: MaxResults | None
|
|
2372
|
+
StackInstanceResourceDriftStatuses: StackResourceDriftStatusFilters | None
|
|
2307
2373
|
StackInstanceAccount: Account
|
|
2308
2374
|
StackInstanceRegion: Region
|
|
2309
2375
|
OperationId: ClientRequestToken
|
|
2310
|
-
CallAs:
|
|
2376
|
+
CallAs: CallAs | None
|
|
2311
2377
|
|
|
2312
2378
|
|
|
2313
2379
|
class StackInstanceResourceDriftsSummary(TypedDict, total=False):
|
|
2314
2380
|
StackId: StackId
|
|
2315
2381
|
LogicalResourceId: LogicalResourceId
|
|
2316
|
-
PhysicalResourceId:
|
|
2317
|
-
PhysicalResourceIdContext:
|
|
2382
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2383
|
+
PhysicalResourceIdContext: PhysicalResourceIdContext | None
|
|
2318
2384
|
ResourceType: ResourceType
|
|
2319
|
-
PropertyDifferences:
|
|
2385
|
+
PropertyDifferences: PropertyDifferences | None
|
|
2320
2386
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
2321
2387
|
Timestamp: Timestamp
|
|
2322
2388
|
|
|
2323
2389
|
|
|
2324
|
-
StackInstanceResourceDriftsSummaries =
|
|
2390
|
+
StackInstanceResourceDriftsSummaries = list[StackInstanceResourceDriftsSummary]
|
|
2325
2391
|
|
|
2326
2392
|
|
|
2327
2393
|
class ListStackInstanceResourceDriftsOutput(TypedDict, total=False):
|
|
2328
|
-
Summaries:
|
|
2329
|
-
NextToken:
|
|
2394
|
+
Summaries: StackInstanceResourceDriftsSummaries | None
|
|
2395
|
+
NextToken: NextToken | None
|
|
2330
2396
|
|
|
2331
2397
|
|
|
2332
2398
|
class StackInstanceFilter(TypedDict, total=False):
|
|
2333
|
-
Name:
|
|
2334
|
-
Values:
|
|
2399
|
+
Name: StackInstanceFilterName | None
|
|
2400
|
+
Values: StackInstanceFilterValues | None
|
|
2335
2401
|
|
|
2336
2402
|
|
|
2337
|
-
StackInstanceFilters =
|
|
2403
|
+
StackInstanceFilters = list[StackInstanceFilter]
|
|
2338
2404
|
|
|
2339
2405
|
|
|
2340
2406
|
class ListStackInstancesInput(ServiceRequest):
|
|
2341
2407
|
StackSetName: StackSetName
|
|
2342
|
-
NextToken:
|
|
2343
|
-
MaxResults:
|
|
2344
|
-
Filters:
|
|
2345
|
-
StackInstanceAccount:
|
|
2346
|
-
StackInstanceRegion:
|
|
2347
|
-
CallAs:
|
|
2408
|
+
NextToken: NextToken | None
|
|
2409
|
+
MaxResults: MaxResults | None
|
|
2410
|
+
Filters: StackInstanceFilters | None
|
|
2411
|
+
StackInstanceAccount: Account | None
|
|
2412
|
+
StackInstanceRegion: Region | None
|
|
2413
|
+
CallAs: CallAs | None
|
|
2348
2414
|
|
|
2349
2415
|
|
|
2350
2416
|
class StackInstanceSummary(TypedDict, total=False):
|
|
2351
|
-
StackSetId:
|
|
2352
|
-
Region:
|
|
2353
|
-
Account:
|
|
2354
|
-
StackId:
|
|
2355
|
-
Status:
|
|
2356
|
-
StatusReason:
|
|
2357
|
-
StackInstanceStatus:
|
|
2358
|
-
OrganizationalUnitId:
|
|
2359
|
-
DriftStatus:
|
|
2360
|
-
LastDriftCheckTimestamp:
|
|
2361
|
-
LastOperationId:
|
|
2417
|
+
StackSetId: StackSetId | None
|
|
2418
|
+
Region: Region | None
|
|
2419
|
+
Account: Account | None
|
|
2420
|
+
StackId: StackId | None
|
|
2421
|
+
Status: StackInstanceStatus | None
|
|
2422
|
+
StatusReason: Reason | None
|
|
2423
|
+
StackInstanceStatus: StackInstanceComprehensiveStatus | None
|
|
2424
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2425
|
+
DriftStatus: StackDriftStatus | None
|
|
2426
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
2427
|
+
LastOperationId: ClientRequestToken | None
|
|
2362
2428
|
|
|
2363
2429
|
|
|
2364
|
-
StackInstanceSummaries =
|
|
2430
|
+
StackInstanceSummaries = list[StackInstanceSummary]
|
|
2365
2431
|
|
|
2366
2432
|
|
|
2367
2433
|
class ListStackInstancesOutput(TypedDict, total=False):
|
|
2368
|
-
Summaries:
|
|
2369
|
-
NextToken:
|
|
2434
|
+
Summaries: StackInstanceSummaries | None
|
|
2435
|
+
NextToken: NextToken | None
|
|
2370
2436
|
|
|
2371
2437
|
|
|
2372
2438
|
class ListStackRefactorActionsInput(ServiceRequest):
|
|
2373
2439
|
StackRefactorId: StackRefactorId
|
|
2374
|
-
NextToken:
|
|
2375
|
-
MaxResults:
|
|
2440
|
+
NextToken: NextToken | None
|
|
2441
|
+
MaxResults: MaxResults | None
|
|
2376
2442
|
|
|
2377
2443
|
|
|
2378
|
-
StackRefactorUntagResources =
|
|
2379
|
-
StackRefactorTagResources =
|
|
2444
|
+
StackRefactorUntagResources = list[TagKey]
|
|
2445
|
+
StackRefactorTagResources = list[Tag]
|
|
2380
2446
|
|
|
2381
2447
|
|
|
2382
2448
|
class StackRefactorAction(TypedDict, total=False):
|
|
2383
|
-
Action:
|
|
2384
|
-
Entity:
|
|
2385
|
-
PhysicalResourceId:
|
|
2386
|
-
ResourceIdentifier:
|
|
2387
|
-
Description:
|
|
2388
|
-
Detection:
|
|
2389
|
-
DetectionReason:
|
|
2390
|
-
TagResources:
|
|
2391
|
-
UntagResources:
|
|
2392
|
-
ResourceMapping:
|
|
2449
|
+
Action: StackRefactorActionType | None
|
|
2450
|
+
Entity: StackRefactorActionEntity | None
|
|
2451
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2452
|
+
ResourceIdentifier: StackRefactorResourceIdentifier | None
|
|
2453
|
+
Description: Description | None
|
|
2454
|
+
Detection: StackRefactorDetection | None
|
|
2455
|
+
DetectionReason: DetectionReason | None
|
|
2456
|
+
TagResources: StackRefactorTagResources | None
|
|
2457
|
+
UntagResources: StackRefactorUntagResources | None
|
|
2458
|
+
ResourceMapping: ResourceMapping | None
|
|
2393
2459
|
|
|
2394
2460
|
|
|
2395
|
-
StackRefactorActions =
|
|
2461
|
+
StackRefactorActions = list[StackRefactorAction]
|
|
2396
2462
|
|
|
2397
2463
|
|
|
2398
2464
|
class ListStackRefactorActionsOutput(TypedDict, total=False):
|
|
2399
2465
|
StackRefactorActions: StackRefactorActions
|
|
2400
|
-
NextToken:
|
|
2466
|
+
NextToken: NextToken | None
|
|
2401
2467
|
|
|
2402
2468
|
|
|
2403
|
-
StackRefactorExecutionStatusFilter =
|
|
2469
|
+
StackRefactorExecutionStatusFilter = list[StackRefactorExecutionStatus]
|
|
2404
2470
|
|
|
2405
2471
|
|
|
2406
2472
|
class ListStackRefactorsInput(ServiceRequest):
|
|
2407
|
-
ExecutionStatusFilter:
|
|
2408
|
-
NextToken:
|
|
2409
|
-
MaxResults:
|
|
2473
|
+
ExecutionStatusFilter: StackRefactorExecutionStatusFilter | None
|
|
2474
|
+
NextToken: NextToken | None
|
|
2475
|
+
MaxResults: MaxResults | None
|
|
2410
2476
|
|
|
2411
2477
|
|
|
2412
2478
|
class StackRefactorSummary(TypedDict, total=False):
|
|
2413
|
-
StackRefactorId:
|
|
2414
|
-
Description:
|
|
2415
|
-
ExecutionStatus:
|
|
2416
|
-
ExecutionStatusReason:
|
|
2417
|
-
Status:
|
|
2418
|
-
StatusReason:
|
|
2479
|
+
StackRefactorId: StackRefactorId | None
|
|
2480
|
+
Description: Description | None
|
|
2481
|
+
ExecutionStatus: StackRefactorExecutionStatus | None
|
|
2482
|
+
ExecutionStatusReason: ExecutionStatusReason | None
|
|
2483
|
+
Status: StackRefactorStatus | None
|
|
2484
|
+
StatusReason: StackRefactorStatusReason | None
|
|
2419
2485
|
|
|
2420
2486
|
|
|
2421
|
-
StackRefactorSummaries =
|
|
2487
|
+
StackRefactorSummaries = list[StackRefactorSummary]
|
|
2422
2488
|
|
|
2423
2489
|
|
|
2424
2490
|
class ListStackRefactorsOutput(TypedDict, total=False):
|
|
2425
2491
|
StackRefactorSummaries: StackRefactorSummaries
|
|
2426
|
-
NextToken:
|
|
2492
|
+
NextToken: NextToken | None
|
|
2427
2493
|
|
|
2428
2494
|
|
|
2429
2495
|
class ListStackResourcesInput(ServiceRequest):
|
|
2430
2496
|
StackName: StackName
|
|
2431
|
-
NextToken:
|
|
2497
|
+
NextToken: NextToken | None
|
|
2432
2498
|
|
|
2433
2499
|
|
|
2434
2500
|
class StackResourceDriftInformationSummary(TypedDict, total=False):
|
|
2435
2501
|
StackResourceDriftStatus: StackResourceDriftStatus
|
|
2436
|
-
LastCheckTimestamp:
|
|
2502
|
+
LastCheckTimestamp: Timestamp | None
|
|
2437
2503
|
|
|
2438
2504
|
|
|
2439
2505
|
class StackResourceSummary(TypedDict, total=False):
|
|
2440
2506
|
LogicalResourceId: LogicalResourceId
|
|
2441
|
-
PhysicalResourceId:
|
|
2507
|
+
PhysicalResourceId: PhysicalResourceId | None
|
|
2442
2508
|
ResourceType: ResourceType
|
|
2443
2509
|
LastUpdatedTimestamp: Timestamp
|
|
2444
2510
|
ResourceStatus: ResourceStatus
|
|
2445
|
-
ResourceStatusReason:
|
|
2446
|
-
DriftInformation:
|
|
2447
|
-
ModuleInfo:
|
|
2511
|
+
ResourceStatusReason: ResourceStatusReason | None
|
|
2512
|
+
DriftInformation: StackResourceDriftInformationSummary | None
|
|
2513
|
+
ModuleInfo: ModuleInfo | None
|
|
2448
2514
|
|
|
2449
2515
|
|
|
2450
|
-
StackResourceSummaries =
|
|
2516
|
+
StackResourceSummaries = list[StackResourceSummary]
|
|
2451
2517
|
|
|
2452
2518
|
|
|
2453
2519
|
class ListStackResourcesOutput(TypedDict, total=False):
|
|
2454
|
-
StackResourceSummaries:
|
|
2455
|
-
NextToken:
|
|
2520
|
+
StackResourceSummaries: StackResourceSummaries | None
|
|
2521
|
+
NextToken: NextToken | None
|
|
2456
2522
|
|
|
2457
2523
|
|
|
2458
2524
|
class ListStackSetAutoDeploymentTargetsInput(ServiceRequest):
|
|
2459
2525
|
StackSetName: StackSetNameOrId
|
|
2460
|
-
NextToken:
|
|
2461
|
-
MaxResults:
|
|
2462
|
-
CallAs:
|
|
2526
|
+
NextToken: NextToken | None
|
|
2527
|
+
MaxResults: MaxResults | None
|
|
2528
|
+
CallAs: CallAs | None
|
|
2463
2529
|
|
|
2464
2530
|
|
|
2465
2531
|
class StackSetAutoDeploymentTargetSummary(TypedDict, total=False):
|
|
2466
|
-
OrganizationalUnitId:
|
|
2467
|
-
Regions:
|
|
2532
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2533
|
+
Regions: RegionList | None
|
|
2468
2534
|
|
|
2469
2535
|
|
|
2470
|
-
StackSetAutoDeploymentTargetSummaries =
|
|
2536
|
+
StackSetAutoDeploymentTargetSummaries = list[StackSetAutoDeploymentTargetSummary]
|
|
2471
2537
|
|
|
2472
2538
|
|
|
2473
2539
|
class ListStackSetAutoDeploymentTargetsOutput(TypedDict, total=False):
|
|
2474
|
-
Summaries:
|
|
2475
|
-
NextToken:
|
|
2540
|
+
Summaries: StackSetAutoDeploymentTargetSummaries | None
|
|
2541
|
+
NextToken: NextToken | None
|
|
2476
2542
|
|
|
2477
2543
|
|
|
2478
2544
|
class OperationResultFilter(TypedDict, total=False):
|
|
2479
|
-
Name:
|
|
2480
|
-
Values:
|
|
2545
|
+
Name: OperationResultFilterName | None
|
|
2546
|
+
Values: OperationResultFilterValues | None
|
|
2481
2547
|
|
|
2482
2548
|
|
|
2483
|
-
OperationResultFilters =
|
|
2549
|
+
OperationResultFilters = list[OperationResultFilter]
|
|
2484
2550
|
|
|
2485
2551
|
|
|
2486
2552
|
class ListStackSetOperationResultsInput(ServiceRequest):
|
|
2487
2553
|
StackSetName: StackSetName
|
|
2488
2554
|
OperationId: ClientRequestToken
|
|
2489
|
-
NextToken:
|
|
2490
|
-
MaxResults:
|
|
2491
|
-
CallAs:
|
|
2492
|
-
Filters:
|
|
2555
|
+
NextToken: NextToken | None
|
|
2556
|
+
MaxResults: MaxResults | None
|
|
2557
|
+
CallAs: CallAs | None
|
|
2558
|
+
Filters: OperationResultFilters | None
|
|
2493
2559
|
|
|
2494
2560
|
|
|
2495
2561
|
class StackSetOperationResultSummary(TypedDict, total=False):
|
|
2496
|
-
Account:
|
|
2497
|
-
Region:
|
|
2498
|
-
Status:
|
|
2499
|
-
StatusReason:
|
|
2500
|
-
AccountGateResult:
|
|
2501
|
-
OrganizationalUnitId:
|
|
2562
|
+
Account: Account | None
|
|
2563
|
+
Region: Region | None
|
|
2564
|
+
Status: StackSetOperationResultStatus | None
|
|
2565
|
+
StatusReason: Reason | None
|
|
2566
|
+
AccountGateResult: AccountGateResult | None
|
|
2567
|
+
OrganizationalUnitId: OrganizationalUnitId | None
|
|
2502
2568
|
|
|
2503
2569
|
|
|
2504
|
-
StackSetOperationResultSummaries =
|
|
2570
|
+
StackSetOperationResultSummaries = list[StackSetOperationResultSummary]
|
|
2505
2571
|
|
|
2506
2572
|
|
|
2507
2573
|
class ListStackSetOperationResultsOutput(TypedDict, total=False):
|
|
2508
|
-
Summaries:
|
|
2509
|
-
NextToken:
|
|
2574
|
+
Summaries: StackSetOperationResultSummaries | None
|
|
2575
|
+
NextToken: NextToken | None
|
|
2510
2576
|
|
|
2511
2577
|
|
|
2512
2578
|
class ListStackSetOperationsInput(ServiceRequest):
|
|
2513
2579
|
StackSetName: StackSetName
|
|
2514
|
-
NextToken:
|
|
2515
|
-
MaxResults:
|
|
2516
|
-
CallAs:
|
|
2580
|
+
NextToken: NextToken | None
|
|
2581
|
+
MaxResults: MaxResults | None
|
|
2582
|
+
CallAs: CallAs | None
|
|
2517
2583
|
|
|
2518
2584
|
|
|
2519
2585
|
class StackSetOperationSummary(TypedDict, total=False):
|
|
2520
|
-
OperationId:
|
|
2521
|
-
Action:
|
|
2522
|
-
Status:
|
|
2523
|
-
CreationTimestamp:
|
|
2524
|
-
EndTimestamp:
|
|
2525
|
-
StatusReason:
|
|
2526
|
-
StatusDetails:
|
|
2527
|
-
OperationPreferences:
|
|
2586
|
+
OperationId: ClientRequestToken | None
|
|
2587
|
+
Action: StackSetOperationAction | None
|
|
2588
|
+
Status: StackSetOperationStatus | None
|
|
2589
|
+
CreationTimestamp: Timestamp | None
|
|
2590
|
+
EndTimestamp: Timestamp | None
|
|
2591
|
+
StatusReason: StackSetOperationStatusReason | None
|
|
2592
|
+
StatusDetails: StackSetOperationStatusDetails | None
|
|
2593
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2528
2594
|
|
|
2529
2595
|
|
|
2530
|
-
StackSetOperationSummaries =
|
|
2596
|
+
StackSetOperationSummaries = list[StackSetOperationSummary]
|
|
2531
2597
|
|
|
2532
2598
|
|
|
2533
2599
|
class ListStackSetOperationsOutput(TypedDict, total=False):
|
|
2534
|
-
Summaries:
|
|
2535
|
-
NextToken:
|
|
2600
|
+
Summaries: StackSetOperationSummaries | None
|
|
2601
|
+
NextToken: NextToken | None
|
|
2536
2602
|
|
|
2537
2603
|
|
|
2538
2604
|
class ListStackSetsInput(ServiceRequest):
|
|
2539
|
-
NextToken:
|
|
2540
|
-
MaxResults:
|
|
2541
|
-
Status:
|
|
2542
|
-
CallAs:
|
|
2605
|
+
NextToken: NextToken | None
|
|
2606
|
+
MaxResults: MaxResults | None
|
|
2607
|
+
Status: StackSetStatus | None
|
|
2608
|
+
CallAs: CallAs | None
|
|
2543
2609
|
|
|
2544
2610
|
|
|
2545
2611
|
class StackSetSummary(TypedDict, total=False):
|
|
2546
|
-
StackSetName:
|
|
2547
|
-
StackSetId:
|
|
2548
|
-
Description:
|
|
2549
|
-
Status:
|
|
2550
|
-
AutoDeployment:
|
|
2551
|
-
PermissionModel:
|
|
2552
|
-
DriftStatus:
|
|
2553
|
-
LastDriftCheckTimestamp:
|
|
2554
|
-
ManagedExecution:
|
|
2612
|
+
StackSetName: StackSetName | None
|
|
2613
|
+
StackSetId: StackSetId | None
|
|
2614
|
+
Description: Description | None
|
|
2615
|
+
Status: StackSetStatus | None
|
|
2616
|
+
AutoDeployment: AutoDeployment | None
|
|
2617
|
+
PermissionModel: PermissionModels | None
|
|
2618
|
+
DriftStatus: StackDriftStatus | None
|
|
2619
|
+
LastDriftCheckTimestamp: Timestamp | None
|
|
2620
|
+
ManagedExecution: ManagedExecution | None
|
|
2555
2621
|
|
|
2556
2622
|
|
|
2557
|
-
StackSetSummaries =
|
|
2623
|
+
StackSetSummaries = list[StackSetSummary]
|
|
2558
2624
|
|
|
2559
2625
|
|
|
2560
2626
|
class ListStackSetsOutput(TypedDict, total=False):
|
|
2561
|
-
Summaries:
|
|
2562
|
-
NextToken:
|
|
2627
|
+
Summaries: StackSetSummaries | None
|
|
2628
|
+
NextToken: NextToken | None
|
|
2563
2629
|
|
|
2564
2630
|
|
|
2565
|
-
StackStatusFilter =
|
|
2631
|
+
StackStatusFilter = list[StackStatus]
|
|
2566
2632
|
|
|
2567
2633
|
|
|
2568
2634
|
class ListStacksInput(ServiceRequest):
|
|
2569
|
-
NextToken:
|
|
2570
|
-
StackStatusFilter:
|
|
2635
|
+
NextToken: NextToken | None
|
|
2636
|
+
StackStatusFilter: StackStatusFilter | None
|
|
2571
2637
|
|
|
2572
2638
|
|
|
2573
2639
|
class StackDriftInformationSummary(TypedDict, total=False):
|
|
2574
2640
|
StackDriftStatus: StackDriftStatus
|
|
2575
|
-
LastCheckTimestamp:
|
|
2641
|
+
LastCheckTimestamp: Timestamp | None
|
|
2576
2642
|
|
|
2577
2643
|
|
|
2578
2644
|
class StackSummary(TypedDict, total=False):
|
|
2579
|
-
StackId:
|
|
2645
|
+
StackId: StackId | None
|
|
2580
2646
|
StackName: StackName
|
|
2581
|
-
TemplateDescription:
|
|
2647
|
+
TemplateDescription: TemplateDescription | None
|
|
2582
2648
|
CreationTime: CreationTime
|
|
2583
|
-
LastUpdatedTime:
|
|
2584
|
-
DeletionTime:
|
|
2649
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
2650
|
+
DeletionTime: DeletionTime | None
|
|
2585
2651
|
StackStatus: StackStatus
|
|
2586
|
-
StackStatusReason:
|
|
2587
|
-
ParentId:
|
|
2588
|
-
RootId:
|
|
2589
|
-
DriftInformation:
|
|
2652
|
+
StackStatusReason: StackStatusReason | None
|
|
2653
|
+
ParentId: StackId | None
|
|
2654
|
+
RootId: StackId | None
|
|
2655
|
+
DriftInformation: StackDriftInformationSummary | None
|
|
2590
2656
|
|
|
2591
2657
|
|
|
2592
|
-
StackSummaries =
|
|
2658
|
+
StackSummaries = list[StackSummary]
|
|
2593
2659
|
|
|
2594
2660
|
|
|
2595
2661
|
class ListStacksOutput(TypedDict, total=False):
|
|
2596
|
-
StackSummaries:
|
|
2597
|
-
NextToken:
|
|
2662
|
+
StackSummaries: StackSummaries | None
|
|
2663
|
+
NextToken: NextToken | None
|
|
2598
2664
|
|
|
2599
2665
|
|
|
2600
2666
|
class ListTypeRegistrationsInput(ServiceRequest):
|
|
2601
|
-
Type:
|
|
2602
|
-
TypeName:
|
|
2603
|
-
TypeArn:
|
|
2604
|
-
RegistrationStatusFilter:
|
|
2605
|
-
MaxResults:
|
|
2606
|
-
NextToken:
|
|
2667
|
+
Type: RegistryType | None
|
|
2668
|
+
TypeName: TypeName | None
|
|
2669
|
+
TypeArn: TypeArn | None
|
|
2670
|
+
RegistrationStatusFilter: RegistrationStatus | None
|
|
2671
|
+
MaxResults: MaxResults | None
|
|
2672
|
+
NextToken: NextToken | None
|
|
2607
2673
|
|
|
2608
2674
|
|
|
2609
|
-
RegistrationTokenList =
|
|
2675
|
+
RegistrationTokenList = list[RegistrationToken]
|
|
2610
2676
|
|
|
2611
2677
|
|
|
2612
2678
|
class ListTypeRegistrationsOutput(TypedDict, total=False):
|
|
2613
|
-
RegistrationTokenList:
|
|
2614
|
-
NextToken:
|
|
2679
|
+
RegistrationTokenList: RegistrationTokenList | None
|
|
2680
|
+
NextToken: NextToken | None
|
|
2615
2681
|
|
|
2616
2682
|
|
|
2617
2683
|
class ListTypeVersionsInput(ServiceRequest):
|
|
2618
|
-
Type:
|
|
2619
|
-
TypeName:
|
|
2620
|
-
Arn:
|
|
2621
|
-
MaxResults:
|
|
2622
|
-
NextToken:
|
|
2623
|
-
DeprecatedStatus:
|
|
2624
|
-
PublisherId:
|
|
2684
|
+
Type: RegistryType | None
|
|
2685
|
+
TypeName: TypeName | None
|
|
2686
|
+
Arn: TypeArn | None
|
|
2687
|
+
MaxResults: MaxResults | None
|
|
2688
|
+
NextToken: NextToken | None
|
|
2689
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
2690
|
+
PublisherId: PublisherId | None
|
|
2625
2691
|
|
|
2626
2692
|
|
|
2627
2693
|
class TypeVersionSummary(TypedDict, total=False):
|
|
2628
|
-
Type:
|
|
2629
|
-
TypeName:
|
|
2630
|
-
VersionId:
|
|
2631
|
-
IsDefaultVersion:
|
|
2632
|
-
Arn:
|
|
2633
|
-
TimeCreated:
|
|
2634
|
-
Description:
|
|
2635
|
-
PublicVersionNumber:
|
|
2694
|
+
Type: RegistryType | None
|
|
2695
|
+
TypeName: TypeName | None
|
|
2696
|
+
VersionId: TypeVersionId | None
|
|
2697
|
+
IsDefaultVersion: IsDefaultVersion | None
|
|
2698
|
+
Arn: TypeArn | None
|
|
2699
|
+
TimeCreated: Timestamp | None
|
|
2700
|
+
Description: Description | None
|
|
2701
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2636
2702
|
|
|
2637
2703
|
|
|
2638
|
-
TypeVersionSummaries =
|
|
2704
|
+
TypeVersionSummaries = list[TypeVersionSummary]
|
|
2639
2705
|
|
|
2640
2706
|
|
|
2641
2707
|
class ListTypeVersionsOutput(TypedDict, total=False):
|
|
2642
|
-
TypeVersionSummaries:
|
|
2643
|
-
NextToken:
|
|
2708
|
+
TypeVersionSummaries: TypeVersionSummaries | None
|
|
2709
|
+
NextToken: NextToken | None
|
|
2644
2710
|
|
|
2645
2711
|
|
|
2646
2712
|
class TypeFilters(TypedDict, total=False):
|
|
2647
|
-
Category:
|
|
2648
|
-
PublisherId:
|
|
2649
|
-
TypeNamePrefix:
|
|
2713
|
+
Category: Category | None
|
|
2714
|
+
PublisherId: PublisherId | None
|
|
2715
|
+
TypeNamePrefix: TypeNamePrefix | None
|
|
2650
2716
|
|
|
2651
2717
|
|
|
2652
2718
|
class ListTypesInput(ServiceRequest):
|
|
2653
|
-
Visibility:
|
|
2654
|
-
ProvisioningType:
|
|
2655
|
-
DeprecatedStatus:
|
|
2656
|
-
Type:
|
|
2657
|
-
Filters:
|
|
2658
|
-
MaxResults:
|
|
2659
|
-
NextToken:
|
|
2719
|
+
Visibility: Visibility | None
|
|
2720
|
+
ProvisioningType: ProvisioningType | None
|
|
2721
|
+
DeprecatedStatus: DeprecatedStatus | None
|
|
2722
|
+
Type: RegistryType | None
|
|
2723
|
+
Filters: TypeFilters | None
|
|
2724
|
+
MaxResults: MaxResults | None
|
|
2725
|
+
NextToken: NextToken | None
|
|
2660
2726
|
|
|
2661
2727
|
|
|
2662
2728
|
class TypeSummary(TypedDict, total=False):
|
|
2663
|
-
Type:
|
|
2664
|
-
TypeName:
|
|
2665
|
-
DefaultVersionId:
|
|
2666
|
-
TypeArn:
|
|
2667
|
-
LastUpdated:
|
|
2668
|
-
Description:
|
|
2669
|
-
PublisherId:
|
|
2670
|
-
OriginalTypeName:
|
|
2671
|
-
PublicVersionNumber:
|
|
2672
|
-
LatestPublicVersion:
|
|
2673
|
-
PublisherIdentity:
|
|
2674
|
-
PublisherName:
|
|
2675
|
-
IsActivated:
|
|
2729
|
+
Type: RegistryType | None
|
|
2730
|
+
TypeName: TypeName | None
|
|
2731
|
+
DefaultVersionId: TypeVersionId | None
|
|
2732
|
+
TypeArn: TypeArn | None
|
|
2733
|
+
LastUpdated: Timestamp | None
|
|
2734
|
+
Description: Description | None
|
|
2735
|
+
PublisherId: PublisherId | None
|
|
2736
|
+
OriginalTypeName: TypeName | None
|
|
2737
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2738
|
+
LatestPublicVersion: PublicVersionNumber | None
|
|
2739
|
+
PublisherIdentity: IdentityProvider | None
|
|
2740
|
+
PublisherName: PublisherName | None
|
|
2741
|
+
IsActivated: IsActivated | None
|
|
2676
2742
|
|
|
2677
2743
|
|
|
2678
|
-
TypeSummaries =
|
|
2744
|
+
TypeSummaries = list[TypeSummary]
|
|
2679
2745
|
|
|
2680
2746
|
|
|
2681
2747
|
class ListTypesOutput(TypedDict, total=False):
|
|
2682
|
-
TypeSummaries:
|
|
2683
|
-
NextToken:
|
|
2748
|
+
TypeSummaries: TypeSummaries | None
|
|
2749
|
+
NextToken: NextToken | None
|
|
2684
2750
|
|
|
2685
2751
|
|
|
2686
2752
|
class PublishTypeInput(ServiceRequest):
|
|
2687
|
-
Type:
|
|
2688
|
-
Arn:
|
|
2689
|
-
TypeName:
|
|
2690
|
-
PublicVersionNumber:
|
|
2753
|
+
Type: ThirdPartyType | None
|
|
2754
|
+
Arn: PrivateTypeArn | None
|
|
2755
|
+
TypeName: TypeName | None
|
|
2756
|
+
PublicVersionNumber: PublicVersionNumber | None
|
|
2691
2757
|
|
|
2692
2758
|
|
|
2693
2759
|
class PublishTypeOutput(TypedDict, total=False):
|
|
2694
|
-
PublicTypeArn:
|
|
2760
|
+
PublicTypeArn: TypeArn | None
|
|
2695
2761
|
|
|
2696
2762
|
|
|
2697
2763
|
class RecordHandlerProgressInput(ServiceRequest):
|
|
2698
2764
|
BearerToken: ClientToken
|
|
2699
2765
|
OperationStatus: OperationStatus
|
|
2700
|
-
CurrentOperationStatus:
|
|
2701
|
-
StatusMessage:
|
|
2702
|
-
ErrorCode:
|
|
2703
|
-
ResourceModel:
|
|
2704
|
-
ClientRequestToken:
|
|
2766
|
+
CurrentOperationStatus: OperationStatus | None
|
|
2767
|
+
StatusMessage: StatusMessage | None
|
|
2768
|
+
ErrorCode: HandlerErrorCode | None
|
|
2769
|
+
ResourceModel: ResourceModel | None
|
|
2770
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2705
2771
|
|
|
2706
2772
|
|
|
2707
2773
|
class RecordHandlerProgressOutput(TypedDict, total=False):
|
|
@@ -2709,61 +2775,61 @@ class RecordHandlerProgressOutput(TypedDict, total=False):
|
|
|
2709
2775
|
|
|
2710
2776
|
|
|
2711
2777
|
class RegisterPublisherInput(ServiceRequest):
|
|
2712
|
-
AcceptTermsAndConditions:
|
|
2713
|
-
ConnectionArn:
|
|
2778
|
+
AcceptTermsAndConditions: AcceptTermsAndConditions | None
|
|
2779
|
+
ConnectionArn: ConnectionArn | None
|
|
2714
2780
|
|
|
2715
2781
|
|
|
2716
2782
|
class RegisterPublisherOutput(TypedDict, total=False):
|
|
2717
|
-
PublisherId:
|
|
2783
|
+
PublisherId: PublisherId | None
|
|
2718
2784
|
|
|
2719
2785
|
|
|
2720
2786
|
class RegisterTypeInput(ServiceRequest):
|
|
2721
|
-
Type:
|
|
2787
|
+
Type: RegistryType | None
|
|
2722
2788
|
TypeName: TypeName
|
|
2723
2789
|
SchemaHandlerPackage: S3Url
|
|
2724
|
-
LoggingConfig:
|
|
2725
|
-
ExecutionRoleArn:
|
|
2726
|
-
ClientRequestToken:
|
|
2790
|
+
LoggingConfig: LoggingConfig | None
|
|
2791
|
+
ExecutionRoleArn: RoleArn | None
|
|
2792
|
+
ClientRequestToken: RequestToken | None
|
|
2727
2793
|
|
|
2728
2794
|
|
|
2729
2795
|
class RegisterTypeOutput(TypedDict, total=False):
|
|
2730
|
-
RegistrationToken:
|
|
2796
|
+
RegistrationToken: RegistrationToken | None
|
|
2731
2797
|
|
|
2732
2798
|
|
|
2733
2799
|
class RollbackStackInput(ServiceRequest):
|
|
2734
2800
|
StackName: StackNameOrId
|
|
2735
|
-
RoleARN:
|
|
2736
|
-
ClientRequestToken:
|
|
2737
|
-
RetainExceptOnCreate:
|
|
2801
|
+
RoleARN: RoleARN | None
|
|
2802
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2803
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2738
2804
|
|
|
2739
2805
|
|
|
2740
2806
|
class RollbackStackOutput(TypedDict, total=False):
|
|
2741
|
-
StackId:
|
|
2807
|
+
StackId: StackId | None
|
|
2742
2808
|
|
|
2743
2809
|
|
|
2744
2810
|
class SetStackPolicyInput(ServiceRequest):
|
|
2745
2811
|
StackName: StackName
|
|
2746
|
-
StackPolicyBody:
|
|
2747
|
-
StackPolicyURL:
|
|
2812
|
+
StackPolicyBody: StackPolicyBody | None
|
|
2813
|
+
StackPolicyURL: StackPolicyURL | None
|
|
2748
2814
|
|
|
2749
2815
|
|
|
2750
2816
|
class SetTypeConfigurationInput(ServiceRequest):
|
|
2751
|
-
TypeArn:
|
|
2817
|
+
TypeArn: TypeArn | None
|
|
2752
2818
|
Configuration: TypeConfiguration
|
|
2753
|
-
ConfigurationAlias:
|
|
2754
|
-
TypeName:
|
|
2755
|
-
Type:
|
|
2819
|
+
ConfigurationAlias: TypeConfigurationAlias | None
|
|
2820
|
+
TypeName: TypeName | None
|
|
2821
|
+
Type: ThirdPartyType | None
|
|
2756
2822
|
|
|
2757
2823
|
|
|
2758
2824
|
class SetTypeConfigurationOutput(TypedDict, total=False):
|
|
2759
|
-
ConfigurationArn:
|
|
2825
|
+
ConfigurationArn: TypeConfigurationArn | None
|
|
2760
2826
|
|
|
2761
2827
|
|
|
2762
2828
|
class SetTypeDefaultVersionInput(ServiceRequest):
|
|
2763
|
-
Arn:
|
|
2764
|
-
Type:
|
|
2765
|
-
TypeName:
|
|
2766
|
-
VersionId:
|
|
2829
|
+
Arn: PrivateTypeArn | None
|
|
2830
|
+
Type: RegistryType | None
|
|
2831
|
+
TypeName: TypeName | None
|
|
2832
|
+
VersionId: TypeVersionId | None
|
|
2767
2833
|
|
|
2768
2834
|
|
|
2769
2835
|
class SetTypeDefaultVersionOutput(TypedDict, total=False):
|
|
@@ -2778,18 +2844,18 @@ class SignalResourceInput(ServiceRequest):
|
|
|
2778
2844
|
|
|
2779
2845
|
|
|
2780
2846
|
class StartResourceScanInput(ServiceRequest):
|
|
2781
|
-
ClientRequestToken:
|
|
2782
|
-
ScanFilters:
|
|
2847
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2848
|
+
ScanFilters: ScanFilters | None
|
|
2783
2849
|
|
|
2784
2850
|
|
|
2785
2851
|
class StartResourceScanOutput(TypedDict, total=False):
|
|
2786
|
-
ResourceScanId:
|
|
2852
|
+
ResourceScanId: ResourceScanId | None
|
|
2787
2853
|
|
|
2788
2854
|
|
|
2789
2855
|
class StopStackSetOperationInput(ServiceRequest):
|
|
2790
2856
|
StackSetName: StackSetName
|
|
2791
2857
|
OperationId: ClientRequestToken
|
|
2792
|
-
CallAs:
|
|
2858
|
+
CallAs: CallAs | None
|
|
2793
2859
|
|
|
2794
2860
|
|
|
2795
2861
|
class StopStackSetOperationOutput(TypedDict, total=False):
|
|
@@ -2797,104 +2863,104 @@ class StopStackSetOperationOutput(TypedDict, total=False):
|
|
|
2797
2863
|
|
|
2798
2864
|
|
|
2799
2865
|
class TemplateParameter(TypedDict, total=False):
|
|
2800
|
-
ParameterKey:
|
|
2801
|
-
DefaultValue:
|
|
2802
|
-
NoEcho:
|
|
2803
|
-
Description:
|
|
2866
|
+
ParameterKey: ParameterKey | None
|
|
2867
|
+
DefaultValue: ParameterValue | None
|
|
2868
|
+
NoEcho: NoEcho | None
|
|
2869
|
+
Description: Description | None
|
|
2804
2870
|
|
|
2805
2871
|
|
|
2806
|
-
TemplateParameters =
|
|
2872
|
+
TemplateParameters = list[TemplateParameter]
|
|
2807
2873
|
|
|
2808
2874
|
|
|
2809
2875
|
class TestTypeInput(ServiceRequest):
|
|
2810
|
-
Arn:
|
|
2811
|
-
Type:
|
|
2812
|
-
TypeName:
|
|
2813
|
-
VersionId:
|
|
2814
|
-
LogDeliveryBucket:
|
|
2876
|
+
Arn: TypeArn | None
|
|
2877
|
+
Type: ThirdPartyType | None
|
|
2878
|
+
TypeName: TypeName | None
|
|
2879
|
+
VersionId: TypeVersionId | None
|
|
2880
|
+
LogDeliveryBucket: S3Bucket | None
|
|
2815
2881
|
|
|
2816
2882
|
|
|
2817
2883
|
class TestTypeOutput(TypedDict, total=False):
|
|
2818
|
-
TypeVersionArn:
|
|
2884
|
+
TypeVersionArn: TypeArn | None
|
|
2819
2885
|
|
|
2820
2886
|
|
|
2821
2887
|
class UpdateGeneratedTemplateInput(ServiceRequest):
|
|
2822
2888
|
GeneratedTemplateName: GeneratedTemplateName
|
|
2823
|
-
NewGeneratedTemplateName:
|
|
2824
|
-
AddResources:
|
|
2825
|
-
RemoveResources:
|
|
2826
|
-
RefreshAllResources:
|
|
2827
|
-
TemplateConfiguration:
|
|
2889
|
+
NewGeneratedTemplateName: GeneratedTemplateName | None
|
|
2890
|
+
AddResources: ResourceDefinitions | None
|
|
2891
|
+
RemoveResources: JazzLogicalResourceIds | None
|
|
2892
|
+
RefreshAllResources: RefreshAllResources | None
|
|
2893
|
+
TemplateConfiguration: TemplateConfiguration | None
|
|
2828
2894
|
|
|
2829
2895
|
|
|
2830
2896
|
class UpdateGeneratedTemplateOutput(TypedDict, total=False):
|
|
2831
|
-
GeneratedTemplateId:
|
|
2897
|
+
GeneratedTemplateId: GeneratedTemplateId | None
|
|
2832
2898
|
|
|
2833
2899
|
|
|
2834
2900
|
class UpdateStackInput(ServiceRequest):
|
|
2835
2901
|
StackName: StackName
|
|
2836
|
-
TemplateBody:
|
|
2837
|
-
TemplateURL:
|
|
2838
|
-
UsePreviousTemplate:
|
|
2839
|
-
StackPolicyDuringUpdateBody:
|
|
2840
|
-
StackPolicyDuringUpdateURL:
|
|
2841
|
-
Parameters:
|
|
2842
|
-
Capabilities:
|
|
2843
|
-
ResourceTypes:
|
|
2844
|
-
RoleARN:
|
|
2845
|
-
RollbackConfiguration:
|
|
2846
|
-
StackPolicyBody:
|
|
2847
|
-
StackPolicyURL:
|
|
2848
|
-
NotificationARNs:
|
|
2849
|
-
Tags:
|
|
2850
|
-
DisableRollback:
|
|
2851
|
-
ClientRequestToken:
|
|
2852
|
-
RetainExceptOnCreate:
|
|
2902
|
+
TemplateBody: TemplateBody | None
|
|
2903
|
+
TemplateURL: TemplateURL | None
|
|
2904
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
2905
|
+
StackPolicyDuringUpdateBody: StackPolicyDuringUpdateBody | None
|
|
2906
|
+
StackPolicyDuringUpdateURL: StackPolicyDuringUpdateURL | None
|
|
2907
|
+
Parameters: Parameters | None
|
|
2908
|
+
Capabilities: Capabilities | None
|
|
2909
|
+
ResourceTypes: ResourceTypes | None
|
|
2910
|
+
RoleARN: RoleARN | None
|
|
2911
|
+
RollbackConfiguration: RollbackConfiguration | None
|
|
2912
|
+
StackPolicyBody: StackPolicyBody | None
|
|
2913
|
+
StackPolicyURL: StackPolicyURL | None
|
|
2914
|
+
NotificationARNs: NotificationARNs | None
|
|
2915
|
+
Tags: Tags | None
|
|
2916
|
+
DisableRollback: DisableRollback | None
|
|
2917
|
+
ClientRequestToken: ClientRequestToken | None
|
|
2918
|
+
RetainExceptOnCreate: RetainExceptOnCreate | None
|
|
2853
2919
|
|
|
2854
2920
|
|
|
2855
2921
|
class UpdateStackInstancesInput(ServiceRequest):
|
|
2856
2922
|
StackSetName: StackSetNameOrId
|
|
2857
|
-
Accounts:
|
|
2858
|
-
DeploymentTargets:
|
|
2923
|
+
Accounts: AccountList | None
|
|
2924
|
+
DeploymentTargets: DeploymentTargets | None
|
|
2859
2925
|
Regions: RegionList
|
|
2860
|
-
ParameterOverrides:
|
|
2861
|
-
OperationPreferences:
|
|
2862
|
-
OperationId:
|
|
2863
|
-
CallAs:
|
|
2926
|
+
ParameterOverrides: Parameters | None
|
|
2927
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2928
|
+
OperationId: ClientRequestToken | None
|
|
2929
|
+
CallAs: CallAs | None
|
|
2864
2930
|
|
|
2865
2931
|
|
|
2866
2932
|
class UpdateStackInstancesOutput(TypedDict, total=False):
|
|
2867
|
-
OperationId:
|
|
2933
|
+
OperationId: ClientRequestToken | None
|
|
2868
2934
|
|
|
2869
2935
|
|
|
2870
2936
|
class UpdateStackOutput(TypedDict, total=False):
|
|
2871
|
-
StackId:
|
|
2937
|
+
StackId: StackId | None
|
|
2872
2938
|
|
|
2873
2939
|
|
|
2874
2940
|
class UpdateStackSetInput(ServiceRequest):
|
|
2875
2941
|
StackSetName: StackSetName
|
|
2876
|
-
Description:
|
|
2877
|
-
TemplateBody:
|
|
2878
|
-
TemplateURL:
|
|
2879
|
-
UsePreviousTemplate:
|
|
2880
|
-
Parameters:
|
|
2881
|
-
Capabilities:
|
|
2882
|
-
Tags:
|
|
2883
|
-
OperationPreferences:
|
|
2884
|
-
AdministrationRoleARN:
|
|
2885
|
-
ExecutionRoleName:
|
|
2886
|
-
DeploymentTargets:
|
|
2887
|
-
PermissionModel:
|
|
2888
|
-
AutoDeployment:
|
|
2889
|
-
OperationId:
|
|
2890
|
-
Accounts:
|
|
2891
|
-
Regions:
|
|
2892
|
-
CallAs:
|
|
2893
|
-
ManagedExecution:
|
|
2942
|
+
Description: Description | None
|
|
2943
|
+
TemplateBody: TemplateBody | None
|
|
2944
|
+
TemplateURL: TemplateURL | None
|
|
2945
|
+
UsePreviousTemplate: UsePreviousTemplate | None
|
|
2946
|
+
Parameters: Parameters | None
|
|
2947
|
+
Capabilities: Capabilities | None
|
|
2948
|
+
Tags: Tags | None
|
|
2949
|
+
OperationPreferences: StackSetOperationPreferences | None
|
|
2950
|
+
AdministrationRoleARN: RoleARN | None
|
|
2951
|
+
ExecutionRoleName: ExecutionRoleName | None
|
|
2952
|
+
DeploymentTargets: DeploymentTargets | None
|
|
2953
|
+
PermissionModel: PermissionModels | None
|
|
2954
|
+
AutoDeployment: AutoDeployment | None
|
|
2955
|
+
OperationId: ClientRequestToken | None
|
|
2956
|
+
Accounts: AccountList | None
|
|
2957
|
+
Regions: RegionList | None
|
|
2958
|
+
CallAs: CallAs | None
|
|
2959
|
+
ManagedExecution: ManagedExecution | None
|
|
2894
2960
|
|
|
2895
2961
|
|
|
2896
2962
|
class UpdateStackSetOutput(TypedDict, total=False):
|
|
2897
|
-
OperationId:
|
|
2963
|
+
OperationId: ClientRequestToken | None
|
|
2898
2964
|
|
|
2899
2965
|
|
|
2900
2966
|
class UpdateTerminationProtectionInput(ServiceRequest):
|
|
@@ -2903,25 +2969,25 @@ class UpdateTerminationProtectionInput(ServiceRequest):
|
|
|
2903
2969
|
|
|
2904
2970
|
|
|
2905
2971
|
class UpdateTerminationProtectionOutput(TypedDict, total=False):
|
|
2906
|
-
StackId:
|
|
2972
|
+
StackId: StackId | None
|
|
2907
2973
|
|
|
2908
2974
|
|
|
2909
2975
|
class ValidateTemplateInput(ServiceRequest):
|
|
2910
|
-
TemplateBody:
|
|
2911
|
-
TemplateURL:
|
|
2976
|
+
TemplateBody: TemplateBody | None
|
|
2977
|
+
TemplateURL: TemplateURL | None
|
|
2912
2978
|
|
|
2913
2979
|
|
|
2914
2980
|
class ValidateTemplateOutput(TypedDict, total=False):
|
|
2915
|
-
Parameters:
|
|
2916
|
-
Description:
|
|
2917
|
-
Capabilities:
|
|
2918
|
-
CapabilitiesReason:
|
|
2919
|
-
DeclaredTransforms:
|
|
2981
|
+
Parameters: TemplateParameters | None
|
|
2982
|
+
Description: Description | None
|
|
2983
|
+
Capabilities: Capabilities | None
|
|
2984
|
+
CapabilitiesReason: CapabilitiesReason | None
|
|
2985
|
+
DeclaredTransforms: TransformsList | None
|
|
2920
2986
|
|
|
2921
2987
|
|
|
2922
2988
|
class CloudformationApi:
|
|
2923
|
-
service = "cloudformation"
|
|
2924
|
-
version = "2010-05-15"
|
|
2989
|
+
service: str = "cloudformation"
|
|
2990
|
+
version: str = "2010-05-15"
|
|
2925
2991
|
|
|
2926
2992
|
@handler("ActivateOrganizationsAccess")
|
|
2927
2993
|
def activate_organizations_access(
|
|
@@ -3219,7 +3285,7 @@ class CloudformationApi:
|
|
|
3219
3285
|
def describe_stack_events(
|
|
3220
3286
|
self,
|
|
3221
3287
|
context: RequestContext,
|
|
3222
|
-
stack_name: StackName
|
|
3288
|
+
stack_name: StackName,
|
|
3223
3289
|
next_token: NextToken | None = None,
|
|
3224
3290
|
**kwargs,
|
|
3225
3291
|
) -> DescribeStackEventsOutput:
|
|
@@ -3391,6 +3457,12 @@ class CloudformationApi:
|
|
|
3391
3457
|
) -> GetGeneratedTemplateOutput:
|
|
3392
3458
|
raise NotImplementedError
|
|
3393
3459
|
|
|
3460
|
+
@handler("GetHookResult")
|
|
3461
|
+
def get_hook_result(
|
|
3462
|
+
self, context: RequestContext, hook_result_id: HookInvocationId | None = None, **kwargs
|
|
3463
|
+
) -> GetHookResultOutput:
|
|
3464
|
+
raise NotImplementedError
|
|
3465
|
+
|
|
3394
3466
|
@handler("GetStackPolicy")
|
|
3395
3467
|
def get_stack_policy(
|
|
3396
3468
|
self, context: RequestContext, stack_name: StackName, **kwargs
|