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
|
|
|
@@ -1131,120 +1131,120 @@ class ValidationException(ServiceException):
|
|
|
1131
1131
|
status_code: int = 400
|
|
1132
1132
|
|
|
1133
1133
|
|
|
1134
|
-
AggregatorRegionList =
|
|
1135
|
-
AccountAggregationSourceAccountList =
|
|
1134
|
+
AggregatorRegionList = list[String]
|
|
1135
|
+
AccountAggregationSourceAccountList = list[AccountId]
|
|
1136
1136
|
|
|
1137
1137
|
|
|
1138
1138
|
class AccountAggregationSource(TypedDict, total=False):
|
|
1139
1139
|
AccountIds: AccountAggregationSourceAccountList
|
|
1140
|
-
AllAwsRegions:
|
|
1141
|
-
AwsRegions:
|
|
1140
|
+
AllAwsRegions: Boolean | None
|
|
1141
|
+
AwsRegions: AggregatorRegionList | None
|
|
1142
1142
|
|
|
1143
1143
|
|
|
1144
|
-
AccountAggregationSourceList =
|
|
1144
|
+
AccountAggregationSourceList = list[AccountAggregationSource]
|
|
1145
1145
|
|
|
1146
1146
|
|
|
1147
1147
|
class ComplianceContributorCount(TypedDict, total=False):
|
|
1148
|
-
CappedCount:
|
|
1149
|
-
CapExceeded:
|
|
1148
|
+
CappedCount: Integer | None
|
|
1149
|
+
CapExceeded: Boolean | None
|
|
1150
1150
|
|
|
1151
1151
|
|
|
1152
1152
|
class Compliance(TypedDict, total=False):
|
|
1153
|
-
ComplianceType:
|
|
1154
|
-
ComplianceContributorCount:
|
|
1153
|
+
ComplianceType: ComplianceType | None
|
|
1154
|
+
ComplianceContributorCount: ComplianceContributorCount | None
|
|
1155
1155
|
|
|
1156
1156
|
|
|
1157
1157
|
class AggregateComplianceByConfigRule(TypedDict, total=False):
|
|
1158
|
-
ConfigRuleName:
|
|
1159
|
-
Compliance:
|
|
1160
|
-
AccountId:
|
|
1161
|
-
AwsRegion:
|
|
1158
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1159
|
+
Compliance: Compliance | None
|
|
1160
|
+
AccountId: AccountId | None
|
|
1161
|
+
AwsRegion: AwsRegion | None
|
|
1162
1162
|
|
|
1163
1163
|
|
|
1164
|
-
AggregateComplianceByConfigRuleList =
|
|
1164
|
+
AggregateComplianceByConfigRuleList = list[AggregateComplianceByConfigRule]
|
|
1165
1165
|
|
|
1166
1166
|
|
|
1167
1167
|
class AggregateConformancePackCompliance(TypedDict, total=False):
|
|
1168
|
-
ComplianceType:
|
|
1169
|
-
CompliantRuleCount:
|
|
1170
|
-
NonCompliantRuleCount:
|
|
1171
|
-
TotalRuleCount:
|
|
1168
|
+
ComplianceType: ConformancePackComplianceType | None
|
|
1169
|
+
CompliantRuleCount: Integer | None
|
|
1170
|
+
NonCompliantRuleCount: Integer | None
|
|
1171
|
+
TotalRuleCount: Integer | None
|
|
1172
1172
|
|
|
1173
1173
|
|
|
1174
1174
|
class AggregateComplianceByConformancePack(TypedDict, total=False):
|
|
1175
|
-
ConformancePackName:
|
|
1176
|
-
Compliance:
|
|
1177
|
-
AccountId:
|
|
1178
|
-
AwsRegion:
|
|
1175
|
+
ConformancePackName: ConformancePackName | None
|
|
1176
|
+
Compliance: AggregateConformancePackCompliance | None
|
|
1177
|
+
AccountId: AccountId | None
|
|
1178
|
+
AwsRegion: AwsRegion | None
|
|
1179
1179
|
|
|
1180
1180
|
|
|
1181
|
-
AggregateComplianceByConformancePackList =
|
|
1181
|
+
AggregateComplianceByConformancePackList = list[AggregateComplianceByConformancePack]
|
|
1182
1182
|
Date = datetime
|
|
1183
1183
|
|
|
1184
1184
|
|
|
1185
1185
|
class ComplianceSummary(TypedDict, total=False):
|
|
1186
|
-
CompliantResourceCount:
|
|
1187
|
-
NonCompliantResourceCount:
|
|
1188
|
-
ComplianceSummaryTimestamp:
|
|
1186
|
+
CompliantResourceCount: ComplianceContributorCount | None
|
|
1187
|
+
NonCompliantResourceCount: ComplianceContributorCount | None
|
|
1188
|
+
ComplianceSummaryTimestamp: Date | None
|
|
1189
1189
|
|
|
1190
1190
|
|
|
1191
1191
|
class AggregateComplianceCount(TypedDict, total=False):
|
|
1192
|
-
GroupName:
|
|
1193
|
-
ComplianceSummary:
|
|
1192
|
+
GroupName: StringWithCharLimit256 | None
|
|
1193
|
+
ComplianceSummary: ComplianceSummary | None
|
|
1194
1194
|
|
|
1195
1195
|
|
|
1196
|
-
AggregateComplianceCountList =
|
|
1196
|
+
AggregateComplianceCountList = list[AggregateComplianceCount]
|
|
1197
1197
|
|
|
1198
1198
|
|
|
1199
1199
|
class AggregateConformancePackComplianceCount(TypedDict, total=False):
|
|
1200
|
-
CompliantConformancePackCount:
|
|
1201
|
-
NonCompliantConformancePackCount:
|
|
1200
|
+
CompliantConformancePackCount: Integer | None
|
|
1201
|
+
NonCompliantConformancePackCount: Integer | None
|
|
1202
1202
|
|
|
1203
1203
|
|
|
1204
1204
|
class AggregateConformancePackComplianceFilters(TypedDict, total=False):
|
|
1205
|
-
ConformancePackName:
|
|
1206
|
-
ComplianceType:
|
|
1207
|
-
AccountId:
|
|
1208
|
-
AwsRegion:
|
|
1205
|
+
ConformancePackName: ConformancePackName | None
|
|
1206
|
+
ComplianceType: ConformancePackComplianceType | None
|
|
1207
|
+
AccountId: AccountId | None
|
|
1208
|
+
AwsRegion: AwsRegion | None
|
|
1209
1209
|
|
|
1210
1210
|
|
|
1211
1211
|
class AggregateConformancePackComplianceSummary(TypedDict, total=False):
|
|
1212
|
-
ComplianceSummary:
|
|
1213
|
-
GroupName:
|
|
1212
|
+
ComplianceSummary: AggregateConformancePackComplianceCount | None
|
|
1213
|
+
GroupName: StringWithCharLimit256 | None
|
|
1214
1214
|
|
|
1215
1215
|
|
|
1216
1216
|
class AggregateConformancePackComplianceSummaryFilters(TypedDict, total=False):
|
|
1217
|
-
AccountId:
|
|
1218
|
-
AwsRegion:
|
|
1217
|
+
AccountId: AccountId | None
|
|
1218
|
+
AwsRegion: AwsRegion | None
|
|
1219
1219
|
|
|
1220
1220
|
|
|
1221
|
-
AggregateConformancePackComplianceSummaryList =
|
|
1221
|
+
AggregateConformancePackComplianceSummaryList = list[AggregateConformancePackComplianceSummary]
|
|
1222
1222
|
|
|
1223
1223
|
|
|
1224
1224
|
class EvaluationResultQualifier(TypedDict, total=False):
|
|
1225
|
-
ConfigRuleName:
|
|
1226
|
-
ResourceType:
|
|
1227
|
-
ResourceId:
|
|
1228
|
-
EvaluationMode:
|
|
1225
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1226
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1227
|
+
ResourceId: BaseResourceId | None
|
|
1228
|
+
EvaluationMode: EvaluationMode | None
|
|
1229
1229
|
|
|
1230
1230
|
|
|
1231
1231
|
class EvaluationResultIdentifier(TypedDict, total=False):
|
|
1232
|
-
EvaluationResultQualifier:
|
|
1233
|
-
OrderingTimestamp:
|
|
1234
|
-
ResourceEvaluationId:
|
|
1232
|
+
EvaluationResultQualifier: EvaluationResultQualifier | None
|
|
1233
|
+
OrderingTimestamp: Date | None
|
|
1234
|
+
ResourceEvaluationId: ResourceEvaluationId | None
|
|
1235
1235
|
|
|
1236
1236
|
|
|
1237
1237
|
class AggregateEvaluationResult(TypedDict, total=False):
|
|
1238
|
-
EvaluationResultIdentifier:
|
|
1239
|
-
ComplianceType:
|
|
1240
|
-
ResultRecordedTime:
|
|
1241
|
-
ConfigRuleInvokedTime:
|
|
1242
|
-
Annotation:
|
|
1243
|
-
AccountId:
|
|
1244
|
-
AwsRegion:
|
|
1238
|
+
EvaluationResultIdentifier: EvaluationResultIdentifier | None
|
|
1239
|
+
ComplianceType: ComplianceType | None
|
|
1240
|
+
ResultRecordedTime: Date | None
|
|
1241
|
+
ConfigRuleInvokedTime: Date | None
|
|
1242
|
+
Annotation: StringWithCharLimit256 | None
|
|
1243
|
+
AccountId: AccountId | None
|
|
1244
|
+
AwsRegion: AwsRegion | None
|
|
1245
1245
|
|
|
1246
1246
|
|
|
1247
|
-
AggregateEvaluationResultList =
|
|
1247
|
+
AggregateEvaluationResultList = list[AggregateEvaluationResult]
|
|
1248
1248
|
|
|
1249
1249
|
|
|
1250
1250
|
class AggregateResourceIdentifier(TypedDict, total=False):
|
|
@@ -1252,53 +1252,53 @@ class AggregateResourceIdentifier(TypedDict, total=False):
|
|
|
1252
1252
|
SourceRegion: AwsRegion
|
|
1253
1253
|
ResourceId: ResourceId
|
|
1254
1254
|
ResourceType: ResourceType
|
|
1255
|
-
ResourceName:
|
|
1255
|
+
ResourceName: ResourceName | None
|
|
1256
1256
|
|
|
1257
1257
|
|
|
1258
1258
|
class AggregatedSourceStatus(TypedDict, total=False):
|
|
1259
|
-
SourceId:
|
|
1260
|
-
SourceType:
|
|
1261
|
-
AwsRegion:
|
|
1262
|
-
LastUpdateStatus:
|
|
1263
|
-
LastUpdateTime:
|
|
1264
|
-
LastErrorCode:
|
|
1265
|
-
LastErrorMessage:
|
|
1259
|
+
SourceId: String | None
|
|
1260
|
+
SourceType: AggregatedSourceType | None
|
|
1261
|
+
AwsRegion: AwsRegion | None
|
|
1262
|
+
LastUpdateStatus: AggregatedSourceStatusType | None
|
|
1263
|
+
LastUpdateTime: Date | None
|
|
1264
|
+
LastErrorCode: String | None
|
|
1265
|
+
LastErrorMessage: String | None
|
|
1266
1266
|
|
|
1267
1267
|
|
|
1268
|
-
AggregatedSourceStatusList =
|
|
1269
|
-
AggregatedSourceStatusTypeList =
|
|
1268
|
+
AggregatedSourceStatusList = list[AggregatedSourceStatus]
|
|
1269
|
+
AggregatedSourceStatusTypeList = list[AggregatedSourceStatusType]
|
|
1270
1270
|
|
|
1271
1271
|
|
|
1272
1272
|
class AggregationAuthorization(TypedDict, total=False):
|
|
1273
|
-
AggregationAuthorizationArn:
|
|
1274
|
-
AuthorizedAccountId:
|
|
1275
|
-
AuthorizedAwsRegion:
|
|
1276
|
-
CreationTime:
|
|
1273
|
+
AggregationAuthorizationArn: String | None
|
|
1274
|
+
AuthorizedAccountId: AccountId | None
|
|
1275
|
+
AuthorizedAwsRegion: AwsRegion | None
|
|
1276
|
+
CreationTime: Date | None
|
|
1277
1277
|
|
|
1278
1278
|
|
|
1279
|
-
AggregationAuthorizationList =
|
|
1280
|
-
ResourceTypeValueList =
|
|
1279
|
+
AggregationAuthorizationList = list[AggregationAuthorization]
|
|
1280
|
+
ResourceTypeValueList = list[ResourceTypeValue]
|
|
1281
1281
|
|
|
1282
1282
|
|
|
1283
1283
|
class AggregatorFilterResourceType(TypedDict, total=False):
|
|
1284
|
-
Type:
|
|
1285
|
-
Value:
|
|
1284
|
+
Type: AggregatorFilterType | None
|
|
1285
|
+
Value: ResourceTypeValueList | None
|
|
1286
1286
|
|
|
1287
1287
|
|
|
1288
|
-
ServicePrincipalValueList =
|
|
1288
|
+
ServicePrincipalValueList = list[ServicePrincipalValue]
|
|
1289
1289
|
|
|
1290
1290
|
|
|
1291
1291
|
class AggregatorFilterServicePrincipal(TypedDict, total=False):
|
|
1292
|
-
Type:
|
|
1293
|
-
Value:
|
|
1292
|
+
Type: AggregatorFilterType | None
|
|
1293
|
+
Value: ServicePrincipalValueList | None
|
|
1294
1294
|
|
|
1295
1295
|
|
|
1296
1296
|
class AggregatorFilters(TypedDict, total=False):
|
|
1297
|
-
ResourceType:
|
|
1298
|
-
ServicePrincipal:
|
|
1297
|
+
ResourceType: AggregatorFilterResourceType | None
|
|
1298
|
+
ServicePrincipal: AggregatorFilterServicePrincipal | None
|
|
1299
1299
|
|
|
1300
1300
|
|
|
1301
|
-
ResourceTypeList =
|
|
1301
|
+
ResourceTypeList = list[ResourceType]
|
|
1302
1302
|
|
|
1303
1303
|
|
|
1304
1304
|
class AssociateResourceTypesRequest(ServiceRequest):
|
|
@@ -1306,47 +1306,47 @@ class AssociateResourceTypesRequest(ServiceRequest):
|
|
|
1306
1306
|
ResourceTypes: ResourceTypeList
|
|
1307
1307
|
|
|
1308
1308
|
|
|
1309
|
-
RecordingModeResourceTypesList =
|
|
1309
|
+
RecordingModeResourceTypesList = list[ResourceType]
|
|
1310
1310
|
|
|
1311
1311
|
|
|
1312
1312
|
class RecordingModeOverride(TypedDict, total=False):
|
|
1313
|
-
description:
|
|
1313
|
+
description: Description | None
|
|
1314
1314
|
resourceTypes: RecordingModeResourceTypesList
|
|
1315
1315
|
recordingFrequency: RecordingFrequency
|
|
1316
1316
|
|
|
1317
1317
|
|
|
1318
|
-
RecordingModeOverrides =
|
|
1318
|
+
RecordingModeOverrides = list[RecordingModeOverride]
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
1321
|
class RecordingMode(TypedDict, total=False):
|
|
1322
1322
|
recordingFrequency: RecordingFrequency
|
|
1323
|
-
recordingModeOverrides:
|
|
1323
|
+
recordingModeOverrides: RecordingModeOverrides | None
|
|
1324
1324
|
|
|
1325
1325
|
|
|
1326
1326
|
class RecordingStrategy(TypedDict, total=False):
|
|
1327
|
-
useOnly:
|
|
1327
|
+
useOnly: RecordingStrategyType | None
|
|
1328
1328
|
|
|
1329
1329
|
|
|
1330
1330
|
class ExclusionByResourceTypes(TypedDict, total=False):
|
|
1331
|
-
resourceTypes:
|
|
1331
|
+
resourceTypes: ResourceTypeList | None
|
|
1332
1332
|
|
|
1333
1333
|
|
|
1334
1334
|
class RecordingGroup(TypedDict, total=False):
|
|
1335
|
-
allSupported:
|
|
1336
|
-
includeGlobalResourceTypes:
|
|
1337
|
-
resourceTypes:
|
|
1338
|
-
exclusionByResourceTypes:
|
|
1339
|
-
recordingStrategy:
|
|
1335
|
+
allSupported: AllSupported | None
|
|
1336
|
+
includeGlobalResourceTypes: IncludeGlobalResourceTypes | None
|
|
1337
|
+
resourceTypes: ResourceTypeList | None
|
|
1338
|
+
exclusionByResourceTypes: ExclusionByResourceTypes | None
|
|
1339
|
+
recordingStrategy: RecordingStrategy | None
|
|
1340
1340
|
|
|
1341
1341
|
|
|
1342
1342
|
class ConfigurationRecorder(TypedDict, total=False):
|
|
1343
|
-
arn:
|
|
1344
|
-
name:
|
|
1345
|
-
roleARN:
|
|
1346
|
-
recordingGroup:
|
|
1347
|
-
recordingMode:
|
|
1348
|
-
recordingScope:
|
|
1349
|
-
servicePrincipal:
|
|
1343
|
+
arn: AmazonResourceName | None
|
|
1344
|
+
name: RecorderName | None
|
|
1345
|
+
roleARN: String | None
|
|
1346
|
+
recordingGroup: RecordingGroup | None
|
|
1347
|
+
recordingMode: RecordingMode | None
|
|
1348
|
+
recordingScope: RecordingScope | None
|
|
1349
|
+
servicePrincipal: ServicePrincipal | None
|
|
1350
1350
|
|
|
1351
1351
|
|
|
1352
1352
|
class AssociateResourceTypesResponse(TypedDict, total=False):
|
|
@@ -1355,32 +1355,32 @@ class AssociateResourceTypesResponse(TypedDict, total=False):
|
|
|
1355
1355
|
|
|
1356
1356
|
AutoRemediationAttemptSeconds = int
|
|
1357
1357
|
ConfigurationItemDeliveryTime = datetime
|
|
1358
|
-
SupplementaryConfiguration =
|
|
1358
|
+
SupplementaryConfiguration = dict[SupplementaryConfigurationName, SupplementaryConfigurationValue]
|
|
1359
1359
|
ResourceCreationTime = datetime
|
|
1360
1360
|
ConfigurationItemCaptureTime = datetime
|
|
1361
1361
|
|
|
1362
1362
|
|
|
1363
1363
|
class BaseConfigurationItem(TypedDict, total=False):
|
|
1364
|
-
version:
|
|
1365
|
-
accountId:
|
|
1366
|
-
configurationItemCaptureTime:
|
|
1367
|
-
configurationItemStatus:
|
|
1368
|
-
configurationStateId:
|
|
1369
|
-
arn:
|
|
1370
|
-
resourceType:
|
|
1371
|
-
resourceId:
|
|
1372
|
-
resourceName:
|
|
1373
|
-
awsRegion:
|
|
1374
|
-
availabilityZone:
|
|
1375
|
-
resourceCreationTime:
|
|
1376
|
-
configuration:
|
|
1377
|
-
supplementaryConfiguration:
|
|
1378
|
-
recordingFrequency:
|
|
1379
|
-
configurationItemDeliveryTime:
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
BaseConfigurationItems =
|
|
1383
|
-
ResourceIdentifiersList =
|
|
1364
|
+
version: Version | None
|
|
1365
|
+
accountId: AccountId | None
|
|
1366
|
+
configurationItemCaptureTime: ConfigurationItemCaptureTime | None
|
|
1367
|
+
configurationItemStatus: ConfigurationItemStatus | None
|
|
1368
|
+
configurationStateId: ConfigurationStateId | None
|
|
1369
|
+
arn: ARN | None
|
|
1370
|
+
resourceType: ResourceType | None
|
|
1371
|
+
resourceId: ResourceId | None
|
|
1372
|
+
resourceName: ResourceName | None
|
|
1373
|
+
awsRegion: AwsRegion | None
|
|
1374
|
+
availabilityZone: AvailabilityZone | None
|
|
1375
|
+
resourceCreationTime: ResourceCreationTime | None
|
|
1376
|
+
configuration: Configuration | None
|
|
1377
|
+
supplementaryConfiguration: SupplementaryConfiguration | None
|
|
1378
|
+
recordingFrequency: RecordingFrequency | None
|
|
1379
|
+
configurationItemDeliveryTime: ConfigurationItemDeliveryTime | None
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
BaseConfigurationItems = list[BaseConfigurationItem]
|
|
1383
|
+
ResourceIdentifiersList = list[AggregateResourceIdentifier]
|
|
1384
1384
|
|
|
1385
1385
|
|
|
1386
1386
|
class BatchGetAggregateResourceConfigRequest(ServiceRequest):
|
|
@@ -1388,12 +1388,12 @@ class BatchGetAggregateResourceConfigRequest(ServiceRequest):
|
|
|
1388
1388
|
ResourceIdentifiers: ResourceIdentifiersList
|
|
1389
1389
|
|
|
1390
1390
|
|
|
1391
|
-
UnprocessedResourceIdentifierList =
|
|
1391
|
+
UnprocessedResourceIdentifierList = list[AggregateResourceIdentifier]
|
|
1392
1392
|
|
|
1393
1393
|
|
|
1394
1394
|
class BatchGetAggregateResourceConfigResponse(TypedDict, total=False):
|
|
1395
|
-
BaseConfigurationItems:
|
|
1396
|
-
UnprocessedResourceIdentifiers:
|
|
1395
|
+
BaseConfigurationItems: BaseConfigurationItems | None
|
|
1396
|
+
UnprocessedResourceIdentifiers: UnprocessedResourceIdentifierList | None
|
|
1397
1397
|
|
|
1398
1398
|
|
|
1399
1399
|
class ResourceKey(TypedDict, total=False):
|
|
@@ -1401,7 +1401,7 @@ class ResourceKey(TypedDict, total=False):
|
|
|
1401
1401
|
resourceId: ResourceId
|
|
1402
1402
|
|
|
1403
1403
|
|
|
1404
|
-
ResourceKeys =
|
|
1404
|
+
ResourceKeys = list[ResourceKey]
|
|
1405
1405
|
|
|
1406
1406
|
|
|
1407
1407
|
class BatchGetResourceConfigRequest(ServiceRequest):
|
|
@@ -1409,256 +1409,256 @@ class BatchGetResourceConfigRequest(ServiceRequest):
|
|
|
1409
1409
|
|
|
1410
1410
|
|
|
1411
1411
|
class BatchGetResourceConfigResponse(TypedDict, total=False):
|
|
1412
|
-
baseConfigurationItems:
|
|
1413
|
-
unprocessedResourceKeys:
|
|
1412
|
+
baseConfigurationItems: BaseConfigurationItems | None
|
|
1413
|
+
unprocessedResourceKeys: ResourceKeys | None
|
|
1414
1414
|
|
|
1415
1415
|
|
|
1416
1416
|
class ComplianceByConfigRule(TypedDict, total=False):
|
|
1417
|
-
ConfigRuleName:
|
|
1418
|
-
Compliance:
|
|
1417
|
+
ConfigRuleName: StringWithCharLimit64 | None
|
|
1418
|
+
Compliance: Compliance | None
|
|
1419
1419
|
|
|
1420
1420
|
|
|
1421
|
-
ComplianceByConfigRules =
|
|
1421
|
+
ComplianceByConfigRules = list[ComplianceByConfigRule]
|
|
1422
1422
|
|
|
1423
1423
|
|
|
1424
1424
|
class ComplianceByResource(TypedDict, total=False):
|
|
1425
|
-
ResourceType:
|
|
1426
|
-
ResourceId:
|
|
1427
|
-
Compliance:
|
|
1425
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1426
|
+
ResourceId: BaseResourceId | None
|
|
1427
|
+
Compliance: Compliance | None
|
|
1428
1428
|
|
|
1429
1429
|
|
|
1430
|
-
ComplianceByResources =
|
|
1431
|
-
ComplianceResourceTypes =
|
|
1430
|
+
ComplianceByResources = list[ComplianceByResource]
|
|
1431
|
+
ComplianceResourceTypes = list[StringWithCharLimit256]
|
|
1432
1432
|
|
|
1433
1433
|
|
|
1434
1434
|
class ComplianceSummaryByResourceType(TypedDict, total=False):
|
|
1435
|
-
ResourceType:
|
|
1436
|
-
ComplianceSummary:
|
|
1435
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1436
|
+
ComplianceSummary: ComplianceSummary | None
|
|
1437
1437
|
|
|
1438
1438
|
|
|
1439
|
-
ComplianceSummariesByResourceType =
|
|
1440
|
-
ComplianceTypes =
|
|
1439
|
+
ComplianceSummariesByResourceType = list[ComplianceSummaryByResourceType]
|
|
1440
|
+
ComplianceTypes = list[ComplianceType]
|
|
1441
1441
|
|
|
1442
1442
|
|
|
1443
1443
|
class ConfigExportDeliveryInfo(TypedDict, total=False):
|
|
1444
|
-
lastStatus:
|
|
1445
|
-
lastErrorCode:
|
|
1446
|
-
lastErrorMessage:
|
|
1447
|
-
lastAttemptTime:
|
|
1448
|
-
lastSuccessfulTime:
|
|
1449
|
-
nextDeliveryTime:
|
|
1444
|
+
lastStatus: DeliveryStatus | None
|
|
1445
|
+
lastErrorCode: String | None
|
|
1446
|
+
lastErrorMessage: String | None
|
|
1447
|
+
lastAttemptTime: Date | None
|
|
1448
|
+
lastSuccessfulTime: Date | None
|
|
1449
|
+
nextDeliveryTime: Date | None
|
|
1450
1450
|
|
|
1451
1451
|
|
|
1452
1452
|
class EvaluationModeConfiguration(TypedDict, total=False):
|
|
1453
|
-
Mode:
|
|
1453
|
+
Mode: EvaluationMode | None
|
|
1454
1454
|
|
|
1455
1455
|
|
|
1456
|
-
EvaluationModes =
|
|
1456
|
+
EvaluationModes = list[EvaluationModeConfiguration]
|
|
1457
1457
|
|
|
1458
1458
|
|
|
1459
1459
|
class CustomPolicyDetails(TypedDict, total=False):
|
|
1460
1460
|
PolicyRuntime: PolicyRuntime
|
|
1461
1461
|
PolicyText: PolicyText
|
|
1462
|
-
EnableDebugLogDelivery:
|
|
1462
|
+
EnableDebugLogDelivery: Boolean | None
|
|
1463
1463
|
|
|
1464
1464
|
|
|
1465
1465
|
class SourceDetail(TypedDict, total=False):
|
|
1466
|
-
EventSource:
|
|
1467
|
-
MessageType:
|
|
1468
|
-
MaximumExecutionFrequency:
|
|
1466
|
+
EventSource: EventSource | None
|
|
1467
|
+
MessageType: MessageType | None
|
|
1468
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
1469
1469
|
|
|
1470
1470
|
|
|
1471
|
-
SourceDetails =
|
|
1471
|
+
SourceDetails = list[SourceDetail]
|
|
1472
1472
|
|
|
1473
1473
|
|
|
1474
1474
|
class Source(TypedDict, total=False):
|
|
1475
1475
|
Owner: Owner
|
|
1476
|
-
SourceIdentifier:
|
|
1477
|
-
SourceDetails:
|
|
1478
|
-
CustomPolicyDetails:
|
|
1476
|
+
SourceIdentifier: StringWithCharLimit256 | None
|
|
1477
|
+
SourceDetails: SourceDetails | None
|
|
1478
|
+
CustomPolicyDetails: CustomPolicyDetails | None
|
|
1479
1479
|
|
|
1480
1480
|
|
|
1481
1481
|
class Scope(TypedDict, total=False):
|
|
1482
|
-
ComplianceResourceTypes:
|
|
1483
|
-
TagKey:
|
|
1484
|
-
TagValue:
|
|
1485
|
-
ComplianceResourceId:
|
|
1482
|
+
ComplianceResourceTypes: ComplianceResourceTypes | None
|
|
1483
|
+
TagKey: StringWithCharLimit128 | None
|
|
1484
|
+
TagValue: StringWithCharLimit256 | None
|
|
1485
|
+
ComplianceResourceId: BaseResourceId | None
|
|
1486
1486
|
|
|
1487
1487
|
|
|
1488
1488
|
class ConfigRule(TypedDict, total=False):
|
|
1489
|
-
ConfigRuleName:
|
|
1490
|
-
ConfigRuleArn:
|
|
1491
|
-
ConfigRuleId:
|
|
1492
|
-
Description:
|
|
1493
|
-
Scope:
|
|
1489
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1490
|
+
ConfigRuleArn: StringWithCharLimit256 | None
|
|
1491
|
+
ConfigRuleId: StringWithCharLimit64 | None
|
|
1492
|
+
Description: EmptiableStringWithCharLimit256 | None
|
|
1493
|
+
Scope: Scope | None
|
|
1494
1494
|
Source: Source
|
|
1495
|
-
InputParameters:
|
|
1496
|
-
MaximumExecutionFrequency:
|
|
1497
|
-
ConfigRuleState:
|
|
1498
|
-
CreatedBy:
|
|
1499
|
-
EvaluationModes:
|
|
1495
|
+
InputParameters: StringWithCharLimit1024 | None
|
|
1496
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
1497
|
+
ConfigRuleState: ConfigRuleState | None
|
|
1498
|
+
CreatedBy: StringWithCharLimit256 | None
|
|
1499
|
+
EvaluationModes: EvaluationModes | None
|
|
1500
1500
|
|
|
1501
1501
|
|
|
1502
1502
|
class ConfigRuleComplianceFilters(TypedDict, total=False):
|
|
1503
|
-
ConfigRuleName:
|
|
1504
|
-
ComplianceType:
|
|
1505
|
-
AccountId:
|
|
1506
|
-
AwsRegion:
|
|
1503
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1504
|
+
ComplianceType: ComplianceType | None
|
|
1505
|
+
AccountId: AccountId | None
|
|
1506
|
+
AwsRegion: AwsRegion | None
|
|
1507
1507
|
|
|
1508
1508
|
|
|
1509
1509
|
class ConfigRuleComplianceSummaryFilters(TypedDict, total=False):
|
|
1510
|
-
AccountId:
|
|
1511
|
-
AwsRegion:
|
|
1510
|
+
AccountId: AccountId | None
|
|
1511
|
+
AwsRegion: AwsRegion | None
|
|
1512
1512
|
|
|
1513
1513
|
|
|
1514
1514
|
class ConfigRuleEvaluationStatus(TypedDict, total=False):
|
|
1515
|
-
ConfigRuleName:
|
|
1516
|
-
ConfigRuleArn:
|
|
1517
|
-
ConfigRuleId:
|
|
1518
|
-
LastSuccessfulInvocationTime:
|
|
1519
|
-
LastFailedInvocationTime:
|
|
1520
|
-
LastSuccessfulEvaluationTime:
|
|
1521
|
-
LastFailedEvaluationTime:
|
|
1522
|
-
FirstActivatedTime:
|
|
1523
|
-
LastDeactivatedTime:
|
|
1524
|
-
LastErrorCode:
|
|
1525
|
-
LastErrorMessage:
|
|
1526
|
-
FirstEvaluationStarted:
|
|
1527
|
-
LastDebugLogDeliveryStatus:
|
|
1528
|
-
LastDebugLogDeliveryStatusReason:
|
|
1529
|
-
LastDebugLogDeliveryTime:
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
ConfigRuleEvaluationStatusList =
|
|
1533
|
-
ConfigRuleNames =
|
|
1534
|
-
ConfigRules =
|
|
1515
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1516
|
+
ConfigRuleArn: String | None
|
|
1517
|
+
ConfigRuleId: String | None
|
|
1518
|
+
LastSuccessfulInvocationTime: Date | None
|
|
1519
|
+
LastFailedInvocationTime: Date | None
|
|
1520
|
+
LastSuccessfulEvaluationTime: Date | None
|
|
1521
|
+
LastFailedEvaluationTime: Date | None
|
|
1522
|
+
FirstActivatedTime: Date | None
|
|
1523
|
+
LastDeactivatedTime: Date | None
|
|
1524
|
+
LastErrorCode: String | None
|
|
1525
|
+
LastErrorMessage: String | None
|
|
1526
|
+
FirstEvaluationStarted: Boolean | None
|
|
1527
|
+
LastDebugLogDeliveryStatus: String | None
|
|
1528
|
+
LastDebugLogDeliveryStatusReason: String | None
|
|
1529
|
+
LastDebugLogDeliveryTime: Date | None
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
ConfigRuleEvaluationStatusList = list[ConfigRuleEvaluationStatus]
|
|
1533
|
+
ConfigRuleNames = list[ConfigRuleName]
|
|
1534
|
+
ConfigRules = list[ConfigRule]
|
|
1535
1535
|
|
|
1536
1536
|
|
|
1537
1537
|
class ConfigSnapshotDeliveryProperties(TypedDict, total=False):
|
|
1538
|
-
deliveryFrequency:
|
|
1538
|
+
deliveryFrequency: MaximumExecutionFrequency | None
|
|
1539
1539
|
|
|
1540
1540
|
|
|
1541
1541
|
class ConfigStreamDeliveryInfo(TypedDict, total=False):
|
|
1542
|
-
lastStatus:
|
|
1543
|
-
lastErrorCode:
|
|
1544
|
-
lastErrorMessage:
|
|
1545
|
-
lastStatusChangeTime:
|
|
1542
|
+
lastStatus: DeliveryStatus | None
|
|
1543
|
+
lastErrorCode: String | None
|
|
1544
|
+
lastErrorMessage: String | None
|
|
1545
|
+
lastStatusChangeTime: Date | None
|
|
1546
1546
|
|
|
1547
1547
|
|
|
1548
1548
|
class OrganizationAggregationSource(TypedDict, total=False):
|
|
1549
1549
|
RoleArn: String
|
|
1550
|
-
AwsRegions:
|
|
1551
|
-
AllAwsRegions:
|
|
1550
|
+
AwsRegions: AggregatorRegionList | None
|
|
1551
|
+
AllAwsRegions: Boolean | None
|
|
1552
1552
|
|
|
1553
1553
|
|
|
1554
1554
|
class ConfigurationAggregator(TypedDict, total=False):
|
|
1555
|
-
ConfigurationAggregatorName:
|
|
1556
|
-
ConfigurationAggregatorArn:
|
|
1557
|
-
AccountAggregationSources:
|
|
1558
|
-
OrganizationAggregationSource:
|
|
1559
|
-
CreationTime:
|
|
1560
|
-
LastUpdatedTime:
|
|
1561
|
-
CreatedBy:
|
|
1562
|
-
AggregatorFilters:
|
|
1555
|
+
ConfigurationAggregatorName: ConfigurationAggregatorName | None
|
|
1556
|
+
ConfigurationAggregatorArn: ConfigurationAggregatorArn | None
|
|
1557
|
+
AccountAggregationSources: AccountAggregationSourceList | None
|
|
1558
|
+
OrganizationAggregationSource: OrganizationAggregationSource | None
|
|
1559
|
+
CreationTime: Date | None
|
|
1560
|
+
LastUpdatedTime: Date | None
|
|
1561
|
+
CreatedBy: StringWithCharLimit256 | None
|
|
1562
|
+
AggregatorFilters: AggregatorFilters | None
|
|
1563
1563
|
|
|
1564
1564
|
|
|
1565
|
-
ConfigurationAggregatorList =
|
|
1566
|
-
ConfigurationAggregatorNameList =
|
|
1565
|
+
ConfigurationAggregatorList = list[ConfigurationAggregator]
|
|
1566
|
+
ConfigurationAggregatorNameList = list[ConfigurationAggregatorName]
|
|
1567
1567
|
|
|
1568
1568
|
|
|
1569
1569
|
class Relationship(TypedDict, total=False):
|
|
1570
|
-
resourceType:
|
|
1571
|
-
resourceId:
|
|
1572
|
-
resourceName:
|
|
1573
|
-
relationshipName:
|
|
1570
|
+
resourceType: ResourceType | None
|
|
1571
|
+
resourceId: ResourceId | None
|
|
1572
|
+
resourceName: ResourceName | None
|
|
1573
|
+
relationshipName: RelationshipName | None
|
|
1574
1574
|
|
|
1575
1575
|
|
|
1576
|
-
RelationshipList =
|
|
1577
|
-
RelatedEventList =
|
|
1578
|
-
Tags =
|
|
1576
|
+
RelationshipList = list[Relationship]
|
|
1577
|
+
RelatedEventList = list[RelatedEvent]
|
|
1578
|
+
Tags = dict[Name, Value]
|
|
1579
1579
|
|
|
1580
1580
|
|
|
1581
1581
|
class ConfigurationItem(TypedDict, total=False):
|
|
1582
|
-
version:
|
|
1583
|
-
accountId:
|
|
1584
|
-
configurationItemCaptureTime:
|
|
1585
|
-
configurationItemStatus:
|
|
1586
|
-
configurationStateId:
|
|
1587
|
-
configurationItemMD5Hash:
|
|
1588
|
-
arn:
|
|
1589
|
-
resourceType:
|
|
1590
|
-
resourceId:
|
|
1591
|
-
resourceName:
|
|
1592
|
-
awsRegion:
|
|
1593
|
-
availabilityZone:
|
|
1594
|
-
resourceCreationTime:
|
|
1595
|
-
tags:
|
|
1596
|
-
relatedEvents:
|
|
1597
|
-
relationships:
|
|
1598
|
-
configuration:
|
|
1599
|
-
supplementaryConfiguration:
|
|
1600
|
-
recordingFrequency:
|
|
1601
|
-
configurationItemDeliveryTime:
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
ConfigurationItemList =
|
|
1605
|
-
ConfigurationRecorderFilterValues =
|
|
1582
|
+
version: Version | None
|
|
1583
|
+
accountId: AccountId | None
|
|
1584
|
+
configurationItemCaptureTime: ConfigurationItemCaptureTime | None
|
|
1585
|
+
configurationItemStatus: ConfigurationItemStatus | None
|
|
1586
|
+
configurationStateId: ConfigurationStateId | None
|
|
1587
|
+
configurationItemMD5Hash: ConfigurationItemMD5Hash | None
|
|
1588
|
+
arn: ARN | None
|
|
1589
|
+
resourceType: ResourceType | None
|
|
1590
|
+
resourceId: ResourceId | None
|
|
1591
|
+
resourceName: ResourceName | None
|
|
1592
|
+
awsRegion: AwsRegion | None
|
|
1593
|
+
availabilityZone: AvailabilityZone | None
|
|
1594
|
+
resourceCreationTime: ResourceCreationTime | None
|
|
1595
|
+
tags: Tags | None
|
|
1596
|
+
relatedEvents: RelatedEventList | None
|
|
1597
|
+
relationships: RelationshipList | None
|
|
1598
|
+
configuration: Configuration | None
|
|
1599
|
+
supplementaryConfiguration: SupplementaryConfiguration | None
|
|
1600
|
+
recordingFrequency: RecordingFrequency | None
|
|
1601
|
+
configurationItemDeliveryTime: ConfigurationItemDeliveryTime | None
|
|
1602
|
+
|
|
1603
|
+
|
|
1604
|
+
ConfigurationItemList = list[ConfigurationItem]
|
|
1605
|
+
ConfigurationRecorderFilterValues = list[ConfigurationRecorderFilterValue]
|
|
1606
1606
|
|
|
1607
1607
|
|
|
1608
1608
|
class ConfigurationRecorderFilter(TypedDict, total=False):
|
|
1609
|
-
filterName:
|
|
1610
|
-
filterValue:
|
|
1609
|
+
filterName: ConfigurationRecorderFilterName | None
|
|
1610
|
+
filterValue: ConfigurationRecorderFilterValues | None
|
|
1611
1611
|
|
|
1612
1612
|
|
|
1613
|
-
ConfigurationRecorderFilterList =
|
|
1614
|
-
ConfigurationRecorderList =
|
|
1615
|
-
ConfigurationRecorderNameList =
|
|
1613
|
+
ConfigurationRecorderFilterList = list[ConfigurationRecorderFilter]
|
|
1614
|
+
ConfigurationRecorderList = list[ConfigurationRecorder]
|
|
1615
|
+
ConfigurationRecorderNameList = list[RecorderName]
|
|
1616
1616
|
|
|
1617
1617
|
|
|
1618
1618
|
class ConfigurationRecorderStatus(TypedDict, total=False):
|
|
1619
|
-
arn:
|
|
1620
|
-
name:
|
|
1621
|
-
lastStartTime:
|
|
1622
|
-
lastStopTime:
|
|
1623
|
-
recording:
|
|
1624
|
-
lastStatus:
|
|
1625
|
-
lastErrorCode:
|
|
1626
|
-
lastErrorMessage:
|
|
1627
|
-
lastStatusChangeTime:
|
|
1628
|
-
servicePrincipal:
|
|
1619
|
+
arn: AmazonResourceName | None
|
|
1620
|
+
name: String | None
|
|
1621
|
+
lastStartTime: Date | None
|
|
1622
|
+
lastStopTime: Date | None
|
|
1623
|
+
recording: Boolean | None
|
|
1624
|
+
lastStatus: RecorderStatus | None
|
|
1625
|
+
lastErrorCode: String | None
|
|
1626
|
+
lastErrorMessage: String | None
|
|
1627
|
+
lastStatusChangeTime: Date | None
|
|
1628
|
+
servicePrincipal: ServicePrincipal | None
|
|
1629
1629
|
|
|
1630
1630
|
|
|
1631
|
-
ConfigurationRecorderStatusList =
|
|
1631
|
+
ConfigurationRecorderStatusList = list[ConfigurationRecorderStatus]
|
|
1632
1632
|
|
|
1633
1633
|
|
|
1634
1634
|
class ConfigurationRecorderSummary(TypedDict, total=False):
|
|
1635
1635
|
arn: AmazonResourceName
|
|
1636
1636
|
name: RecorderName
|
|
1637
|
-
servicePrincipal:
|
|
1637
|
+
servicePrincipal: ServicePrincipal | None
|
|
1638
1638
|
recordingScope: RecordingScope
|
|
1639
1639
|
|
|
1640
1640
|
|
|
1641
|
-
ConfigurationRecorderSummaries =
|
|
1642
|
-
ConformancePackConfigRuleNames =
|
|
1641
|
+
ConfigurationRecorderSummaries = list[ConfigurationRecorderSummary]
|
|
1642
|
+
ConformancePackConfigRuleNames = list[StringWithCharLimit64]
|
|
1643
1643
|
|
|
1644
1644
|
|
|
1645
1645
|
class ConformancePackComplianceFilters(TypedDict, total=False):
|
|
1646
|
-
ConfigRuleNames:
|
|
1647
|
-
ComplianceType:
|
|
1646
|
+
ConfigRuleNames: ConformancePackConfigRuleNames | None
|
|
1647
|
+
ComplianceType: ConformancePackComplianceType | None
|
|
1648
1648
|
|
|
1649
1649
|
|
|
1650
|
-
ConformancePackComplianceResourceIds =
|
|
1650
|
+
ConformancePackComplianceResourceIds = list[StringWithCharLimit256]
|
|
1651
1651
|
LastUpdatedTime = datetime
|
|
1652
1652
|
|
|
1653
1653
|
|
|
1654
1654
|
class ConformancePackComplianceScore(TypedDict, total=False):
|
|
1655
|
-
Score:
|
|
1656
|
-
ConformancePackName:
|
|
1657
|
-
LastUpdatedTime:
|
|
1655
|
+
Score: ComplianceScore | None
|
|
1656
|
+
ConformancePackName: ConformancePackName | None
|
|
1657
|
+
LastUpdatedTime: LastUpdatedTime | None
|
|
1658
1658
|
|
|
1659
1659
|
|
|
1660
|
-
ConformancePackComplianceScores =
|
|
1661
|
-
ConformancePackNameFilter =
|
|
1660
|
+
ConformancePackComplianceScores = list[ConformancePackComplianceScore]
|
|
1661
|
+
ConformancePackNameFilter = list[ConformancePackName]
|
|
1662
1662
|
|
|
1663
1663
|
|
|
1664
1664
|
class ConformancePackComplianceScoresFilters(TypedDict, total=False):
|
|
@@ -1670,12 +1670,12 @@ class ConformancePackComplianceSummary(TypedDict, total=False):
|
|
|
1670
1670
|
ConformancePackComplianceStatus: ConformancePackComplianceType
|
|
1671
1671
|
|
|
1672
1672
|
|
|
1673
|
-
ConformancePackComplianceSummaryList =
|
|
1673
|
+
ConformancePackComplianceSummaryList = list[ConformancePackComplianceSummary]
|
|
1674
1674
|
|
|
1675
1675
|
|
|
1676
1676
|
class TemplateSSMDocumentDetails(TypedDict, total=False):
|
|
1677
1677
|
DocumentName: SSMDocumentName
|
|
1678
|
-
DocumentVersion:
|
|
1678
|
+
DocumentVersion: SSMDocumentVersion | None
|
|
1679
1679
|
|
|
1680
1680
|
|
|
1681
1681
|
class ConformancePackInputParameter(TypedDict, total=False):
|
|
@@ -1683,29 +1683,29 @@ class ConformancePackInputParameter(TypedDict, total=False):
|
|
|
1683
1683
|
ParameterValue: ParameterValue
|
|
1684
1684
|
|
|
1685
1685
|
|
|
1686
|
-
ConformancePackInputParameters =
|
|
1686
|
+
ConformancePackInputParameters = list[ConformancePackInputParameter]
|
|
1687
1687
|
|
|
1688
1688
|
|
|
1689
1689
|
class ConformancePackDetail(TypedDict, total=False):
|
|
1690
1690
|
ConformancePackName: ConformancePackName
|
|
1691
1691
|
ConformancePackArn: ConformancePackArn
|
|
1692
1692
|
ConformancePackId: ConformancePackId
|
|
1693
|
-
DeliveryS3Bucket:
|
|
1694
|
-
DeliveryS3KeyPrefix:
|
|
1695
|
-
ConformancePackInputParameters:
|
|
1696
|
-
LastUpdateRequestedTime:
|
|
1697
|
-
CreatedBy:
|
|
1698
|
-
TemplateSSMDocumentDetails:
|
|
1693
|
+
DeliveryS3Bucket: DeliveryS3Bucket | None
|
|
1694
|
+
DeliveryS3KeyPrefix: DeliveryS3KeyPrefix | None
|
|
1695
|
+
ConformancePackInputParameters: ConformancePackInputParameters | None
|
|
1696
|
+
LastUpdateRequestedTime: Date | None
|
|
1697
|
+
CreatedBy: StringWithCharLimit256 | None
|
|
1698
|
+
TemplateSSMDocumentDetails: TemplateSSMDocumentDetails | None
|
|
1699
1699
|
|
|
1700
1700
|
|
|
1701
|
-
ConformancePackDetailList =
|
|
1701
|
+
ConformancePackDetailList = list[ConformancePackDetail]
|
|
1702
1702
|
|
|
1703
1703
|
|
|
1704
1704
|
class ConformancePackEvaluationFilters(TypedDict, total=False):
|
|
1705
|
-
ConfigRuleNames:
|
|
1706
|
-
ComplianceType:
|
|
1707
|
-
ResourceType:
|
|
1708
|
-
ResourceIds:
|
|
1705
|
+
ConfigRuleNames: ConformancePackConfigRuleNames | None
|
|
1706
|
+
ComplianceType: ConformancePackComplianceType | None
|
|
1707
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1708
|
+
ResourceIds: ConformancePackComplianceResourceIds | None
|
|
1709
1709
|
|
|
1710
1710
|
|
|
1711
1711
|
class ConformancePackEvaluationResult(TypedDict, total=False):
|
|
@@ -1713,22 +1713,22 @@ class ConformancePackEvaluationResult(TypedDict, total=False):
|
|
|
1713
1713
|
EvaluationResultIdentifier: EvaluationResultIdentifier
|
|
1714
1714
|
ConfigRuleInvokedTime: Date
|
|
1715
1715
|
ResultRecordedTime: Date
|
|
1716
|
-
Annotation:
|
|
1716
|
+
Annotation: Annotation | None
|
|
1717
1717
|
|
|
1718
1718
|
|
|
1719
|
-
ConformancePackNamesList =
|
|
1720
|
-
ConformancePackNamesToSummarizeList =
|
|
1721
|
-
ControlsList =
|
|
1719
|
+
ConformancePackNamesList = list[ConformancePackName]
|
|
1720
|
+
ConformancePackNamesToSummarizeList = list[ConformancePackName]
|
|
1721
|
+
ControlsList = list[StringWithCharLimit128]
|
|
1722
1722
|
|
|
1723
1723
|
|
|
1724
1724
|
class ConformancePackRuleCompliance(TypedDict, total=False):
|
|
1725
|
-
ConfigRuleName:
|
|
1726
|
-
ComplianceType:
|
|
1727
|
-
Controls:
|
|
1725
|
+
ConfigRuleName: ConfigRuleName | None
|
|
1726
|
+
ComplianceType: ConformancePackComplianceType | None
|
|
1727
|
+
Controls: ControlsList | None
|
|
1728
1728
|
|
|
1729
1729
|
|
|
1730
|
-
ConformancePackRuleComplianceList =
|
|
1731
|
-
ConformancePackRuleEvaluationResultsList =
|
|
1730
|
+
ConformancePackRuleComplianceList = list[ConformancePackRuleCompliance]
|
|
1731
|
+
ConformancePackRuleEvaluationResultsList = list[ConformancePackEvaluationResult]
|
|
1732
1732
|
|
|
1733
1733
|
|
|
1734
1734
|
class ConformancePackStatusDetail(TypedDict, total=False):
|
|
@@ -1737,13 +1737,13 @@ class ConformancePackStatusDetail(TypedDict, total=False):
|
|
|
1737
1737
|
ConformancePackArn: ConformancePackArn
|
|
1738
1738
|
ConformancePackState: ConformancePackState
|
|
1739
1739
|
StackArn: StackArn
|
|
1740
|
-
ConformancePackStatusReason:
|
|
1740
|
+
ConformancePackStatusReason: ConformancePackStatusReason | None
|
|
1741
1741
|
LastUpdateRequestedTime: Date
|
|
1742
|
-
LastUpdateCompletedTime:
|
|
1742
|
+
LastUpdateCompletedTime: Date | None
|
|
1743
1743
|
|
|
1744
1744
|
|
|
1745
|
-
ConformancePackStatusDetailsList =
|
|
1746
|
-
DebugLogDeliveryAccounts =
|
|
1745
|
+
ConformancePackStatusDetailsList = list[ConformancePackStatusDetail]
|
|
1746
|
+
DebugLogDeliveryAccounts = list[AccountId]
|
|
1747
1747
|
|
|
1748
1748
|
|
|
1749
1749
|
class DeleteAggregationAuthorizationRequest(ServiceRequest):
|
|
@@ -1794,7 +1794,7 @@ class DeletePendingAggregationRequestRequest(ServiceRequest):
|
|
|
1794
1794
|
|
|
1795
1795
|
class DeleteRemediationConfigurationRequest(ServiceRequest):
|
|
1796
1796
|
ConfigRuleName: ConfigRuleName
|
|
1797
|
-
ResourceType:
|
|
1797
|
+
ResourceType: String | None
|
|
1798
1798
|
|
|
1799
1799
|
|
|
1800
1800
|
class DeleteRemediationConfigurationResponse(TypedDict, total=False):
|
|
@@ -1802,11 +1802,11 @@ class DeleteRemediationConfigurationResponse(TypedDict, total=False):
|
|
|
1802
1802
|
|
|
1803
1803
|
|
|
1804
1804
|
class RemediationExceptionResourceKey(TypedDict, total=False):
|
|
1805
|
-
ResourceType:
|
|
1806
|
-
ResourceId:
|
|
1805
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1806
|
+
ResourceId: StringWithCharLimit1024 | None
|
|
1807
1807
|
|
|
1808
1808
|
|
|
1809
|
-
RemediationExceptionResourceKeys =
|
|
1809
|
+
RemediationExceptionResourceKeys = list[RemediationExceptionResourceKey]
|
|
1810
1810
|
|
|
1811
1811
|
|
|
1812
1812
|
class DeleteRemediationExceptionsRequest(ServiceRequest):
|
|
@@ -1815,15 +1815,15 @@ class DeleteRemediationExceptionsRequest(ServiceRequest):
|
|
|
1815
1815
|
|
|
1816
1816
|
|
|
1817
1817
|
class FailedDeleteRemediationExceptionsBatch(TypedDict, total=False):
|
|
1818
|
-
FailureMessage:
|
|
1819
|
-
FailedItems:
|
|
1818
|
+
FailureMessage: String | None
|
|
1819
|
+
FailedItems: RemediationExceptionResourceKeys | None
|
|
1820
1820
|
|
|
1821
1821
|
|
|
1822
|
-
FailedDeleteRemediationExceptionsBatches =
|
|
1822
|
+
FailedDeleteRemediationExceptionsBatches = list[FailedDeleteRemediationExceptionsBatch]
|
|
1823
1823
|
|
|
1824
1824
|
|
|
1825
1825
|
class DeleteRemediationExceptionsResponse(TypedDict, total=False):
|
|
1826
|
-
FailedBatches:
|
|
1826
|
+
FailedBatches: FailedDeleteRemediationExceptionsBatches | None
|
|
1827
1827
|
|
|
1828
1828
|
|
|
1829
1829
|
class DeleteResourceConfigRequest(ServiceRequest):
|
|
@@ -1857,368 +1857,368 @@ class DeliverConfigSnapshotRequest(ServiceRequest):
|
|
|
1857
1857
|
|
|
1858
1858
|
|
|
1859
1859
|
class DeliverConfigSnapshotResponse(TypedDict, total=False):
|
|
1860
|
-
configSnapshotId:
|
|
1860
|
+
configSnapshotId: String | None
|
|
1861
1861
|
|
|
1862
1862
|
|
|
1863
1863
|
class DeliveryChannel(TypedDict, total=False):
|
|
1864
|
-
name:
|
|
1865
|
-
s3BucketName:
|
|
1866
|
-
s3KeyPrefix:
|
|
1867
|
-
s3KmsKeyArn:
|
|
1868
|
-
snsTopicARN:
|
|
1869
|
-
configSnapshotDeliveryProperties:
|
|
1864
|
+
name: ChannelName | None
|
|
1865
|
+
s3BucketName: String | None
|
|
1866
|
+
s3KeyPrefix: String | None
|
|
1867
|
+
s3KmsKeyArn: String | None
|
|
1868
|
+
snsTopicARN: String | None
|
|
1869
|
+
configSnapshotDeliveryProperties: ConfigSnapshotDeliveryProperties | None
|
|
1870
1870
|
|
|
1871
1871
|
|
|
1872
|
-
DeliveryChannelList =
|
|
1873
|
-
DeliveryChannelNameList =
|
|
1872
|
+
DeliveryChannelList = list[DeliveryChannel]
|
|
1873
|
+
DeliveryChannelNameList = list[ChannelName]
|
|
1874
1874
|
|
|
1875
1875
|
|
|
1876
1876
|
class DeliveryChannelStatus(TypedDict, total=False):
|
|
1877
|
-
name:
|
|
1878
|
-
configSnapshotDeliveryInfo:
|
|
1879
|
-
configHistoryDeliveryInfo:
|
|
1880
|
-
configStreamDeliveryInfo:
|
|
1877
|
+
name: String | None
|
|
1878
|
+
configSnapshotDeliveryInfo: ConfigExportDeliveryInfo | None
|
|
1879
|
+
configHistoryDeliveryInfo: ConfigExportDeliveryInfo | None
|
|
1880
|
+
configStreamDeliveryInfo: ConfigStreamDeliveryInfo | None
|
|
1881
1881
|
|
|
1882
1882
|
|
|
1883
|
-
DeliveryChannelStatusList =
|
|
1883
|
+
DeliveryChannelStatusList = list[DeliveryChannelStatus]
|
|
1884
1884
|
|
|
1885
1885
|
|
|
1886
1886
|
class DescribeAggregateComplianceByConfigRulesRequest(ServiceRequest):
|
|
1887
1887
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
1888
|
-
Filters:
|
|
1889
|
-
Limit:
|
|
1890
|
-
NextToken:
|
|
1888
|
+
Filters: ConfigRuleComplianceFilters | None
|
|
1889
|
+
Limit: GroupByAPILimit | None
|
|
1890
|
+
NextToken: NextToken | None
|
|
1891
1891
|
|
|
1892
1892
|
|
|
1893
1893
|
class DescribeAggregateComplianceByConfigRulesResponse(TypedDict, total=False):
|
|
1894
|
-
AggregateComplianceByConfigRules:
|
|
1895
|
-
NextToken:
|
|
1894
|
+
AggregateComplianceByConfigRules: AggregateComplianceByConfigRuleList | None
|
|
1895
|
+
NextToken: NextToken | None
|
|
1896
1896
|
|
|
1897
1897
|
|
|
1898
1898
|
class DescribeAggregateComplianceByConformancePacksRequest(ServiceRequest):
|
|
1899
1899
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
1900
|
-
Filters:
|
|
1901
|
-
Limit:
|
|
1902
|
-
NextToken:
|
|
1900
|
+
Filters: AggregateConformancePackComplianceFilters | None
|
|
1901
|
+
Limit: Limit | None
|
|
1902
|
+
NextToken: NextToken | None
|
|
1903
1903
|
|
|
1904
1904
|
|
|
1905
1905
|
class DescribeAggregateComplianceByConformancePacksResponse(TypedDict, total=False):
|
|
1906
|
-
AggregateComplianceByConformancePacks:
|
|
1907
|
-
NextToken:
|
|
1906
|
+
AggregateComplianceByConformancePacks: AggregateComplianceByConformancePackList | None
|
|
1907
|
+
NextToken: NextToken | None
|
|
1908
1908
|
|
|
1909
1909
|
|
|
1910
1910
|
class DescribeAggregationAuthorizationsRequest(ServiceRequest):
|
|
1911
|
-
Limit:
|
|
1912
|
-
NextToken:
|
|
1911
|
+
Limit: Limit | None
|
|
1912
|
+
NextToken: String | None
|
|
1913
1913
|
|
|
1914
1914
|
|
|
1915
1915
|
class DescribeAggregationAuthorizationsResponse(TypedDict, total=False):
|
|
1916
|
-
AggregationAuthorizations:
|
|
1917
|
-
NextToken:
|
|
1916
|
+
AggregationAuthorizations: AggregationAuthorizationList | None
|
|
1917
|
+
NextToken: String | None
|
|
1918
1918
|
|
|
1919
1919
|
|
|
1920
1920
|
class DescribeComplianceByConfigRuleRequest(ServiceRequest):
|
|
1921
|
-
ConfigRuleNames:
|
|
1922
|
-
ComplianceTypes:
|
|
1923
|
-
NextToken:
|
|
1921
|
+
ConfigRuleNames: ConfigRuleNames | None
|
|
1922
|
+
ComplianceTypes: ComplianceTypes | None
|
|
1923
|
+
NextToken: String | None
|
|
1924
1924
|
|
|
1925
1925
|
|
|
1926
1926
|
class DescribeComplianceByConfigRuleResponse(TypedDict, total=False):
|
|
1927
|
-
ComplianceByConfigRules:
|
|
1928
|
-
NextToken:
|
|
1927
|
+
ComplianceByConfigRules: ComplianceByConfigRules | None
|
|
1928
|
+
NextToken: String | None
|
|
1929
1929
|
|
|
1930
1930
|
|
|
1931
1931
|
class DescribeComplianceByResourceRequest(ServiceRequest):
|
|
1932
|
-
ResourceType:
|
|
1933
|
-
ResourceId:
|
|
1934
|
-
ComplianceTypes:
|
|
1935
|
-
Limit:
|
|
1936
|
-
NextToken:
|
|
1932
|
+
ResourceType: StringWithCharLimit256 | None
|
|
1933
|
+
ResourceId: BaseResourceId | None
|
|
1934
|
+
ComplianceTypes: ComplianceTypes | None
|
|
1935
|
+
Limit: Limit | None
|
|
1936
|
+
NextToken: NextToken | None
|
|
1937
1937
|
|
|
1938
1938
|
|
|
1939
1939
|
class DescribeComplianceByResourceResponse(TypedDict, total=False):
|
|
1940
|
-
ComplianceByResources:
|
|
1941
|
-
NextToken:
|
|
1940
|
+
ComplianceByResources: ComplianceByResources | None
|
|
1941
|
+
NextToken: NextToken | None
|
|
1942
1942
|
|
|
1943
1943
|
|
|
1944
1944
|
class DescribeConfigRuleEvaluationStatusRequest(ServiceRequest):
|
|
1945
|
-
ConfigRuleNames:
|
|
1946
|
-
NextToken:
|
|
1947
|
-
Limit:
|
|
1945
|
+
ConfigRuleNames: ConfigRuleNames | None
|
|
1946
|
+
NextToken: String | None
|
|
1947
|
+
Limit: RuleLimit | None
|
|
1948
1948
|
|
|
1949
1949
|
|
|
1950
1950
|
class DescribeConfigRuleEvaluationStatusResponse(TypedDict, total=False):
|
|
1951
|
-
ConfigRulesEvaluationStatus:
|
|
1952
|
-
NextToken:
|
|
1951
|
+
ConfigRulesEvaluationStatus: ConfigRuleEvaluationStatusList | None
|
|
1952
|
+
NextToken: String | None
|
|
1953
1953
|
|
|
1954
1954
|
|
|
1955
1955
|
class DescribeConfigRulesFilters(TypedDict, total=False):
|
|
1956
|
-
EvaluationMode:
|
|
1956
|
+
EvaluationMode: EvaluationMode | None
|
|
1957
1957
|
|
|
1958
1958
|
|
|
1959
1959
|
class DescribeConfigRulesRequest(ServiceRequest):
|
|
1960
|
-
ConfigRuleNames:
|
|
1961
|
-
NextToken:
|
|
1962
|
-
Filters:
|
|
1960
|
+
ConfigRuleNames: ConfigRuleNames | None
|
|
1961
|
+
NextToken: String | None
|
|
1962
|
+
Filters: DescribeConfigRulesFilters | None
|
|
1963
1963
|
|
|
1964
1964
|
|
|
1965
1965
|
class DescribeConfigRulesResponse(TypedDict, total=False):
|
|
1966
|
-
ConfigRules:
|
|
1967
|
-
NextToken:
|
|
1966
|
+
ConfigRules: ConfigRules | None
|
|
1967
|
+
NextToken: String | None
|
|
1968
1968
|
|
|
1969
1969
|
|
|
1970
1970
|
class DescribeConfigurationAggregatorSourcesStatusRequest(ServiceRequest):
|
|
1971
1971
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
1972
|
-
UpdateStatus:
|
|
1973
|
-
NextToken:
|
|
1974
|
-
Limit:
|
|
1972
|
+
UpdateStatus: AggregatedSourceStatusTypeList | None
|
|
1973
|
+
NextToken: String | None
|
|
1974
|
+
Limit: Limit | None
|
|
1975
1975
|
|
|
1976
1976
|
|
|
1977
1977
|
class DescribeConfigurationAggregatorSourcesStatusResponse(TypedDict, total=False):
|
|
1978
|
-
AggregatedSourceStatusList:
|
|
1979
|
-
NextToken:
|
|
1978
|
+
AggregatedSourceStatusList: AggregatedSourceStatusList | None
|
|
1979
|
+
NextToken: String | None
|
|
1980
1980
|
|
|
1981
1981
|
|
|
1982
1982
|
class DescribeConfigurationAggregatorsRequest(ServiceRequest):
|
|
1983
|
-
ConfigurationAggregatorNames:
|
|
1984
|
-
NextToken:
|
|
1985
|
-
Limit:
|
|
1983
|
+
ConfigurationAggregatorNames: ConfigurationAggregatorNameList | None
|
|
1984
|
+
NextToken: String | None
|
|
1985
|
+
Limit: Limit | None
|
|
1986
1986
|
|
|
1987
1987
|
|
|
1988
1988
|
class DescribeConfigurationAggregatorsResponse(TypedDict, total=False):
|
|
1989
|
-
ConfigurationAggregators:
|
|
1990
|
-
NextToken:
|
|
1989
|
+
ConfigurationAggregators: ConfigurationAggregatorList | None
|
|
1990
|
+
NextToken: String | None
|
|
1991
1991
|
|
|
1992
1992
|
|
|
1993
1993
|
class DescribeConfigurationRecorderStatusRequest(ServiceRequest):
|
|
1994
|
-
ConfigurationRecorderNames:
|
|
1995
|
-
ServicePrincipal:
|
|
1996
|
-
Arn:
|
|
1994
|
+
ConfigurationRecorderNames: ConfigurationRecorderNameList | None
|
|
1995
|
+
ServicePrincipal: ServicePrincipal | None
|
|
1996
|
+
Arn: AmazonResourceName | None
|
|
1997
1997
|
|
|
1998
1998
|
|
|
1999
1999
|
class DescribeConfigurationRecorderStatusResponse(TypedDict, total=False):
|
|
2000
|
-
ConfigurationRecordersStatus:
|
|
2000
|
+
ConfigurationRecordersStatus: ConfigurationRecorderStatusList | None
|
|
2001
2001
|
|
|
2002
2002
|
|
|
2003
2003
|
class DescribeConfigurationRecordersRequest(ServiceRequest):
|
|
2004
|
-
ConfigurationRecorderNames:
|
|
2005
|
-
ServicePrincipal:
|
|
2006
|
-
Arn:
|
|
2004
|
+
ConfigurationRecorderNames: ConfigurationRecorderNameList | None
|
|
2005
|
+
ServicePrincipal: ServicePrincipal | None
|
|
2006
|
+
Arn: AmazonResourceName | None
|
|
2007
2007
|
|
|
2008
2008
|
|
|
2009
2009
|
class DescribeConfigurationRecordersResponse(TypedDict, total=False):
|
|
2010
|
-
ConfigurationRecorders:
|
|
2010
|
+
ConfigurationRecorders: ConfigurationRecorderList | None
|
|
2011
2011
|
|
|
2012
2012
|
|
|
2013
2013
|
class DescribeConformancePackComplianceRequest(ServiceRequest):
|
|
2014
2014
|
ConformancePackName: ConformancePackName
|
|
2015
|
-
Filters:
|
|
2016
|
-
Limit:
|
|
2017
|
-
NextToken:
|
|
2015
|
+
Filters: ConformancePackComplianceFilters | None
|
|
2016
|
+
Limit: DescribeConformancePackComplianceLimit | None
|
|
2017
|
+
NextToken: NextToken | None
|
|
2018
2018
|
|
|
2019
2019
|
|
|
2020
2020
|
class DescribeConformancePackComplianceResponse(TypedDict, total=False):
|
|
2021
2021
|
ConformancePackName: ConformancePackName
|
|
2022
2022
|
ConformancePackRuleComplianceList: ConformancePackRuleComplianceList
|
|
2023
|
-
NextToken:
|
|
2023
|
+
NextToken: NextToken | None
|
|
2024
2024
|
|
|
2025
2025
|
|
|
2026
2026
|
class DescribeConformancePackStatusRequest(ServiceRequest):
|
|
2027
|
-
ConformancePackNames:
|
|
2028
|
-
Limit:
|
|
2029
|
-
NextToken:
|
|
2027
|
+
ConformancePackNames: ConformancePackNamesList | None
|
|
2028
|
+
Limit: PageSizeLimit | None
|
|
2029
|
+
NextToken: NextToken | None
|
|
2030
2030
|
|
|
2031
2031
|
|
|
2032
2032
|
class DescribeConformancePackStatusResponse(TypedDict, total=False):
|
|
2033
|
-
ConformancePackStatusDetails:
|
|
2034
|
-
NextToken:
|
|
2033
|
+
ConformancePackStatusDetails: ConformancePackStatusDetailsList | None
|
|
2034
|
+
NextToken: NextToken | None
|
|
2035
2035
|
|
|
2036
2036
|
|
|
2037
2037
|
class DescribeConformancePacksRequest(ServiceRequest):
|
|
2038
|
-
ConformancePackNames:
|
|
2039
|
-
Limit:
|
|
2040
|
-
NextToken:
|
|
2038
|
+
ConformancePackNames: ConformancePackNamesList | None
|
|
2039
|
+
Limit: PageSizeLimit | None
|
|
2040
|
+
NextToken: NextToken | None
|
|
2041
2041
|
|
|
2042
2042
|
|
|
2043
2043
|
class DescribeConformancePacksResponse(TypedDict, total=False):
|
|
2044
|
-
ConformancePackDetails:
|
|
2045
|
-
NextToken:
|
|
2044
|
+
ConformancePackDetails: ConformancePackDetailList | None
|
|
2045
|
+
NextToken: NextToken | None
|
|
2046
2046
|
|
|
2047
2047
|
|
|
2048
2048
|
class DescribeDeliveryChannelStatusRequest(ServiceRequest):
|
|
2049
|
-
DeliveryChannelNames:
|
|
2049
|
+
DeliveryChannelNames: DeliveryChannelNameList | None
|
|
2050
2050
|
|
|
2051
2051
|
|
|
2052
2052
|
class DescribeDeliveryChannelStatusResponse(TypedDict, total=False):
|
|
2053
|
-
DeliveryChannelsStatus:
|
|
2053
|
+
DeliveryChannelsStatus: DeliveryChannelStatusList | None
|
|
2054
2054
|
|
|
2055
2055
|
|
|
2056
2056
|
class DescribeDeliveryChannelsRequest(ServiceRequest):
|
|
2057
|
-
DeliveryChannelNames:
|
|
2057
|
+
DeliveryChannelNames: DeliveryChannelNameList | None
|
|
2058
2058
|
|
|
2059
2059
|
|
|
2060
2060
|
class DescribeDeliveryChannelsResponse(TypedDict, total=False):
|
|
2061
|
-
DeliveryChannels:
|
|
2061
|
+
DeliveryChannels: DeliveryChannelList | None
|
|
2062
2062
|
|
|
2063
2063
|
|
|
2064
|
-
OrganizationConfigRuleNames =
|
|
2064
|
+
OrganizationConfigRuleNames = list[StringWithCharLimit64]
|
|
2065
2065
|
|
|
2066
2066
|
|
|
2067
2067
|
class DescribeOrganizationConfigRuleStatusesRequest(ServiceRequest):
|
|
2068
|
-
OrganizationConfigRuleNames:
|
|
2069
|
-
Limit:
|
|
2070
|
-
NextToken:
|
|
2068
|
+
OrganizationConfigRuleNames: OrganizationConfigRuleNames | None
|
|
2069
|
+
Limit: CosmosPageLimit | None
|
|
2070
|
+
NextToken: String | None
|
|
2071
2071
|
|
|
2072
2072
|
|
|
2073
2073
|
class OrganizationConfigRuleStatus(TypedDict, total=False):
|
|
2074
2074
|
OrganizationConfigRuleName: OrganizationConfigRuleName
|
|
2075
2075
|
OrganizationRuleStatus: OrganizationRuleStatus
|
|
2076
|
-
ErrorCode:
|
|
2077
|
-
ErrorMessage:
|
|
2078
|
-
LastUpdateTime:
|
|
2076
|
+
ErrorCode: String | None
|
|
2077
|
+
ErrorMessage: String | None
|
|
2078
|
+
LastUpdateTime: Date | None
|
|
2079
2079
|
|
|
2080
2080
|
|
|
2081
|
-
OrganizationConfigRuleStatuses =
|
|
2081
|
+
OrganizationConfigRuleStatuses = list[OrganizationConfigRuleStatus]
|
|
2082
2082
|
|
|
2083
2083
|
|
|
2084
2084
|
class DescribeOrganizationConfigRuleStatusesResponse(TypedDict, total=False):
|
|
2085
|
-
OrganizationConfigRuleStatuses:
|
|
2086
|
-
NextToken:
|
|
2085
|
+
OrganizationConfigRuleStatuses: OrganizationConfigRuleStatuses | None
|
|
2086
|
+
NextToken: String | None
|
|
2087
2087
|
|
|
2088
2088
|
|
|
2089
2089
|
class DescribeOrganizationConfigRulesRequest(ServiceRequest):
|
|
2090
|
-
OrganizationConfigRuleNames:
|
|
2091
|
-
Limit:
|
|
2092
|
-
NextToken:
|
|
2090
|
+
OrganizationConfigRuleNames: OrganizationConfigRuleNames | None
|
|
2091
|
+
Limit: CosmosPageLimit | None
|
|
2092
|
+
NextToken: String | None
|
|
2093
2093
|
|
|
2094
2094
|
|
|
2095
|
-
ResourceTypesScope =
|
|
2096
|
-
OrganizationConfigRuleTriggerTypeNoSNs =
|
|
2095
|
+
ResourceTypesScope = list[StringWithCharLimit256]
|
|
2096
|
+
OrganizationConfigRuleTriggerTypeNoSNs = list[OrganizationConfigRuleTriggerTypeNoSN]
|
|
2097
2097
|
|
|
2098
2098
|
|
|
2099
2099
|
class OrganizationCustomPolicyRuleMetadataNoPolicy(TypedDict, total=False):
|
|
2100
|
-
Description:
|
|
2101
|
-
OrganizationConfigRuleTriggerTypes:
|
|
2102
|
-
InputParameters:
|
|
2103
|
-
MaximumExecutionFrequency:
|
|
2104
|
-
ResourceTypesScope:
|
|
2105
|
-
ResourceIdScope:
|
|
2106
|
-
TagKeyScope:
|
|
2107
|
-
TagValueScope:
|
|
2108
|
-
PolicyRuntime:
|
|
2109
|
-
DebugLogDeliveryAccounts:
|
|
2100
|
+
Description: StringWithCharLimit256Min0 | None
|
|
2101
|
+
OrganizationConfigRuleTriggerTypes: OrganizationConfigRuleTriggerTypeNoSNs | None
|
|
2102
|
+
InputParameters: StringWithCharLimit2048 | None
|
|
2103
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
2104
|
+
ResourceTypesScope: ResourceTypesScope | None
|
|
2105
|
+
ResourceIdScope: StringWithCharLimit768 | None
|
|
2106
|
+
TagKeyScope: StringWithCharLimit128 | None
|
|
2107
|
+
TagValueScope: StringWithCharLimit256 | None
|
|
2108
|
+
PolicyRuntime: PolicyRuntime | None
|
|
2109
|
+
DebugLogDeliveryAccounts: DebugLogDeliveryAccounts | None
|
|
2110
2110
|
|
|
2111
2111
|
|
|
2112
|
-
ExcludedAccounts =
|
|
2113
|
-
OrganizationConfigRuleTriggerTypes =
|
|
2112
|
+
ExcludedAccounts = list[AccountId]
|
|
2113
|
+
OrganizationConfigRuleTriggerTypes = list[OrganizationConfigRuleTriggerType]
|
|
2114
2114
|
|
|
2115
2115
|
|
|
2116
2116
|
class OrganizationCustomRuleMetadata(TypedDict, total=False):
|
|
2117
|
-
Description:
|
|
2117
|
+
Description: StringWithCharLimit256Min0 | None
|
|
2118
2118
|
LambdaFunctionArn: StringWithCharLimit256
|
|
2119
2119
|
OrganizationConfigRuleTriggerTypes: OrganizationConfigRuleTriggerTypes
|
|
2120
|
-
InputParameters:
|
|
2121
|
-
MaximumExecutionFrequency:
|
|
2122
|
-
ResourceTypesScope:
|
|
2123
|
-
ResourceIdScope:
|
|
2124
|
-
TagKeyScope:
|
|
2125
|
-
TagValueScope:
|
|
2120
|
+
InputParameters: StringWithCharLimit2048 | None
|
|
2121
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
2122
|
+
ResourceTypesScope: ResourceTypesScope | None
|
|
2123
|
+
ResourceIdScope: StringWithCharLimit768 | None
|
|
2124
|
+
TagKeyScope: StringWithCharLimit128 | None
|
|
2125
|
+
TagValueScope: StringWithCharLimit256 | None
|
|
2126
2126
|
|
|
2127
2127
|
|
|
2128
2128
|
class OrganizationManagedRuleMetadata(TypedDict, total=False):
|
|
2129
|
-
Description:
|
|
2129
|
+
Description: StringWithCharLimit256Min0 | None
|
|
2130
2130
|
RuleIdentifier: StringWithCharLimit256
|
|
2131
|
-
InputParameters:
|
|
2132
|
-
MaximumExecutionFrequency:
|
|
2133
|
-
ResourceTypesScope:
|
|
2134
|
-
ResourceIdScope:
|
|
2135
|
-
TagKeyScope:
|
|
2136
|
-
TagValueScope:
|
|
2131
|
+
InputParameters: StringWithCharLimit2048 | None
|
|
2132
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
2133
|
+
ResourceTypesScope: ResourceTypesScope | None
|
|
2134
|
+
ResourceIdScope: StringWithCharLimit768 | None
|
|
2135
|
+
TagKeyScope: StringWithCharLimit128 | None
|
|
2136
|
+
TagValueScope: StringWithCharLimit256 | None
|
|
2137
2137
|
|
|
2138
2138
|
|
|
2139
2139
|
class OrganizationConfigRule(TypedDict, total=False):
|
|
2140
2140
|
OrganizationConfigRuleName: OrganizationConfigRuleName
|
|
2141
2141
|
OrganizationConfigRuleArn: StringWithCharLimit256
|
|
2142
|
-
OrganizationManagedRuleMetadata:
|
|
2143
|
-
OrganizationCustomRuleMetadata:
|
|
2144
|
-
ExcludedAccounts:
|
|
2145
|
-
LastUpdateTime:
|
|
2146
|
-
OrganizationCustomPolicyRuleMetadata:
|
|
2142
|
+
OrganizationManagedRuleMetadata: OrganizationManagedRuleMetadata | None
|
|
2143
|
+
OrganizationCustomRuleMetadata: OrganizationCustomRuleMetadata | None
|
|
2144
|
+
ExcludedAccounts: ExcludedAccounts | None
|
|
2145
|
+
LastUpdateTime: Date | None
|
|
2146
|
+
OrganizationCustomPolicyRuleMetadata: OrganizationCustomPolicyRuleMetadataNoPolicy | None
|
|
2147
2147
|
|
|
2148
2148
|
|
|
2149
|
-
OrganizationConfigRules =
|
|
2149
|
+
OrganizationConfigRules = list[OrganizationConfigRule]
|
|
2150
2150
|
|
|
2151
2151
|
|
|
2152
2152
|
class DescribeOrganizationConfigRulesResponse(TypedDict, total=False):
|
|
2153
|
-
OrganizationConfigRules:
|
|
2154
|
-
NextToken:
|
|
2153
|
+
OrganizationConfigRules: OrganizationConfigRules | None
|
|
2154
|
+
NextToken: String | None
|
|
2155
2155
|
|
|
2156
2156
|
|
|
2157
|
-
OrganizationConformancePackNames =
|
|
2157
|
+
OrganizationConformancePackNames = list[OrganizationConformancePackName]
|
|
2158
2158
|
|
|
2159
2159
|
|
|
2160
2160
|
class DescribeOrganizationConformancePackStatusesRequest(ServiceRequest):
|
|
2161
|
-
OrganizationConformancePackNames:
|
|
2162
|
-
Limit:
|
|
2163
|
-
NextToken:
|
|
2161
|
+
OrganizationConformancePackNames: OrganizationConformancePackNames | None
|
|
2162
|
+
Limit: CosmosPageLimit | None
|
|
2163
|
+
NextToken: String | None
|
|
2164
2164
|
|
|
2165
2165
|
|
|
2166
2166
|
class OrganizationConformancePackStatus(TypedDict, total=False):
|
|
2167
2167
|
OrganizationConformancePackName: OrganizationConformancePackName
|
|
2168
2168
|
Status: OrganizationResourceStatus
|
|
2169
|
-
ErrorCode:
|
|
2170
|
-
ErrorMessage:
|
|
2171
|
-
LastUpdateTime:
|
|
2169
|
+
ErrorCode: String | None
|
|
2170
|
+
ErrorMessage: String | None
|
|
2171
|
+
LastUpdateTime: Date | None
|
|
2172
2172
|
|
|
2173
2173
|
|
|
2174
|
-
OrganizationConformancePackStatuses =
|
|
2174
|
+
OrganizationConformancePackStatuses = list[OrganizationConformancePackStatus]
|
|
2175
2175
|
|
|
2176
2176
|
|
|
2177
2177
|
class DescribeOrganizationConformancePackStatusesResponse(TypedDict, total=False):
|
|
2178
|
-
OrganizationConformancePackStatuses:
|
|
2179
|
-
NextToken:
|
|
2178
|
+
OrganizationConformancePackStatuses: OrganizationConformancePackStatuses | None
|
|
2179
|
+
NextToken: String | None
|
|
2180
2180
|
|
|
2181
2181
|
|
|
2182
2182
|
class DescribeOrganizationConformancePacksRequest(ServiceRequest):
|
|
2183
|
-
OrganizationConformancePackNames:
|
|
2184
|
-
Limit:
|
|
2185
|
-
NextToken:
|
|
2183
|
+
OrganizationConformancePackNames: OrganizationConformancePackNames | None
|
|
2184
|
+
Limit: CosmosPageLimit | None
|
|
2185
|
+
NextToken: String | None
|
|
2186
2186
|
|
|
2187
2187
|
|
|
2188
2188
|
class OrganizationConformancePack(TypedDict, total=False):
|
|
2189
2189
|
OrganizationConformancePackName: OrganizationConformancePackName
|
|
2190
2190
|
OrganizationConformancePackArn: StringWithCharLimit256
|
|
2191
|
-
DeliveryS3Bucket:
|
|
2192
|
-
DeliveryS3KeyPrefix:
|
|
2193
|
-
ConformancePackInputParameters:
|
|
2194
|
-
ExcludedAccounts:
|
|
2191
|
+
DeliveryS3Bucket: DeliveryS3Bucket | None
|
|
2192
|
+
DeliveryS3KeyPrefix: DeliveryS3KeyPrefix | None
|
|
2193
|
+
ConformancePackInputParameters: ConformancePackInputParameters | None
|
|
2194
|
+
ExcludedAccounts: ExcludedAccounts | None
|
|
2195
2195
|
LastUpdateTime: Date
|
|
2196
2196
|
|
|
2197
2197
|
|
|
2198
|
-
OrganizationConformancePacks =
|
|
2198
|
+
OrganizationConformancePacks = list[OrganizationConformancePack]
|
|
2199
2199
|
|
|
2200
2200
|
|
|
2201
2201
|
class DescribeOrganizationConformancePacksResponse(TypedDict, total=False):
|
|
2202
|
-
OrganizationConformancePacks:
|
|
2203
|
-
NextToken:
|
|
2202
|
+
OrganizationConformancePacks: OrganizationConformancePacks | None
|
|
2203
|
+
NextToken: String | None
|
|
2204
2204
|
|
|
2205
2205
|
|
|
2206
2206
|
class DescribePendingAggregationRequestsRequest(ServiceRequest):
|
|
2207
|
-
Limit:
|
|
2208
|
-
NextToken:
|
|
2207
|
+
Limit: DescribePendingAggregationRequestsLimit | None
|
|
2208
|
+
NextToken: String | None
|
|
2209
2209
|
|
|
2210
2210
|
|
|
2211
2211
|
class PendingAggregationRequest(TypedDict, total=False):
|
|
2212
|
-
RequesterAccountId:
|
|
2213
|
-
RequesterAwsRegion:
|
|
2212
|
+
RequesterAccountId: AccountId | None
|
|
2213
|
+
RequesterAwsRegion: AwsRegion | None
|
|
2214
2214
|
|
|
2215
2215
|
|
|
2216
|
-
PendingAggregationRequestList =
|
|
2216
|
+
PendingAggregationRequestList = list[PendingAggregationRequest]
|
|
2217
2217
|
|
|
2218
2218
|
|
|
2219
2219
|
class DescribePendingAggregationRequestsResponse(TypedDict, total=False):
|
|
2220
|
-
PendingAggregationRequests:
|
|
2221
|
-
NextToken:
|
|
2220
|
+
PendingAggregationRequests: PendingAggregationRequestList | None
|
|
2221
|
+
NextToken: String | None
|
|
2222
2222
|
|
|
2223
2223
|
|
|
2224
2224
|
class DescribeRemediationConfigurationsRequest(ServiceRequest):
|
|
@@ -2226,15 +2226,15 @@ class DescribeRemediationConfigurationsRequest(ServiceRequest):
|
|
|
2226
2226
|
|
|
2227
2227
|
|
|
2228
2228
|
class SsmControls(TypedDict, total=False):
|
|
2229
|
-
ConcurrentExecutionRatePercentage:
|
|
2230
|
-
ErrorPercentage:
|
|
2229
|
+
ConcurrentExecutionRatePercentage: Percentage | None
|
|
2230
|
+
ErrorPercentage: Percentage | None
|
|
2231
2231
|
|
|
2232
2232
|
|
|
2233
2233
|
class ExecutionControls(TypedDict, total=False):
|
|
2234
|
-
SsmControls:
|
|
2234
|
+
SsmControls: SsmControls | None
|
|
2235
2235
|
|
|
2236
2236
|
|
|
2237
|
-
StaticParameterValues =
|
|
2237
|
+
StaticParameterValues = list[StringWithCharLimit256]
|
|
2238
2238
|
|
|
2239
2239
|
|
|
2240
2240
|
class StaticValue(TypedDict, total=False):
|
|
@@ -2246,98 +2246,98 @@ class ResourceValue(TypedDict, total=False):
|
|
|
2246
2246
|
|
|
2247
2247
|
|
|
2248
2248
|
class RemediationParameterValue(TypedDict, total=False):
|
|
2249
|
-
ResourceValue:
|
|
2250
|
-
StaticValue:
|
|
2249
|
+
ResourceValue: ResourceValue | None
|
|
2250
|
+
StaticValue: StaticValue | None
|
|
2251
2251
|
|
|
2252
2252
|
|
|
2253
|
-
RemediationParameters =
|
|
2253
|
+
RemediationParameters = dict[StringWithCharLimit256, RemediationParameterValue]
|
|
2254
2254
|
|
|
2255
2255
|
|
|
2256
2256
|
class RemediationConfiguration(TypedDict, total=False):
|
|
2257
2257
|
ConfigRuleName: ConfigRuleName
|
|
2258
2258
|
TargetType: RemediationTargetType
|
|
2259
2259
|
TargetId: StringWithCharLimit256
|
|
2260
|
-
TargetVersion:
|
|
2261
|
-
Parameters:
|
|
2262
|
-
ResourceType:
|
|
2263
|
-
Automatic:
|
|
2264
|
-
ExecutionControls:
|
|
2265
|
-
MaximumAutomaticAttempts:
|
|
2266
|
-
RetryAttemptSeconds:
|
|
2267
|
-
Arn:
|
|
2268
|
-
CreatedByService:
|
|
2260
|
+
TargetVersion: String | None
|
|
2261
|
+
Parameters: RemediationParameters | None
|
|
2262
|
+
ResourceType: String | None
|
|
2263
|
+
Automatic: Boolean | None
|
|
2264
|
+
ExecutionControls: ExecutionControls | None
|
|
2265
|
+
MaximumAutomaticAttempts: AutoRemediationAttempts | None
|
|
2266
|
+
RetryAttemptSeconds: AutoRemediationAttemptSeconds | None
|
|
2267
|
+
Arn: StringWithCharLimit1024 | None
|
|
2268
|
+
CreatedByService: StringWithCharLimit1024 | None
|
|
2269
2269
|
|
|
2270
2270
|
|
|
2271
|
-
RemediationConfigurations =
|
|
2271
|
+
RemediationConfigurations = list[RemediationConfiguration]
|
|
2272
2272
|
|
|
2273
2273
|
|
|
2274
2274
|
class DescribeRemediationConfigurationsResponse(TypedDict, total=False):
|
|
2275
|
-
RemediationConfigurations:
|
|
2275
|
+
RemediationConfigurations: RemediationConfigurations | None
|
|
2276
2276
|
|
|
2277
2277
|
|
|
2278
2278
|
class DescribeRemediationExceptionsRequest(ServiceRequest):
|
|
2279
2279
|
ConfigRuleName: ConfigRuleName
|
|
2280
|
-
ResourceKeys:
|
|
2281
|
-
Limit:
|
|
2282
|
-
NextToken:
|
|
2280
|
+
ResourceKeys: RemediationExceptionResourceKeys | None
|
|
2281
|
+
Limit: Limit | None
|
|
2282
|
+
NextToken: String | None
|
|
2283
2283
|
|
|
2284
2284
|
|
|
2285
2285
|
class RemediationException(TypedDict, total=False):
|
|
2286
2286
|
ConfigRuleName: ConfigRuleName
|
|
2287
2287
|
ResourceType: StringWithCharLimit256
|
|
2288
2288
|
ResourceId: StringWithCharLimit1024
|
|
2289
|
-
Message:
|
|
2290
|
-
ExpirationTime:
|
|
2289
|
+
Message: StringWithCharLimit1024 | None
|
|
2290
|
+
ExpirationTime: Date | None
|
|
2291
2291
|
|
|
2292
2292
|
|
|
2293
|
-
RemediationExceptions =
|
|
2293
|
+
RemediationExceptions = list[RemediationException]
|
|
2294
2294
|
|
|
2295
2295
|
|
|
2296
2296
|
class DescribeRemediationExceptionsResponse(TypedDict, total=False):
|
|
2297
|
-
RemediationExceptions:
|
|
2298
|
-
NextToken:
|
|
2297
|
+
RemediationExceptions: RemediationExceptions | None
|
|
2298
|
+
NextToken: String | None
|
|
2299
2299
|
|
|
2300
2300
|
|
|
2301
2301
|
class DescribeRemediationExecutionStatusRequest(ServiceRequest):
|
|
2302
2302
|
ConfigRuleName: ConfigRuleName
|
|
2303
|
-
ResourceKeys:
|
|
2304
|
-
Limit:
|
|
2305
|
-
NextToken:
|
|
2303
|
+
ResourceKeys: ResourceKeys | None
|
|
2304
|
+
Limit: Limit | None
|
|
2305
|
+
NextToken: String | None
|
|
2306
2306
|
|
|
2307
2307
|
|
|
2308
2308
|
class RemediationExecutionStep(TypedDict, total=False):
|
|
2309
|
-
Name:
|
|
2310
|
-
State:
|
|
2311
|
-
ErrorMessage:
|
|
2312
|
-
StartTime:
|
|
2313
|
-
StopTime:
|
|
2309
|
+
Name: String | None
|
|
2310
|
+
State: RemediationExecutionStepState | None
|
|
2311
|
+
ErrorMessage: String | None
|
|
2312
|
+
StartTime: Date | None
|
|
2313
|
+
StopTime: Date | None
|
|
2314
2314
|
|
|
2315
2315
|
|
|
2316
|
-
RemediationExecutionSteps =
|
|
2316
|
+
RemediationExecutionSteps = list[RemediationExecutionStep]
|
|
2317
2317
|
|
|
2318
2318
|
|
|
2319
2319
|
class RemediationExecutionStatus(TypedDict, total=False):
|
|
2320
|
-
ResourceKey:
|
|
2321
|
-
State:
|
|
2322
|
-
StepDetails:
|
|
2323
|
-
InvocationTime:
|
|
2324
|
-
LastUpdatedTime:
|
|
2320
|
+
ResourceKey: ResourceKey | None
|
|
2321
|
+
State: RemediationExecutionState | None
|
|
2322
|
+
StepDetails: RemediationExecutionSteps | None
|
|
2323
|
+
InvocationTime: Date | None
|
|
2324
|
+
LastUpdatedTime: Date | None
|
|
2325
2325
|
|
|
2326
2326
|
|
|
2327
|
-
RemediationExecutionStatuses =
|
|
2327
|
+
RemediationExecutionStatuses = list[RemediationExecutionStatus]
|
|
2328
2328
|
|
|
2329
2329
|
|
|
2330
2330
|
class DescribeRemediationExecutionStatusResponse(TypedDict, total=False):
|
|
2331
|
-
RemediationExecutionStatuses:
|
|
2332
|
-
NextToken:
|
|
2331
|
+
RemediationExecutionStatuses: RemediationExecutionStatuses | None
|
|
2332
|
+
NextToken: String | None
|
|
2333
2333
|
|
|
2334
2334
|
|
|
2335
|
-
RetentionConfigurationNameList =
|
|
2335
|
+
RetentionConfigurationNameList = list[RetentionConfigurationName]
|
|
2336
2336
|
|
|
2337
2337
|
|
|
2338
2338
|
class DescribeRetentionConfigurationsRequest(ServiceRequest):
|
|
2339
|
-
RetentionConfigurationNames:
|
|
2340
|
-
NextToken:
|
|
2339
|
+
RetentionConfigurationNames: RetentionConfigurationNameList | None
|
|
2340
|
+
NextToken: NextToken | None
|
|
2341
2341
|
|
|
2342
2342
|
|
|
2343
2343
|
class RetentionConfiguration(TypedDict, total=False):
|
|
@@ -2345,12 +2345,12 @@ class RetentionConfiguration(TypedDict, total=False):
|
|
|
2345
2345
|
RetentionPeriodInDays: RetentionPeriodInDays
|
|
2346
2346
|
|
|
2347
2347
|
|
|
2348
|
-
RetentionConfigurationList =
|
|
2348
|
+
RetentionConfigurationList = list[RetentionConfiguration]
|
|
2349
2349
|
|
|
2350
2350
|
|
|
2351
2351
|
class DescribeRetentionConfigurationsResponse(TypedDict, total=False):
|
|
2352
|
-
RetentionConfigurations:
|
|
2353
|
-
NextToken:
|
|
2352
|
+
RetentionConfigurations: RetentionConfigurationList | None
|
|
2353
|
+
NextToken: NextToken | None
|
|
2354
2354
|
|
|
2355
2355
|
|
|
2356
2356
|
class DisassociateResourceTypesRequest(ServiceRequest):
|
|
@@ -2362,7 +2362,7 @@ class DisassociateResourceTypesResponse(TypedDict, total=False):
|
|
|
2362
2362
|
ConfigurationRecorder: ConfigurationRecorder
|
|
2363
2363
|
|
|
2364
2364
|
|
|
2365
|
-
DiscoveredResourceIdentifierList =
|
|
2365
|
+
DiscoveredResourceIdentifierList = list[AggregateResourceIdentifier]
|
|
2366
2366
|
EarlierTime = datetime
|
|
2367
2367
|
OrderingTimestamp = datetime
|
|
2368
2368
|
|
|
@@ -2371,63 +2371,63 @@ class Evaluation(TypedDict, total=False):
|
|
|
2371
2371
|
ComplianceResourceType: StringWithCharLimit256
|
|
2372
2372
|
ComplianceResourceId: BaseResourceId
|
|
2373
2373
|
ComplianceType: ComplianceType
|
|
2374
|
-
Annotation:
|
|
2374
|
+
Annotation: StringWithCharLimit256 | None
|
|
2375
2375
|
OrderingTimestamp: OrderingTimestamp
|
|
2376
2376
|
|
|
2377
2377
|
|
|
2378
2378
|
class EvaluationContext(TypedDict, total=False):
|
|
2379
|
-
EvaluationContextIdentifier:
|
|
2379
|
+
EvaluationContextIdentifier: EvaluationContextIdentifier | None
|
|
2380
2380
|
|
|
2381
2381
|
|
|
2382
2382
|
class EvaluationResult(TypedDict, total=False):
|
|
2383
|
-
EvaluationResultIdentifier:
|
|
2384
|
-
ComplianceType:
|
|
2385
|
-
ResultRecordedTime:
|
|
2386
|
-
ConfigRuleInvokedTime:
|
|
2387
|
-
Annotation:
|
|
2388
|
-
ResultToken:
|
|
2383
|
+
EvaluationResultIdentifier: EvaluationResultIdentifier | None
|
|
2384
|
+
ComplianceType: ComplianceType | None
|
|
2385
|
+
ResultRecordedTime: Date | None
|
|
2386
|
+
ConfigRuleInvokedTime: Date | None
|
|
2387
|
+
Annotation: StringWithCharLimit256 | None
|
|
2388
|
+
ResultToken: String | None
|
|
2389
2389
|
|
|
2390
2390
|
|
|
2391
|
-
EvaluationResults =
|
|
2391
|
+
EvaluationResults = list[EvaluationResult]
|
|
2392
2392
|
|
|
2393
2393
|
|
|
2394
2394
|
class EvaluationStatus(TypedDict, total=False):
|
|
2395
2395
|
Status: ResourceEvaluationStatus
|
|
2396
|
-
FailureReason:
|
|
2396
|
+
FailureReason: StringWithCharLimit1024 | None
|
|
2397
2397
|
|
|
2398
2398
|
|
|
2399
|
-
Evaluations =
|
|
2399
|
+
Evaluations = list[Evaluation]
|
|
2400
2400
|
|
|
2401
2401
|
|
|
2402
2402
|
class ExternalEvaluation(TypedDict, total=False):
|
|
2403
2403
|
ComplianceResourceType: StringWithCharLimit256
|
|
2404
2404
|
ComplianceResourceId: BaseResourceId
|
|
2405
2405
|
ComplianceType: ComplianceType
|
|
2406
|
-
Annotation:
|
|
2406
|
+
Annotation: StringWithCharLimit256 | None
|
|
2407
2407
|
OrderingTimestamp: OrderingTimestamp
|
|
2408
2408
|
|
|
2409
2409
|
|
|
2410
2410
|
class FailedRemediationBatch(TypedDict, total=False):
|
|
2411
|
-
FailureMessage:
|
|
2412
|
-
FailedItems:
|
|
2411
|
+
FailureMessage: String | None
|
|
2412
|
+
FailedItems: RemediationConfigurations | None
|
|
2413
2413
|
|
|
2414
2414
|
|
|
2415
|
-
FailedRemediationBatches =
|
|
2415
|
+
FailedRemediationBatches = list[FailedRemediationBatch]
|
|
2416
2416
|
|
|
2417
2417
|
|
|
2418
2418
|
class FailedRemediationExceptionBatch(TypedDict, total=False):
|
|
2419
|
-
FailureMessage:
|
|
2420
|
-
FailedItems:
|
|
2419
|
+
FailureMessage: String | None
|
|
2420
|
+
FailedItems: RemediationExceptions | None
|
|
2421
2421
|
|
|
2422
2422
|
|
|
2423
|
-
FailedRemediationExceptionBatches =
|
|
2423
|
+
FailedRemediationExceptionBatches = list[FailedRemediationExceptionBatch]
|
|
2424
2424
|
|
|
2425
2425
|
|
|
2426
2426
|
class FieldInfo(TypedDict, total=False):
|
|
2427
|
-
Name:
|
|
2427
|
+
Name: FieldName | None
|
|
2428
2428
|
|
|
2429
2429
|
|
|
2430
|
-
FieldInfoList =
|
|
2430
|
+
FieldInfoList = list[FieldInfo]
|
|
2431
2431
|
|
|
2432
2432
|
|
|
2433
2433
|
class GetAggregateComplianceDetailsByConfigRuleRequest(ServiceRequest):
|
|
@@ -2435,58 +2435,58 @@ class GetAggregateComplianceDetailsByConfigRuleRequest(ServiceRequest):
|
|
|
2435
2435
|
ConfigRuleName: ConfigRuleName
|
|
2436
2436
|
AccountId: AccountId
|
|
2437
2437
|
AwsRegion: AwsRegion
|
|
2438
|
-
ComplianceType:
|
|
2439
|
-
Limit:
|
|
2440
|
-
NextToken:
|
|
2438
|
+
ComplianceType: ComplianceType | None
|
|
2439
|
+
Limit: Limit | None
|
|
2440
|
+
NextToken: NextToken | None
|
|
2441
2441
|
|
|
2442
2442
|
|
|
2443
2443
|
class GetAggregateComplianceDetailsByConfigRuleResponse(TypedDict, total=False):
|
|
2444
|
-
AggregateEvaluationResults:
|
|
2445
|
-
NextToken:
|
|
2444
|
+
AggregateEvaluationResults: AggregateEvaluationResultList | None
|
|
2445
|
+
NextToken: NextToken | None
|
|
2446
2446
|
|
|
2447
2447
|
|
|
2448
2448
|
class GetAggregateConfigRuleComplianceSummaryRequest(ServiceRequest):
|
|
2449
2449
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
2450
|
-
Filters:
|
|
2451
|
-
GroupByKey:
|
|
2452
|
-
Limit:
|
|
2453
|
-
NextToken:
|
|
2450
|
+
Filters: ConfigRuleComplianceSummaryFilters | None
|
|
2451
|
+
GroupByKey: ConfigRuleComplianceSummaryGroupKey | None
|
|
2452
|
+
Limit: GroupByAPILimit | None
|
|
2453
|
+
NextToken: NextToken | None
|
|
2454
2454
|
|
|
2455
2455
|
|
|
2456
2456
|
class GetAggregateConfigRuleComplianceSummaryResponse(TypedDict, total=False):
|
|
2457
|
-
GroupByKey:
|
|
2458
|
-
AggregateComplianceCounts:
|
|
2459
|
-
NextToken:
|
|
2457
|
+
GroupByKey: StringWithCharLimit256 | None
|
|
2458
|
+
AggregateComplianceCounts: AggregateComplianceCountList | None
|
|
2459
|
+
NextToken: NextToken | None
|
|
2460
2460
|
|
|
2461
2461
|
|
|
2462
2462
|
class GetAggregateConformancePackComplianceSummaryRequest(ServiceRequest):
|
|
2463
2463
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
2464
|
-
Filters:
|
|
2465
|
-
GroupByKey:
|
|
2466
|
-
Limit:
|
|
2467
|
-
NextToken:
|
|
2464
|
+
Filters: AggregateConformancePackComplianceSummaryFilters | None
|
|
2465
|
+
GroupByKey: AggregateConformancePackComplianceSummaryGroupKey | None
|
|
2466
|
+
Limit: Limit | None
|
|
2467
|
+
NextToken: NextToken | None
|
|
2468
2468
|
|
|
2469
2469
|
|
|
2470
2470
|
class GetAggregateConformancePackComplianceSummaryResponse(TypedDict, total=False):
|
|
2471
|
-
AggregateConformancePackComplianceSummaries:
|
|
2472
|
-
AggregateConformancePackComplianceSummaryList
|
|
2473
|
-
|
|
2474
|
-
GroupByKey:
|
|
2475
|
-
NextToken:
|
|
2471
|
+
AggregateConformancePackComplianceSummaries: (
|
|
2472
|
+
AggregateConformancePackComplianceSummaryList | None
|
|
2473
|
+
)
|
|
2474
|
+
GroupByKey: StringWithCharLimit256 | None
|
|
2475
|
+
NextToken: NextToken | None
|
|
2476
2476
|
|
|
2477
2477
|
|
|
2478
2478
|
class ResourceCountFilters(TypedDict, total=False):
|
|
2479
|
-
ResourceType:
|
|
2480
|
-
AccountId:
|
|
2481
|
-
Region:
|
|
2479
|
+
ResourceType: ResourceType | None
|
|
2480
|
+
AccountId: AccountId | None
|
|
2481
|
+
Region: AwsRegion | None
|
|
2482
2482
|
|
|
2483
2483
|
|
|
2484
2484
|
class GetAggregateDiscoveredResourceCountsRequest(ServiceRequest):
|
|
2485
2485
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
2486
|
-
Filters:
|
|
2487
|
-
GroupByKey:
|
|
2488
|
-
Limit:
|
|
2489
|
-
NextToken:
|
|
2486
|
+
Filters: ResourceCountFilters | None
|
|
2487
|
+
GroupByKey: ResourceCountGroupKey | None
|
|
2488
|
+
Limit: GroupByAPILimit | None
|
|
2489
|
+
NextToken: NextToken | None
|
|
2490
2490
|
|
|
2491
2491
|
|
|
2492
2492
|
Long = int
|
|
@@ -2497,14 +2497,14 @@ class GroupedResourceCount(TypedDict, total=False):
|
|
|
2497
2497
|
ResourceCount: Long
|
|
2498
2498
|
|
|
2499
2499
|
|
|
2500
|
-
GroupedResourceCountList =
|
|
2500
|
+
GroupedResourceCountList = list[GroupedResourceCount]
|
|
2501
2501
|
|
|
2502
2502
|
|
|
2503
2503
|
class GetAggregateDiscoveredResourceCountsResponse(TypedDict, total=False):
|
|
2504
2504
|
TotalDiscoveredResources: Long
|
|
2505
|
-
GroupByKey:
|
|
2506
|
-
GroupedResourceCounts:
|
|
2507
|
-
NextToken:
|
|
2505
|
+
GroupByKey: StringWithCharLimit256 | None
|
|
2506
|
+
GroupedResourceCounts: GroupedResourceCountList | None
|
|
2507
|
+
NextToken: NextToken | None
|
|
2508
2508
|
|
|
2509
2509
|
|
|
2510
2510
|
class GetAggregateResourceConfigRequest(ServiceRequest):
|
|
@@ -2513,159 +2513,157 @@ class GetAggregateResourceConfigRequest(ServiceRequest):
|
|
|
2513
2513
|
|
|
2514
2514
|
|
|
2515
2515
|
class GetAggregateResourceConfigResponse(TypedDict, total=False):
|
|
2516
|
-
ConfigurationItem:
|
|
2516
|
+
ConfigurationItem: ConfigurationItem | None
|
|
2517
2517
|
|
|
2518
2518
|
|
|
2519
2519
|
class GetComplianceDetailsByConfigRuleRequest(ServiceRequest):
|
|
2520
2520
|
ConfigRuleName: StringWithCharLimit64
|
|
2521
|
-
ComplianceTypes:
|
|
2522
|
-
Limit:
|
|
2523
|
-
NextToken:
|
|
2521
|
+
ComplianceTypes: ComplianceTypes | None
|
|
2522
|
+
Limit: Limit | None
|
|
2523
|
+
NextToken: NextToken | None
|
|
2524
2524
|
|
|
2525
2525
|
|
|
2526
2526
|
class GetComplianceDetailsByConfigRuleResponse(TypedDict, total=False):
|
|
2527
|
-
EvaluationResults:
|
|
2528
|
-
NextToken:
|
|
2527
|
+
EvaluationResults: EvaluationResults | None
|
|
2528
|
+
NextToken: NextToken | None
|
|
2529
2529
|
|
|
2530
2530
|
|
|
2531
2531
|
class GetComplianceDetailsByResourceRequest(ServiceRequest):
|
|
2532
|
-
ResourceType:
|
|
2533
|
-
ResourceId:
|
|
2534
|
-
ComplianceTypes:
|
|
2535
|
-
NextToken:
|
|
2536
|
-
ResourceEvaluationId:
|
|
2532
|
+
ResourceType: StringWithCharLimit256 | None
|
|
2533
|
+
ResourceId: BaseResourceId | None
|
|
2534
|
+
ComplianceTypes: ComplianceTypes | None
|
|
2535
|
+
NextToken: String | None
|
|
2536
|
+
ResourceEvaluationId: ResourceEvaluationId | None
|
|
2537
2537
|
|
|
2538
2538
|
|
|
2539
2539
|
class GetComplianceDetailsByResourceResponse(TypedDict, total=False):
|
|
2540
|
-
EvaluationResults:
|
|
2541
|
-
NextToken:
|
|
2540
|
+
EvaluationResults: EvaluationResults | None
|
|
2541
|
+
NextToken: String | None
|
|
2542
2542
|
|
|
2543
2543
|
|
|
2544
2544
|
class GetComplianceSummaryByConfigRuleResponse(TypedDict, total=False):
|
|
2545
|
-
ComplianceSummary:
|
|
2545
|
+
ComplianceSummary: ComplianceSummary | None
|
|
2546
2546
|
|
|
2547
2547
|
|
|
2548
|
-
ResourceTypes =
|
|
2548
|
+
ResourceTypes = list[StringWithCharLimit256]
|
|
2549
2549
|
|
|
2550
2550
|
|
|
2551
2551
|
class GetComplianceSummaryByResourceTypeRequest(ServiceRequest):
|
|
2552
|
-
ResourceTypes:
|
|
2552
|
+
ResourceTypes: ResourceTypes | None
|
|
2553
2553
|
|
|
2554
2554
|
|
|
2555
2555
|
class GetComplianceSummaryByResourceTypeResponse(TypedDict, total=False):
|
|
2556
|
-
ComplianceSummariesByResourceType:
|
|
2556
|
+
ComplianceSummariesByResourceType: ComplianceSummariesByResourceType | None
|
|
2557
2557
|
|
|
2558
2558
|
|
|
2559
2559
|
class GetConformancePackComplianceDetailsRequest(ServiceRequest):
|
|
2560
2560
|
ConformancePackName: ConformancePackName
|
|
2561
|
-
Filters:
|
|
2562
|
-
Limit:
|
|
2563
|
-
NextToken:
|
|
2561
|
+
Filters: ConformancePackEvaluationFilters | None
|
|
2562
|
+
Limit: GetConformancePackComplianceDetailsLimit | None
|
|
2563
|
+
NextToken: NextToken | None
|
|
2564
2564
|
|
|
2565
2565
|
|
|
2566
2566
|
class GetConformancePackComplianceDetailsResponse(TypedDict, total=False):
|
|
2567
2567
|
ConformancePackName: ConformancePackName
|
|
2568
|
-
ConformancePackRuleEvaluationResults:
|
|
2569
|
-
NextToken:
|
|
2568
|
+
ConformancePackRuleEvaluationResults: ConformancePackRuleEvaluationResultsList | None
|
|
2569
|
+
NextToken: NextToken | None
|
|
2570
2570
|
|
|
2571
2571
|
|
|
2572
2572
|
class GetConformancePackComplianceSummaryRequest(ServiceRequest):
|
|
2573
2573
|
ConformancePackNames: ConformancePackNamesToSummarizeList
|
|
2574
|
-
Limit:
|
|
2575
|
-
NextToken:
|
|
2574
|
+
Limit: PageSizeLimit | None
|
|
2575
|
+
NextToken: NextToken | None
|
|
2576
2576
|
|
|
2577
2577
|
|
|
2578
2578
|
class GetConformancePackComplianceSummaryResponse(TypedDict, total=False):
|
|
2579
|
-
ConformancePackComplianceSummaryList:
|
|
2580
|
-
NextToken:
|
|
2579
|
+
ConformancePackComplianceSummaryList: ConformancePackComplianceSummaryList | None
|
|
2580
|
+
NextToken: NextToken | None
|
|
2581
2581
|
|
|
2582
2582
|
|
|
2583
2583
|
class GetCustomRulePolicyRequest(ServiceRequest):
|
|
2584
|
-
ConfigRuleName:
|
|
2584
|
+
ConfigRuleName: ConfigRuleName | None
|
|
2585
2585
|
|
|
2586
2586
|
|
|
2587
2587
|
class GetCustomRulePolicyResponse(TypedDict, total=False):
|
|
2588
|
-
PolicyText:
|
|
2588
|
+
PolicyText: PolicyText | None
|
|
2589
2589
|
|
|
2590
2590
|
|
|
2591
2591
|
class GetDiscoveredResourceCountsRequest(ServiceRequest):
|
|
2592
|
-
resourceTypes:
|
|
2593
|
-
limit:
|
|
2594
|
-
nextToken:
|
|
2592
|
+
resourceTypes: ResourceTypes | None
|
|
2593
|
+
limit: Limit | None
|
|
2594
|
+
nextToken: NextToken | None
|
|
2595
2595
|
|
|
2596
2596
|
|
|
2597
2597
|
class ResourceCount(TypedDict, total=False):
|
|
2598
|
-
resourceType:
|
|
2599
|
-
count:
|
|
2598
|
+
resourceType: ResourceType | None
|
|
2599
|
+
count: Long | None
|
|
2600
2600
|
|
|
2601
2601
|
|
|
2602
|
-
ResourceCounts =
|
|
2602
|
+
ResourceCounts = list[ResourceCount]
|
|
2603
2603
|
|
|
2604
2604
|
|
|
2605
2605
|
class GetDiscoveredResourceCountsResponse(TypedDict, total=False):
|
|
2606
|
-
totalDiscoveredResources:
|
|
2607
|
-
resourceCounts:
|
|
2608
|
-
nextToken:
|
|
2606
|
+
totalDiscoveredResources: Long | None
|
|
2607
|
+
resourceCounts: ResourceCounts | None
|
|
2608
|
+
nextToken: NextToken | None
|
|
2609
2609
|
|
|
2610
2610
|
|
|
2611
2611
|
class StatusDetailFilters(TypedDict, total=False):
|
|
2612
|
-
AccountId:
|
|
2613
|
-
MemberAccountRuleStatus:
|
|
2612
|
+
AccountId: AccountId | None
|
|
2613
|
+
MemberAccountRuleStatus: MemberAccountRuleStatus | None
|
|
2614
2614
|
|
|
2615
2615
|
|
|
2616
2616
|
class GetOrganizationConfigRuleDetailedStatusRequest(ServiceRequest):
|
|
2617
2617
|
OrganizationConfigRuleName: OrganizationConfigRuleName
|
|
2618
|
-
Filters:
|
|
2619
|
-
Limit:
|
|
2620
|
-
NextToken:
|
|
2618
|
+
Filters: StatusDetailFilters | None
|
|
2619
|
+
Limit: CosmosPageLimit | None
|
|
2620
|
+
NextToken: String | None
|
|
2621
2621
|
|
|
2622
2622
|
|
|
2623
2623
|
class MemberAccountStatus(TypedDict, total=False):
|
|
2624
2624
|
AccountId: AccountId
|
|
2625
2625
|
ConfigRuleName: StringWithCharLimit64
|
|
2626
2626
|
MemberAccountRuleStatus: MemberAccountRuleStatus
|
|
2627
|
-
ErrorCode:
|
|
2628
|
-
ErrorMessage:
|
|
2629
|
-
LastUpdateTime:
|
|
2627
|
+
ErrorCode: String | None
|
|
2628
|
+
ErrorMessage: String | None
|
|
2629
|
+
LastUpdateTime: Date | None
|
|
2630
2630
|
|
|
2631
2631
|
|
|
2632
|
-
OrganizationConfigRuleDetailedStatus =
|
|
2632
|
+
OrganizationConfigRuleDetailedStatus = list[MemberAccountStatus]
|
|
2633
2633
|
|
|
2634
2634
|
|
|
2635
2635
|
class GetOrganizationConfigRuleDetailedStatusResponse(TypedDict, total=False):
|
|
2636
|
-
OrganizationConfigRuleDetailedStatus:
|
|
2637
|
-
NextToken:
|
|
2636
|
+
OrganizationConfigRuleDetailedStatus: OrganizationConfigRuleDetailedStatus | None
|
|
2637
|
+
NextToken: String | None
|
|
2638
2638
|
|
|
2639
2639
|
|
|
2640
2640
|
class OrganizationResourceDetailedStatusFilters(TypedDict, total=False):
|
|
2641
|
-
AccountId:
|
|
2642
|
-
Status:
|
|
2641
|
+
AccountId: AccountId | None
|
|
2642
|
+
Status: OrganizationResourceDetailedStatus | None
|
|
2643
2643
|
|
|
2644
2644
|
|
|
2645
2645
|
class GetOrganizationConformancePackDetailedStatusRequest(ServiceRequest):
|
|
2646
2646
|
OrganizationConformancePackName: OrganizationConformancePackName
|
|
2647
|
-
Filters:
|
|
2648
|
-
Limit:
|
|
2649
|
-
NextToken:
|
|
2647
|
+
Filters: OrganizationResourceDetailedStatusFilters | None
|
|
2648
|
+
Limit: CosmosPageLimit | None
|
|
2649
|
+
NextToken: String | None
|
|
2650
2650
|
|
|
2651
2651
|
|
|
2652
2652
|
class OrganizationConformancePackDetailedStatus(TypedDict, total=False):
|
|
2653
2653
|
AccountId: AccountId
|
|
2654
2654
|
ConformancePackName: StringWithCharLimit256
|
|
2655
2655
|
Status: OrganizationResourceDetailedStatus
|
|
2656
|
-
ErrorCode:
|
|
2657
|
-
ErrorMessage:
|
|
2658
|
-
LastUpdateTime:
|
|
2656
|
+
ErrorCode: String | None
|
|
2657
|
+
ErrorMessage: String | None
|
|
2658
|
+
LastUpdateTime: Date | None
|
|
2659
2659
|
|
|
2660
2660
|
|
|
2661
|
-
OrganizationConformancePackDetailedStatuses =
|
|
2661
|
+
OrganizationConformancePackDetailedStatuses = list[OrganizationConformancePackDetailedStatus]
|
|
2662
2662
|
|
|
2663
2663
|
|
|
2664
2664
|
class GetOrganizationConformancePackDetailedStatusResponse(TypedDict, total=False):
|
|
2665
|
-
OrganizationConformancePackDetailedStatuses:
|
|
2666
|
-
|
|
2667
|
-
]
|
|
2668
|
-
NextToken: Optional[String]
|
|
2665
|
+
OrganizationConformancePackDetailedStatuses: OrganizationConformancePackDetailedStatuses | None
|
|
2666
|
+
NextToken: String | None
|
|
2669
2667
|
|
|
2670
2668
|
|
|
2671
2669
|
class GetOrganizationCustomRulePolicyRequest(ServiceRequest):
|
|
@@ -2673,7 +2671,7 @@ class GetOrganizationCustomRulePolicyRequest(ServiceRequest):
|
|
|
2673
2671
|
|
|
2674
2672
|
|
|
2675
2673
|
class GetOrganizationCustomRulePolicyResponse(TypedDict, total=False):
|
|
2676
|
-
PolicyText:
|
|
2674
|
+
PolicyText: PolicyText | None
|
|
2677
2675
|
|
|
2678
2676
|
|
|
2679
2677
|
LaterTime = datetime
|
|
@@ -2682,16 +2680,16 @@ LaterTime = datetime
|
|
|
2682
2680
|
class GetResourceConfigHistoryRequest(ServiceRequest):
|
|
2683
2681
|
resourceType: ResourceType
|
|
2684
2682
|
resourceId: ResourceId
|
|
2685
|
-
laterTime:
|
|
2686
|
-
earlierTime:
|
|
2687
|
-
chronologicalOrder:
|
|
2688
|
-
limit:
|
|
2689
|
-
nextToken:
|
|
2683
|
+
laterTime: LaterTime | None
|
|
2684
|
+
earlierTime: EarlierTime | None
|
|
2685
|
+
chronologicalOrder: ChronologicalOrder | None
|
|
2686
|
+
limit: Limit | None
|
|
2687
|
+
nextToken: NextToken | None
|
|
2690
2688
|
|
|
2691
2689
|
|
|
2692
2690
|
class GetResourceConfigHistoryResponse(TypedDict, total=False):
|
|
2693
|
-
configurationItems:
|
|
2694
|
-
nextToken:
|
|
2691
|
+
configurationItems: ConfigurationItemList | None
|
|
2692
|
+
nextToken: NextToken | None
|
|
2695
2693
|
|
|
2696
2694
|
|
|
2697
2695
|
class GetResourceEvaluationSummaryRequest(ServiceRequest):
|
|
@@ -2702,17 +2700,17 @@ class ResourceDetails(TypedDict, total=False):
|
|
|
2702
2700
|
ResourceId: BaseResourceId
|
|
2703
2701
|
ResourceType: StringWithCharLimit256
|
|
2704
2702
|
ResourceConfiguration: ResourceConfiguration
|
|
2705
|
-
ResourceConfigurationSchemaType:
|
|
2703
|
+
ResourceConfigurationSchemaType: ResourceConfigurationSchemaType | None
|
|
2706
2704
|
|
|
2707
2705
|
|
|
2708
2706
|
class GetResourceEvaluationSummaryResponse(TypedDict, total=False):
|
|
2709
|
-
ResourceEvaluationId:
|
|
2710
|
-
EvaluationMode:
|
|
2711
|
-
EvaluationStatus:
|
|
2712
|
-
EvaluationStartTimestamp:
|
|
2713
|
-
Compliance:
|
|
2714
|
-
EvaluationContext:
|
|
2715
|
-
ResourceDetails:
|
|
2707
|
+
ResourceEvaluationId: ResourceEvaluationId | None
|
|
2708
|
+
EvaluationMode: EvaluationMode | None
|
|
2709
|
+
EvaluationStatus: EvaluationStatus | None
|
|
2710
|
+
EvaluationStartTimestamp: Date | None
|
|
2711
|
+
Compliance: ComplianceType | None
|
|
2712
|
+
EvaluationContext: EvaluationContext | None
|
|
2713
|
+
ResourceDetails: ResourceDetails | None
|
|
2716
2714
|
|
|
2717
2715
|
|
|
2718
2716
|
class GetStoredQueryRequest(ServiceRequest):
|
|
@@ -2720,222 +2718,222 @@ class GetStoredQueryRequest(ServiceRequest):
|
|
|
2720
2718
|
|
|
2721
2719
|
|
|
2722
2720
|
class StoredQuery(TypedDict, total=False):
|
|
2723
|
-
QueryId:
|
|
2724
|
-
QueryArn:
|
|
2721
|
+
QueryId: QueryId | None
|
|
2722
|
+
QueryArn: QueryArn | None
|
|
2725
2723
|
QueryName: QueryName
|
|
2726
|
-
Description:
|
|
2727
|
-
Expression:
|
|
2724
|
+
Description: QueryDescription | None
|
|
2725
|
+
Expression: QueryExpression | None
|
|
2728
2726
|
|
|
2729
2727
|
|
|
2730
2728
|
class GetStoredQueryResponse(TypedDict, total=False):
|
|
2731
|
-
StoredQuery:
|
|
2729
|
+
StoredQuery: StoredQuery | None
|
|
2732
2730
|
|
|
2733
2731
|
|
|
2734
2732
|
class ResourceFilters(TypedDict, total=False):
|
|
2735
|
-
AccountId:
|
|
2736
|
-
ResourceId:
|
|
2737
|
-
ResourceName:
|
|
2738
|
-
Region:
|
|
2733
|
+
AccountId: AccountId | None
|
|
2734
|
+
ResourceId: ResourceId | None
|
|
2735
|
+
ResourceName: ResourceName | None
|
|
2736
|
+
Region: AwsRegion | None
|
|
2739
2737
|
|
|
2740
2738
|
|
|
2741
2739
|
class ListAggregateDiscoveredResourcesRequest(ServiceRequest):
|
|
2742
2740
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
2743
2741
|
ResourceType: ResourceType
|
|
2744
|
-
Filters:
|
|
2745
|
-
Limit:
|
|
2746
|
-
NextToken:
|
|
2742
|
+
Filters: ResourceFilters | None
|
|
2743
|
+
Limit: Limit | None
|
|
2744
|
+
NextToken: NextToken | None
|
|
2747
2745
|
|
|
2748
2746
|
|
|
2749
2747
|
class ListAggregateDiscoveredResourcesResponse(TypedDict, total=False):
|
|
2750
|
-
ResourceIdentifiers:
|
|
2751
|
-
NextToken:
|
|
2748
|
+
ResourceIdentifiers: DiscoveredResourceIdentifierList | None
|
|
2749
|
+
NextToken: NextToken | None
|
|
2752
2750
|
|
|
2753
2751
|
|
|
2754
2752
|
class ListConfigurationRecordersRequest(ServiceRequest):
|
|
2755
|
-
Filters:
|
|
2756
|
-
MaxResults:
|
|
2757
|
-
NextToken:
|
|
2753
|
+
Filters: ConfigurationRecorderFilterList | None
|
|
2754
|
+
MaxResults: MaxResults | None
|
|
2755
|
+
NextToken: NextToken | None
|
|
2758
2756
|
|
|
2759
2757
|
|
|
2760
2758
|
class ListConfigurationRecordersResponse(TypedDict, total=False):
|
|
2761
2759
|
ConfigurationRecorderSummaries: ConfigurationRecorderSummaries
|
|
2762
|
-
NextToken:
|
|
2760
|
+
NextToken: NextToken | None
|
|
2763
2761
|
|
|
2764
2762
|
|
|
2765
2763
|
class ListConformancePackComplianceScoresRequest(ServiceRequest):
|
|
2766
|
-
Filters:
|
|
2767
|
-
SortOrder:
|
|
2768
|
-
SortBy:
|
|
2769
|
-
Limit:
|
|
2770
|
-
NextToken:
|
|
2764
|
+
Filters: ConformancePackComplianceScoresFilters | None
|
|
2765
|
+
SortOrder: SortOrder | None
|
|
2766
|
+
SortBy: SortBy | None
|
|
2767
|
+
Limit: PageSizeLimit | None
|
|
2768
|
+
NextToken: NextToken | None
|
|
2771
2769
|
|
|
2772
2770
|
|
|
2773
2771
|
class ListConformancePackComplianceScoresResponse(TypedDict, total=False):
|
|
2774
|
-
NextToken:
|
|
2772
|
+
NextToken: NextToken | None
|
|
2775
2773
|
ConformancePackComplianceScores: ConformancePackComplianceScores
|
|
2776
2774
|
|
|
2777
2775
|
|
|
2778
|
-
ResourceIdList =
|
|
2776
|
+
ResourceIdList = list[ResourceId]
|
|
2779
2777
|
|
|
2780
2778
|
|
|
2781
2779
|
class ListDiscoveredResourcesRequest(ServiceRequest):
|
|
2782
2780
|
resourceType: ResourceType
|
|
2783
|
-
resourceIds:
|
|
2784
|
-
resourceName:
|
|
2785
|
-
limit:
|
|
2786
|
-
includeDeletedResources:
|
|
2787
|
-
nextToken:
|
|
2781
|
+
resourceIds: ResourceIdList | None
|
|
2782
|
+
resourceName: ResourceName | None
|
|
2783
|
+
limit: Limit | None
|
|
2784
|
+
includeDeletedResources: Boolean | None
|
|
2785
|
+
nextToken: NextToken | None
|
|
2788
2786
|
|
|
2789
2787
|
|
|
2790
2788
|
ResourceDeletionTime = datetime
|
|
2791
2789
|
|
|
2792
2790
|
|
|
2793
2791
|
class ResourceIdentifier(TypedDict, total=False):
|
|
2794
|
-
resourceType:
|
|
2795
|
-
resourceId:
|
|
2796
|
-
resourceName:
|
|
2797
|
-
resourceDeletionTime:
|
|
2792
|
+
resourceType: ResourceType | None
|
|
2793
|
+
resourceId: ResourceId | None
|
|
2794
|
+
resourceName: ResourceName | None
|
|
2795
|
+
resourceDeletionTime: ResourceDeletionTime | None
|
|
2798
2796
|
|
|
2799
2797
|
|
|
2800
|
-
ResourceIdentifierList =
|
|
2798
|
+
ResourceIdentifierList = list[ResourceIdentifier]
|
|
2801
2799
|
|
|
2802
2800
|
|
|
2803
2801
|
class ListDiscoveredResourcesResponse(TypedDict, total=False):
|
|
2804
|
-
resourceIdentifiers:
|
|
2805
|
-
nextToken:
|
|
2802
|
+
resourceIdentifiers: ResourceIdentifierList | None
|
|
2803
|
+
nextToken: NextToken | None
|
|
2806
2804
|
|
|
2807
2805
|
|
|
2808
2806
|
class TimeWindow(TypedDict, total=False):
|
|
2809
|
-
StartTime:
|
|
2810
|
-
EndTime:
|
|
2807
|
+
StartTime: Date | None
|
|
2808
|
+
EndTime: Date | None
|
|
2811
2809
|
|
|
2812
2810
|
|
|
2813
2811
|
class ResourceEvaluationFilters(TypedDict, total=False):
|
|
2814
|
-
EvaluationMode:
|
|
2815
|
-
TimeWindow:
|
|
2816
|
-
EvaluationContextIdentifier:
|
|
2812
|
+
EvaluationMode: EvaluationMode | None
|
|
2813
|
+
TimeWindow: TimeWindow | None
|
|
2814
|
+
EvaluationContextIdentifier: EvaluationContextIdentifier | None
|
|
2817
2815
|
|
|
2818
2816
|
|
|
2819
2817
|
class ListResourceEvaluationsRequest(ServiceRequest):
|
|
2820
|
-
Filters:
|
|
2821
|
-
Limit:
|
|
2822
|
-
NextToken:
|
|
2818
|
+
Filters: ResourceEvaluationFilters | None
|
|
2819
|
+
Limit: ListResourceEvaluationsPageItemLimit | None
|
|
2820
|
+
NextToken: String | None
|
|
2823
2821
|
|
|
2824
2822
|
|
|
2825
2823
|
class ResourceEvaluation(TypedDict, total=False):
|
|
2826
|
-
ResourceEvaluationId:
|
|
2827
|
-
EvaluationMode:
|
|
2828
|
-
EvaluationStartTimestamp:
|
|
2824
|
+
ResourceEvaluationId: ResourceEvaluationId | None
|
|
2825
|
+
EvaluationMode: EvaluationMode | None
|
|
2826
|
+
EvaluationStartTimestamp: Date | None
|
|
2829
2827
|
|
|
2830
2828
|
|
|
2831
|
-
ResourceEvaluations =
|
|
2829
|
+
ResourceEvaluations = list[ResourceEvaluation]
|
|
2832
2830
|
|
|
2833
2831
|
|
|
2834
2832
|
class ListResourceEvaluationsResponse(TypedDict, total=False):
|
|
2835
|
-
ResourceEvaluations:
|
|
2836
|
-
NextToken:
|
|
2833
|
+
ResourceEvaluations: ResourceEvaluations | None
|
|
2834
|
+
NextToken: String | None
|
|
2837
2835
|
|
|
2838
2836
|
|
|
2839
2837
|
class ListStoredQueriesRequest(ServiceRequest):
|
|
2840
|
-
NextToken:
|
|
2841
|
-
MaxResults:
|
|
2838
|
+
NextToken: String | None
|
|
2839
|
+
MaxResults: Limit | None
|
|
2842
2840
|
|
|
2843
2841
|
|
|
2844
2842
|
class StoredQueryMetadata(TypedDict, total=False):
|
|
2845
2843
|
QueryId: QueryId
|
|
2846
2844
|
QueryArn: QueryArn
|
|
2847
2845
|
QueryName: QueryName
|
|
2848
|
-
Description:
|
|
2846
|
+
Description: QueryDescription | None
|
|
2849
2847
|
|
|
2850
2848
|
|
|
2851
|
-
StoredQueryMetadataList =
|
|
2849
|
+
StoredQueryMetadataList = list[StoredQueryMetadata]
|
|
2852
2850
|
|
|
2853
2851
|
|
|
2854
2852
|
class ListStoredQueriesResponse(TypedDict, total=False):
|
|
2855
|
-
StoredQueryMetadata:
|
|
2856
|
-
NextToken:
|
|
2853
|
+
StoredQueryMetadata: StoredQueryMetadataList | None
|
|
2854
|
+
NextToken: String | None
|
|
2857
2855
|
|
|
2858
2856
|
|
|
2859
2857
|
class ListTagsForResourceRequest(ServiceRequest):
|
|
2860
2858
|
ResourceArn: AmazonResourceName
|
|
2861
|
-
Limit:
|
|
2862
|
-
NextToken:
|
|
2859
|
+
Limit: Limit | None
|
|
2860
|
+
NextToken: NextToken | None
|
|
2863
2861
|
|
|
2864
2862
|
|
|
2865
2863
|
class Tag(TypedDict, total=False):
|
|
2866
|
-
Key:
|
|
2867
|
-
Value:
|
|
2864
|
+
Key: TagKey | None
|
|
2865
|
+
Value: TagValue | None
|
|
2868
2866
|
|
|
2869
2867
|
|
|
2870
|
-
TagList =
|
|
2868
|
+
TagList = list[Tag]
|
|
2871
2869
|
|
|
2872
2870
|
|
|
2873
2871
|
class ListTagsForResourceResponse(TypedDict, total=False):
|
|
2874
|
-
Tags:
|
|
2875
|
-
NextToken:
|
|
2872
|
+
Tags: TagList | None
|
|
2873
|
+
NextToken: NextToken | None
|
|
2876
2874
|
|
|
2877
2875
|
|
|
2878
2876
|
class OrganizationCustomPolicyRuleMetadata(TypedDict, total=False):
|
|
2879
|
-
Description:
|
|
2880
|
-
OrganizationConfigRuleTriggerTypes:
|
|
2881
|
-
InputParameters:
|
|
2882
|
-
MaximumExecutionFrequency:
|
|
2883
|
-
ResourceTypesScope:
|
|
2884
|
-
ResourceIdScope:
|
|
2885
|
-
TagKeyScope:
|
|
2886
|
-
TagValueScope:
|
|
2877
|
+
Description: StringWithCharLimit256Min0 | None
|
|
2878
|
+
OrganizationConfigRuleTriggerTypes: OrganizationConfigRuleTriggerTypeNoSNs | None
|
|
2879
|
+
InputParameters: StringWithCharLimit2048 | None
|
|
2880
|
+
MaximumExecutionFrequency: MaximumExecutionFrequency | None
|
|
2881
|
+
ResourceTypesScope: ResourceTypesScope | None
|
|
2882
|
+
ResourceIdScope: StringWithCharLimit768 | None
|
|
2883
|
+
TagKeyScope: StringWithCharLimit128 | None
|
|
2884
|
+
TagValueScope: StringWithCharLimit256 | None
|
|
2887
2885
|
PolicyRuntime: PolicyRuntime
|
|
2888
2886
|
PolicyText: PolicyText
|
|
2889
|
-
DebugLogDeliveryAccounts:
|
|
2887
|
+
DebugLogDeliveryAccounts: DebugLogDeliveryAccounts | None
|
|
2890
2888
|
|
|
2891
2889
|
|
|
2892
|
-
TagsList =
|
|
2890
|
+
TagsList = list[Tag]
|
|
2893
2891
|
|
|
2894
2892
|
|
|
2895
2893
|
class PutAggregationAuthorizationRequest(ServiceRequest):
|
|
2896
2894
|
AuthorizedAccountId: AccountId
|
|
2897
2895
|
AuthorizedAwsRegion: AwsRegion
|
|
2898
|
-
Tags:
|
|
2896
|
+
Tags: TagsList | None
|
|
2899
2897
|
|
|
2900
2898
|
|
|
2901
2899
|
class PutAggregationAuthorizationResponse(TypedDict, total=False):
|
|
2902
|
-
AggregationAuthorization:
|
|
2900
|
+
AggregationAuthorization: AggregationAuthorization | None
|
|
2903
2901
|
|
|
2904
2902
|
|
|
2905
2903
|
class PutConfigRuleRequest(ServiceRequest):
|
|
2906
2904
|
ConfigRule: ConfigRule
|
|
2907
|
-
Tags:
|
|
2905
|
+
Tags: TagsList | None
|
|
2908
2906
|
|
|
2909
2907
|
|
|
2910
2908
|
class PutConfigurationAggregatorRequest(ServiceRequest):
|
|
2911
2909
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
2912
|
-
AccountAggregationSources:
|
|
2913
|
-
OrganizationAggregationSource:
|
|
2914
|
-
Tags:
|
|
2915
|
-
AggregatorFilters:
|
|
2910
|
+
AccountAggregationSources: AccountAggregationSourceList | None
|
|
2911
|
+
OrganizationAggregationSource: OrganizationAggregationSource | None
|
|
2912
|
+
Tags: TagsList | None
|
|
2913
|
+
AggregatorFilters: AggregatorFilters | None
|
|
2916
2914
|
|
|
2917
2915
|
|
|
2918
2916
|
class PutConfigurationAggregatorResponse(TypedDict, total=False):
|
|
2919
|
-
ConfigurationAggregator:
|
|
2917
|
+
ConfigurationAggregator: ConfigurationAggregator | None
|
|
2920
2918
|
|
|
2921
2919
|
|
|
2922
2920
|
class PutConfigurationRecorderRequest(ServiceRequest):
|
|
2923
2921
|
ConfigurationRecorder: ConfigurationRecorder
|
|
2924
|
-
Tags:
|
|
2922
|
+
Tags: TagsList | None
|
|
2925
2923
|
|
|
2926
2924
|
|
|
2927
2925
|
class PutConformancePackRequest(ServiceRequest):
|
|
2928
2926
|
ConformancePackName: ConformancePackName
|
|
2929
|
-
TemplateS3Uri:
|
|
2930
|
-
TemplateBody:
|
|
2931
|
-
DeliveryS3Bucket:
|
|
2932
|
-
DeliveryS3KeyPrefix:
|
|
2933
|
-
ConformancePackInputParameters:
|
|
2934
|
-
TemplateSSMDocumentDetails:
|
|
2927
|
+
TemplateS3Uri: TemplateS3Uri | None
|
|
2928
|
+
TemplateBody: TemplateBody | None
|
|
2929
|
+
DeliveryS3Bucket: DeliveryS3Bucket | None
|
|
2930
|
+
DeliveryS3KeyPrefix: DeliveryS3KeyPrefix | None
|
|
2931
|
+
ConformancePackInputParameters: ConformancePackInputParameters | None
|
|
2932
|
+
TemplateSSMDocumentDetails: TemplateSSMDocumentDetails | None
|
|
2935
2933
|
|
|
2936
2934
|
|
|
2937
2935
|
class PutConformancePackResponse(TypedDict, total=False):
|
|
2938
|
-
ConformancePackArn:
|
|
2936
|
+
ConformancePackArn: ConformancePackArn | None
|
|
2939
2937
|
|
|
2940
2938
|
|
|
2941
2939
|
class PutDeliveryChannelRequest(ServiceRequest):
|
|
@@ -2943,13 +2941,13 @@ class PutDeliveryChannelRequest(ServiceRequest):
|
|
|
2943
2941
|
|
|
2944
2942
|
|
|
2945
2943
|
class PutEvaluationsRequest(ServiceRequest):
|
|
2946
|
-
Evaluations:
|
|
2944
|
+
Evaluations: Evaluations | None
|
|
2947
2945
|
ResultToken: String
|
|
2948
|
-
TestMode:
|
|
2946
|
+
TestMode: Boolean | None
|
|
2949
2947
|
|
|
2950
2948
|
|
|
2951
2949
|
class PutEvaluationsResponse(TypedDict, total=False):
|
|
2952
|
-
FailedEvaluations:
|
|
2950
|
+
FailedEvaluations: Evaluations | None
|
|
2953
2951
|
|
|
2954
2952
|
|
|
2955
2953
|
class PutExternalEvaluationRequest(ServiceRequest):
|
|
@@ -2963,28 +2961,28 @@ class PutExternalEvaluationResponse(TypedDict, total=False):
|
|
|
2963
2961
|
|
|
2964
2962
|
class PutOrganizationConfigRuleRequest(ServiceRequest):
|
|
2965
2963
|
OrganizationConfigRuleName: OrganizationConfigRuleName
|
|
2966
|
-
OrganizationManagedRuleMetadata:
|
|
2967
|
-
OrganizationCustomRuleMetadata:
|
|
2968
|
-
ExcludedAccounts:
|
|
2969
|
-
OrganizationCustomPolicyRuleMetadata:
|
|
2964
|
+
OrganizationManagedRuleMetadata: OrganizationManagedRuleMetadata | None
|
|
2965
|
+
OrganizationCustomRuleMetadata: OrganizationCustomRuleMetadata | None
|
|
2966
|
+
ExcludedAccounts: ExcludedAccounts | None
|
|
2967
|
+
OrganizationCustomPolicyRuleMetadata: OrganizationCustomPolicyRuleMetadata | None
|
|
2970
2968
|
|
|
2971
2969
|
|
|
2972
2970
|
class PutOrganizationConfigRuleResponse(TypedDict, total=False):
|
|
2973
|
-
OrganizationConfigRuleArn:
|
|
2971
|
+
OrganizationConfigRuleArn: StringWithCharLimit256 | None
|
|
2974
2972
|
|
|
2975
2973
|
|
|
2976
2974
|
class PutOrganizationConformancePackRequest(ServiceRequest):
|
|
2977
2975
|
OrganizationConformancePackName: OrganizationConformancePackName
|
|
2978
|
-
TemplateS3Uri:
|
|
2979
|
-
TemplateBody:
|
|
2980
|
-
DeliveryS3Bucket:
|
|
2981
|
-
DeliveryS3KeyPrefix:
|
|
2982
|
-
ConformancePackInputParameters:
|
|
2983
|
-
ExcludedAccounts:
|
|
2976
|
+
TemplateS3Uri: TemplateS3Uri | None
|
|
2977
|
+
TemplateBody: TemplateBody | None
|
|
2978
|
+
DeliveryS3Bucket: DeliveryS3Bucket | None
|
|
2979
|
+
DeliveryS3KeyPrefix: DeliveryS3KeyPrefix | None
|
|
2980
|
+
ConformancePackInputParameters: ConformancePackInputParameters | None
|
|
2981
|
+
ExcludedAccounts: ExcludedAccounts | None
|
|
2984
2982
|
|
|
2985
2983
|
|
|
2986
2984
|
class PutOrganizationConformancePackResponse(TypedDict, total=False):
|
|
2987
|
-
OrganizationConformancePackArn:
|
|
2985
|
+
OrganizationConformancePackArn: StringWithCharLimit256 | None
|
|
2988
2986
|
|
|
2989
2987
|
|
|
2990
2988
|
class PutRemediationConfigurationsRequest(ServiceRequest):
|
|
@@ -2992,27 +2990,27 @@ class PutRemediationConfigurationsRequest(ServiceRequest):
|
|
|
2992
2990
|
|
|
2993
2991
|
|
|
2994
2992
|
class PutRemediationConfigurationsResponse(TypedDict, total=False):
|
|
2995
|
-
FailedBatches:
|
|
2993
|
+
FailedBatches: FailedRemediationBatches | None
|
|
2996
2994
|
|
|
2997
2995
|
|
|
2998
2996
|
class PutRemediationExceptionsRequest(ServiceRequest):
|
|
2999
2997
|
ConfigRuleName: ConfigRuleName
|
|
3000
2998
|
ResourceKeys: RemediationExceptionResourceKeys
|
|
3001
|
-
Message:
|
|
3002
|
-
ExpirationTime:
|
|
2999
|
+
Message: StringWithCharLimit1024 | None
|
|
3000
|
+
ExpirationTime: Date | None
|
|
3003
3001
|
|
|
3004
3002
|
|
|
3005
3003
|
class PutRemediationExceptionsResponse(TypedDict, total=False):
|
|
3006
|
-
FailedBatches:
|
|
3004
|
+
FailedBatches: FailedRemediationExceptionBatches | None
|
|
3007
3005
|
|
|
3008
3006
|
|
|
3009
3007
|
class PutResourceConfigRequest(ServiceRequest):
|
|
3010
3008
|
ResourceType: ResourceTypeString
|
|
3011
3009
|
SchemaVersionId: SchemaVersionId
|
|
3012
3010
|
ResourceId: ResourceId
|
|
3013
|
-
ResourceName:
|
|
3011
|
+
ResourceName: ResourceName | None
|
|
3014
3012
|
Configuration: Configuration
|
|
3015
|
-
Tags:
|
|
3013
|
+
Tags: Tags | None
|
|
3016
3014
|
|
|
3017
3015
|
|
|
3018
3016
|
class PutRetentionConfigurationRequest(ServiceRequest):
|
|
@@ -3020,64 +3018,64 @@ class PutRetentionConfigurationRequest(ServiceRequest):
|
|
|
3020
3018
|
|
|
3021
3019
|
|
|
3022
3020
|
class PutRetentionConfigurationResponse(TypedDict, total=False):
|
|
3023
|
-
RetentionConfiguration:
|
|
3021
|
+
RetentionConfiguration: RetentionConfiguration | None
|
|
3024
3022
|
|
|
3025
3023
|
|
|
3026
3024
|
class PutServiceLinkedConfigurationRecorderRequest(ServiceRequest):
|
|
3027
3025
|
ServicePrincipal: ServicePrincipal
|
|
3028
|
-
Tags:
|
|
3026
|
+
Tags: TagsList | None
|
|
3029
3027
|
|
|
3030
3028
|
|
|
3031
3029
|
class PutServiceLinkedConfigurationRecorderResponse(TypedDict, total=False):
|
|
3032
|
-
Arn:
|
|
3033
|
-
Name:
|
|
3030
|
+
Arn: AmazonResourceName | None
|
|
3031
|
+
Name: RecorderName | None
|
|
3034
3032
|
|
|
3035
3033
|
|
|
3036
3034
|
class PutStoredQueryRequest(ServiceRequest):
|
|
3037
3035
|
StoredQuery: StoredQuery
|
|
3038
|
-
Tags:
|
|
3036
|
+
Tags: TagsList | None
|
|
3039
3037
|
|
|
3040
3038
|
|
|
3041
3039
|
class PutStoredQueryResponse(TypedDict, total=False):
|
|
3042
|
-
QueryArn:
|
|
3040
|
+
QueryArn: QueryArn | None
|
|
3043
3041
|
|
|
3044
3042
|
|
|
3045
3043
|
class QueryInfo(TypedDict, total=False):
|
|
3046
|
-
SelectFields:
|
|
3044
|
+
SelectFields: FieldInfoList | None
|
|
3047
3045
|
|
|
3048
3046
|
|
|
3049
|
-
ReevaluateConfigRuleNames =
|
|
3050
|
-
Results =
|
|
3047
|
+
ReevaluateConfigRuleNames = list[ConfigRuleName]
|
|
3048
|
+
Results = list[String]
|
|
3051
3049
|
|
|
3052
3050
|
|
|
3053
3051
|
class SelectAggregateResourceConfigRequest(ServiceRequest):
|
|
3054
3052
|
Expression: Expression
|
|
3055
3053
|
ConfigurationAggregatorName: ConfigurationAggregatorName
|
|
3056
|
-
Limit:
|
|
3057
|
-
MaxResults:
|
|
3058
|
-
NextToken:
|
|
3054
|
+
Limit: Limit | None
|
|
3055
|
+
MaxResults: Limit | None
|
|
3056
|
+
NextToken: NextToken | None
|
|
3059
3057
|
|
|
3060
3058
|
|
|
3061
3059
|
class SelectAggregateResourceConfigResponse(TypedDict, total=False):
|
|
3062
|
-
Results:
|
|
3063
|
-
QueryInfo:
|
|
3064
|
-
NextToken:
|
|
3060
|
+
Results: Results | None
|
|
3061
|
+
QueryInfo: QueryInfo | None
|
|
3062
|
+
NextToken: NextToken | None
|
|
3065
3063
|
|
|
3066
3064
|
|
|
3067
3065
|
class SelectResourceConfigRequest(ServiceRequest):
|
|
3068
3066
|
Expression: Expression
|
|
3069
|
-
Limit:
|
|
3070
|
-
NextToken:
|
|
3067
|
+
Limit: Limit | None
|
|
3068
|
+
NextToken: NextToken | None
|
|
3071
3069
|
|
|
3072
3070
|
|
|
3073
3071
|
class SelectResourceConfigResponse(TypedDict, total=False):
|
|
3074
|
-
Results:
|
|
3075
|
-
QueryInfo:
|
|
3076
|
-
NextToken:
|
|
3072
|
+
Results: Results | None
|
|
3073
|
+
QueryInfo: QueryInfo | None
|
|
3074
|
+
NextToken: NextToken | None
|
|
3077
3075
|
|
|
3078
3076
|
|
|
3079
3077
|
class StartConfigRulesEvaluationRequest(ServiceRequest):
|
|
3080
|
-
ConfigRuleNames:
|
|
3078
|
+
ConfigRuleNames: ReevaluateConfigRuleNames | None
|
|
3081
3079
|
|
|
3082
3080
|
|
|
3083
3081
|
class StartConfigRulesEvaluationResponse(TypedDict, total=False):
|
|
@@ -3094,27 +3092,27 @@ class StartRemediationExecutionRequest(ServiceRequest):
|
|
|
3094
3092
|
|
|
3095
3093
|
|
|
3096
3094
|
class StartRemediationExecutionResponse(TypedDict, total=False):
|
|
3097
|
-
FailureMessage:
|
|
3098
|
-
FailedItems:
|
|
3095
|
+
FailureMessage: String | None
|
|
3096
|
+
FailedItems: ResourceKeys | None
|
|
3099
3097
|
|
|
3100
3098
|
|
|
3101
3099
|
class StartResourceEvaluationRequest(ServiceRequest):
|
|
3102
3100
|
ResourceDetails: ResourceDetails
|
|
3103
|
-
EvaluationContext:
|
|
3101
|
+
EvaluationContext: EvaluationContext | None
|
|
3104
3102
|
EvaluationMode: EvaluationMode
|
|
3105
|
-
EvaluationTimeout:
|
|
3106
|
-
ClientToken:
|
|
3103
|
+
EvaluationTimeout: EvaluationTimeout | None
|
|
3104
|
+
ClientToken: ClientToken | None
|
|
3107
3105
|
|
|
3108
3106
|
|
|
3109
3107
|
class StartResourceEvaluationResponse(TypedDict, total=False):
|
|
3110
|
-
ResourceEvaluationId:
|
|
3108
|
+
ResourceEvaluationId: ResourceEvaluationId | None
|
|
3111
3109
|
|
|
3112
3110
|
|
|
3113
3111
|
class StopConfigurationRecorderRequest(ServiceRequest):
|
|
3114
3112
|
ConfigurationRecorderName: RecorderName
|
|
3115
3113
|
|
|
3116
3114
|
|
|
3117
|
-
TagKeyList =
|
|
3115
|
+
TagKeyList = list[TagKey]
|
|
3118
3116
|
|
|
3119
3117
|
|
|
3120
3118
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -3128,8 +3126,8 @@ class UntagResourceRequest(ServiceRequest):
|
|
|
3128
3126
|
|
|
3129
3127
|
|
|
3130
3128
|
class ConfigApi:
|
|
3131
|
-
service = "config"
|
|
3132
|
-
version = "2014-11-12"
|
|
3129
|
+
service: str = "config"
|
|
3130
|
+
version: str = "2014-11-12"
|
|
3133
3131
|
|
|
3134
3132
|
@handler("AssociateResourceTypes")
|
|
3135
3133
|
def associate_resource_types(
|