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