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