localstack-core 4.4.1.dev11__py3-none-any.whl → 4.4.1.dev13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- localstack/aws/api/acm/__init__.py +19 -19
- localstack/aws/api/apigateway/__init__.py +202 -187
- localstack/aws/api/cloudcontrol/__init__.py +19 -19
- localstack/aws/api/cloudformation/__init__.py +240 -236
- localstack/aws/api/cloudwatch/__init__.py +108 -108
- localstack/aws/api/config/__init__.py +190 -174
- localstack/aws/api/dynamodb/__init__.py +176 -170
- localstack/aws/api/dynamodbstreams/__init__.py +7 -7
- localstack/aws/api/ec2/__init__.py +2415 -2348
- localstack/aws/api/es/__init__.py +81 -73
- localstack/aws/api/events/__init__.py +114 -110
- localstack/aws/api/firehose/__init__.py +43 -36
- localstack/aws/api/iam/__init__.py +189 -185
- localstack/aws/api/kinesis/__init__.py +70 -70
- localstack/aws/api/kms/__init__.py +126 -122
- localstack/aws/api/lambda_/__init__.py +191 -191
- localstack/aws/api/logs/__init__.py +150 -150
- localstack/aws/api/opensearch/__init__.py +138 -130
- localstack/aws/api/pipes/__init__.py +25 -25
- localstack/aws/api/redshift/__init__.py +420 -420
- localstack/aws/api/resource_groups/__init__.py +44 -44
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +17 -17
- localstack/aws/api/route53/__init__.py +86 -82
- localstack/aws/api/route53resolver/__init__.py +103 -103
- localstack/aws/api/s3/__init__.py +489 -489
- localstack/aws/api/s3control/__init__.py +69 -69
- localstack/aws/api/scheduler/__init__.py +36 -32
- localstack/aws/api/secretsmanager/__init__.py +51 -51
- localstack/aws/api/ses/__init__.py +55 -55
- localstack/aws/api/sns/__init__.py +35 -31
- localstack/aws/api/sqs/__init__.py +24 -24
- localstack/aws/api/ssm/__init__.py +439 -439
- localstack/aws/api/stepfunctions/__init__.py +58 -58
- localstack/aws/api/sts/__init__.py +25 -25
- localstack/aws/api/support/__init__.py +29 -29
- localstack/aws/api/swf/__init__.py +88 -84
- localstack/aws/api/transcribe/__init__.py +80 -80
- localstack/aws/scaffold.py +1 -1
- localstack/testing/aws/asf_utils.py +7 -3
- localstack/version.py +2 -2
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/METADATA +1 -1
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/RECORD +50 -50
- localstack_core-4.4.1.dev13.dist-info/plux.json +1 -0
- localstack_core-4.4.1.dev11.dist-info/plux.json +0 -1
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.4.1.dev11.data → localstack_core-4.4.1.dev13.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/WHEEL +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.4.1.dev11.dist-info → localstack_core-4.4.1.dev13.dist-info}/top_level.txt +0 -0
@@ -3200,7 +3200,7 @@ class ConfigApi:
|
|
3200
3200
|
self,
|
3201
3201
|
context: RequestContext,
|
3202
3202
|
config_rule_name: ConfigRuleName,
|
3203
|
-
resource_type: String = None,
|
3203
|
+
resource_type: String | None = None,
|
3204
3204
|
**kwargs,
|
3205
3205
|
) -> DeleteRemediationConfigurationResponse:
|
3206
3206
|
raise NotImplementedError
|
@@ -3257,9 +3257,9 @@ class ConfigApi:
|
|
3257
3257
|
self,
|
3258
3258
|
context: RequestContext,
|
3259
3259
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3260
|
-
filters: ConfigRuleComplianceFilters = None,
|
3261
|
-
limit: GroupByAPILimit = None,
|
3262
|
-
next_token: NextToken = None,
|
3260
|
+
filters: ConfigRuleComplianceFilters | None = None,
|
3261
|
+
limit: GroupByAPILimit | None = None,
|
3262
|
+
next_token: NextToken | None = None,
|
3263
3263
|
**kwargs,
|
3264
3264
|
) -> DescribeAggregateComplianceByConfigRulesResponse:
|
3265
3265
|
raise NotImplementedError
|
@@ -3269,16 +3269,20 @@ class ConfigApi:
|
|
3269
3269
|
self,
|
3270
3270
|
context: RequestContext,
|
3271
3271
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3272
|
-
filters: AggregateConformancePackComplianceFilters = None,
|
3273
|
-
limit: Limit = None,
|
3274
|
-
next_token: NextToken = None,
|
3272
|
+
filters: AggregateConformancePackComplianceFilters | None = None,
|
3273
|
+
limit: Limit | None = None,
|
3274
|
+
next_token: NextToken | None = None,
|
3275
3275
|
**kwargs,
|
3276
3276
|
) -> DescribeAggregateComplianceByConformancePacksResponse:
|
3277
3277
|
raise NotImplementedError
|
3278
3278
|
|
3279
3279
|
@handler("DescribeAggregationAuthorizations")
|
3280
3280
|
def describe_aggregation_authorizations(
|
3281
|
-
self,
|
3281
|
+
self,
|
3282
|
+
context: RequestContext,
|
3283
|
+
limit: Limit | None = None,
|
3284
|
+
next_token: String | None = None,
|
3285
|
+
**kwargs,
|
3282
3286
|
) -> DescribeAggregationAuthorizationsResponse:
|
3283
3287
|
raise NotImplementedError
|
3284
3288
|
|
@@ -3286,9 +3290,9 @@ class ConfigApi:
|
|
3286
3290
|
def describe_compliance_by_config_rule(
|
3287
3291
|
self,
|
3288
3292
|
context: RequestContext,
|
3289
|
-
config_rule_names: ConfigRuleNames = None,
|
3290
|
-
compliance_types: ComplianceTypes = None,
|
3291
|
-
next_token: String = None,
|
3293
|
+
config_rule_names: ConfigRuleNames | None = None,
|
3294
|
+
compliance_types: ComplianceTypes | None = None,
|
3295
|
+
next_token: String | None = None,
|
3292
3296
|
**kwargs,
|
3293
3297
|
) -> DescribeComplianceByConfigRuleResponse:
|
3294
3298
|
raise NotImplementedError
|
@@ -3297,11 +3301,11 @@ class ConfigApi:
|
|
3297
3301
|
def describe_compliance_by_resource(
|
3298
3302
|
self,
|
3299
3303
|
context: RequestContext,
|
3300
|
-
resource_type: StringWithCharLimit256 = None,
|
3301
|
-
resource_id: BaseResourceId = None,
|
3302
|
-
compliance_types: ComplianceTypes = None,
|
3303
|
-
limit: Limit = None,
|
3304
|
-
next_token: NextToken = None,
|
3304
|
+
resource_type: StringWithCharLimit256 | None = None,
|
3305
|
+
resource_id: BaseResourceId | None = None,
|
3306
|
+
compliance_types: ComplianceTypes | None = None,
|
3307
|
+
limit: Limit | None = None,
|
3308
|
+
next_token: NextToken | None = None,
|
3305
3309
|
**kwargs,
|
3306
3310
|
) -> DescribeComplianceByResourceResponse:
|
3307
3311
|
raise NotImplementedError
|
@@ -3310,9 +3314,9 @@ class ConfigApi:
|
|
3310
3314
|
def describe_config_rule_evaluation_status(
|
3311
3315
|
self,
|
3312
3316
|
context: RequestContext,
|
3313
|
-
config_rule_names: ConfigRuleNames = None,
|
3314
|
-
next_token: String = None,
|
3315
|
-
limit: RuleLimit = None,
|
3317
|
+
config_rule_names: ConfigRuleNames | None = None,
|
3318
|
+
next_token: String | None = None,
|
3319
|
+
limit: RuleLimit | None = None,
|
3316
3320
|
**kwargs,
|
3317
3321
|
) -> DescribeConfigRuleEvaluationStatusResponse:
|
3318
3322
|
raise NotImplementedError
|
@@ -3321,9 +3325,9 @@ class ConfigApi:
|
|
3321
3325
|
def describe_config_rules(
|
3322
3326
|
self,
|
3323
3327
|
context: RequestContext,
|
3324
|
-
config_rule_names: ConfigRuleNames = None,
|
3325
|
-
next_token: String = None,
|
3326
|
-
filters: DescribeConfigRulesFilters = None,
|
3328
|
+
config_rule_names: ConfigRuleNames | None = None,
|
3329
|
+
next_token: String | None = None,
|
3330
|
+
filters: DescribeConfigRulesFilters | None = None,
|
3327
3331
|
**kwargs,
|
3328
3332
|
) -> DescribeConfigRulesResponse:
|
3329
3333
|
raise NotImplementedError
|
@@ -3333,9 +3337,9 @@ class ConfigApi:
|
|
3333
3337
|
self,
|
3334
3338
|
context: RequestContext,
|
3335
3339
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3336
|
-
update_status: AggregatedSourceStatusTypeList = None,
|
3337
|
-
next_token: String = None,
|
3338
|
-
limit: Limit = None,
|
3340
|
+
update_status: AggregatedSourceStatusTypeList | None = None,
|
3341
|
+
next_token: String | None = None,
|
3342
|
+
limit: Limit | None = None,
|
3339
3343
|
**kwargs,
|
3340
3344
|
) -> DescribeConfigurationAggregatorSourcesStatusResponse:
|
3341
3345
|
raise NotImplementedError
|
@@ -3344,9 +3348,9 @@ class ConfigApi:
|
|
3344
3348
|
def describe_configuration_aggregators(
|
3345
3349
|
self,
|
3346
3350
|
context: RequestContext,
|
3347
|
-
configuration_aggregator_names: ConfigurationAggregatorNameList = None,
|
3348
|
-
next_token: String = None,
|
3349
|
-
limit: Limit = None,
|
3351
|
+
configuration_aggregator_names: ConfigurationAggregatorNameList | None = None,
|
3352
|
+
next_token: String | None = None,
|
3353
|
+
limit: Limit | None = None,
|
3350
3354
|
**kwargs,
|
3351
3355
|
) -> DescribeConfigurationAggregatorsResponse:
|
3352
3356
|
raise NotImplementedError
|
@@ -3355,9 +3359,9 @@ class ConfigApi:
|
|
3355
3359
|
def describe_configuration_recorder_status(
|
3356
3360
|
self,
|
3357
3361
|
context: RequestContext,
|
3358
|
-
configuration_recorder_names: ConfigurationRecorderNameList = None,
|
3359
|
-
service_principal: ServicePrincipal = None,
|
3360
|
-
arn: AmazonResourceName = None,
|
3362
|
+
configuration_recorder_names: ConfigurationRecorderNameList | None = None,
|
3363
|
+
service_principal: ServicePrincipal | None = None,
|
3364
|
+
arn: AmazonResourceName | None = None,
|
3361
3365
|
**kwargs,
|
3362
3366
|
) -> DescribeConfigurationRecorderStatusResponse:
|
3363
3367
|
raise NotImplementedError
|
@@ -3366,9 +3370,9 @@ class ConfigApi:
|
|
3366
3370
|
def describe_configuration_recorders(
|
3367
3371
|
self,
|
3368
3372
|
context: RequestContext,
|
3369
|
-
configuration_recorder_names: ConfigurationRecorderNameList = None,
|
3370
|
-
service_principal: ServicePrincipal = None,
|
3371
|
-
arn: AmazonResourceName = None,
|
3373
|
+
configuration_recorder_names: ConfigurationRecorderNameList | None = None,
|
3374
|
+
service_principal: ServicePrincipal | None = None,
|
3375
|
+
arn: AmazonResourceName | None = None,
|
3372
3376
|
**kwargs,
|
3373
3377
|
) -> DescribeConfigurationRecordersResponse:
|
3374
3378
|
raise NotImplementedError
|
@@ -3378,9 +3382,9 @@ class ConfigApi:
|
|
3378
3382
|
self,
|
3379
3383
|
context: RequestContext,
|
3380
3384
|
conformance_pack_name: ConformancePackName,
|
3381
|
-
filters: ConformancePackComplianceFilters = None,
|
3382
|
-
limit: DescribeConformancePackComplianceLimit = None,
|
3383
|
-
next_token: NextToken = None,
|
3385
|
+
filters: ConformancePackComplianceFilters | None = None,
|
3386
|
+
limit: DescribeConformancePackComplianceLimit | None = None,
|
3387
|
+
next_token: NextToken | None = None,
|
3384
3388
|
**kwargs,
|
3385
3389
|
) -> DescribeConformancePackComplianceResponse:
|
3386
3390
|
raise NotImplementedError
|
@@ -3389,9 +3393,9 @@ class ConfigApi:
|
|
3389
3393
|
def describe_conformance_pack_status(
|
3390
3394
|
self,
|
3391
3395
|
context: RequestContext,
|
3392
|
-
conformance_pack_names: ConformancePackNamesList = None,
|
3393
|
-
limit: PageSizeLimit = None,
|
3394
|
-
next_token: NextToken = None,
|
3396
|
+
conformance_pack_names: ConformancePackNamesList | None = None,
|
3397
|
+
limit: PageSizeLimit | None = None,
|
3398
|
+
next_token: NextToken | None = None,
|
3395
3399
|
**kwargs,
|
3396
3400
|
) -> DescribeConformancePackStatusResponse:
|
3397
3401
|
raise NotImplementedError
|
@@ -3400,9 +3404,9 @@ class ConfigApi:
|
|
3400
3404
|
def describe_conformance_packs(
|
3401
3405
|
self,
|
3402
3406
|
context: RequestContext,
|
3403
|
-
conformance_pack_names: ConformancePackNamesList = None,
|
3404
|
-
limit: PageSizeLimit = None,
|
3405
|
-
next_token: NextToken = None,
|
3407
|
+
conformance_pack_names: ConformancePackNamesList | None = None,
|
3408
|
+
limit: PageSizeLimit | None = None,
|
3409
|
+
next_token: NextToken | None = None,
|
3406
3410
|
**kwargs,
|
3407
3411
|
) -> DescribeConformancePacksResponse:
|
3408
3412
|
raise NotImplementedError
|
@@ -3411,7 +3415,7 @@ class ConfigApi:
|
|
3411
3415
|
def describe_delivery_channel_status(
|
3412
3416
|
self,
|
3413
3417
|
context: RequestContext,
|
3414
|
-
delivery_channel_names: DeliveryChannelNameList = None,
|
3418
|
+
delivery_channel_names: DeliveryChannelNameList | None = None,
|
3415
3419
|
**kwargs,
|
3416
3420
|
) -> DescribeDeliveryChannelStatusResponse:
|
3417
3421
|
raise NotImplementedError
|
@@ -3420,7 +3424,7 @@ class ConfigApi:
|
|
3420
3424
|
def describe_delivery_channels(
|
3421
3425
|
self,
|
3422
3426
|
context: RequestContext,
|
3423
|
-
delivery_channel_names: DeliveryChannelNameList = None,
|
3427
|
+
delivery_channel_names: DeliveryChannelNameList | None = None,
|
3424
3428
|
**kwargs,
|
3425
3429
|
) -> DescribeDeliveryChannelsResponse:
|
3426
3430
|
raise NotImplementedError
|
@@ -3429,9 +3433,9 @@ class ConfigApi:
|
|
3429
3433
|
def describe_organization_config_rule_statuses(
|
3430
3434
|
self,
|
3431
3435
|
context: RequestContext,
|
3432
|
-
organization_config_rule_names: OrganizationConfigRuleNames = None,
|
3433
|
-
limit: CosmosPageLimit = None,
|
3434
|
-
next_token: String = None,
|
3436
|
+
organization_config_rule_names: OrganizationConfigRuleNames | None = None,
|
3437
|
+
limit: CosmosPageLimit | None = None,
|
3438
|
+
next_token: String | None = None,
|
3435
3439
|
**kwargs,
|
3436
3440
|
) -> DescribeOrganizationConfigRuleStatusesResponse:
|
3437
3441
|
raise NotImplementedError
|
@@ -3440,9 +3444,9 @@ class ConfigApi:
|
|
3440
3444
|
def describe_organization_config_rules(
|
3441
3445
|
self,
|
3442
3446
|
context: RequestContext,
|
3443
|
-
organization_config_rule_names: OrganizationConfigRuleNames = None,
|
3444
|
-
limit: CosmosPageLimit = None,
|
3445
|
-
next_token: String = None,
|
3447
|
+
organization_config_rule_names: OrganizationConfigRuleNames | None = None,
|
3448
|
+
limit: CosmosPageLimit | None = None,
|
3449
|
+
next_token: String | None = None,
|
3446
3450
|
**kwargs,
|
3447
3451
|
) -> DescribeOrganizationConfigRulesResponse:
|
3448
3452
|
raise NotImplementedError
|
@@ -3451,9 +3455,9 @@ class ConfigApi:
|
|
3451
3455
|
def describe_organization_conformance_pack_statuses(
|
3452
3456
|
self,
|
3453
3457
|
context: RequestContext,
|
3454
|
-
organization_conformance_pack_names: OrganizationConformancePackNames = None,
|
3455
|
-
limit: CosmosPageLimit = None,
|
3456
|
-
next_token: String = None,
|
3458
|
+
organization_conformance_pack_names: OrganizationConformancePackNames | None = None,
|
3459
|
+
limit: CosmosPageLimit | None = None,
|
3460
|
+
next_token: String | None = None,
|
3457
3461
|
**kwargs,
|
3458
3462
|
) -> DescribeOrganizationConformancePackStatusesResponse:
|
3459
3463
|
raise NotImplementedError
|
@@ -3462,9 +3466,9 @@ class ConfigApi:
|
|
3462
3466
|
def describe_organization_conformance_packs(
|
3463
3467
|
self,
|
3464
3468
|
context: RequestContext,
|
3465
|
-
organization_conformance_pack_names: OrganizationConformancePackNames = None,
|
3466
|
-
limit: CosmosPageLimit = None,
|
3467
|
-
next_token: String = None,
|
3469
|
+
organization_conformance_pack_names: OrganizationConformancePackNames | None = None,
|
3470
|
+
limit: CosmosPageLimit | None = None,
|
3471
|
+
next_token: String | None = None,
|
3468
3472
|
**kwargs,
|
3469
3473
|
) -> DescribeOrganizationConformancePacksResponse:
|
3470
3474
|
raise NotImplementedError
|
@@ -3473,8 +3477,8 @@ class ConfigApi:
|
|
3473
3477
|
def describe_pending_aggregation_requests(
|
3474
3478
|
self,
|
3475
3479
|
context: RequestContext,
|
3476
|
-
limit: DescribePendingAggregationRequestsLimit = None,
|
3477
|
-
next_token: String = None,
|
3480
|
+
limit: DescribePendingAggregationRequestsLimit | None = None,
|
3481
|
+
next_token: String | None = None,
|
3478
3482
|
**kwargs,
|
3479
3483
|
) -> DescribePendingAggregationRequestsResponse:
|
3480
3484
|
raise NotImplementedError
|
@@ -3490,9 +3494,9 @@ class ConfigApi:
|
|
3490
3494
|
self,
|
3491
3495
|
context: RequestContext,
|
3492
3496
|
config_rule_name: ConfigRuleName,
|
3493
|
-
resource_keys: RemediationExceptionResourceKeys = None,
|
3494
|
-
limit: Limit = None,
|
3495
|
-
next_token: String = None,
|
3497
|
+
resource_keys: RemediationExceptionResourceKeys | None = None,
|
3498
|
+
limit: Limit | None = None,
|
3499
|
+
next_token: String | None = None,
|
3496
3500
|
**kwargs,
|
3497
3501
|
) -> DescribeRemediationExceptionsResponse:
|
3498
3502
|
raise NotImplementedError
|
@@ -3502,9 +3506,9 @@ class ConfigApi:
|
|
3502
3506
|
self,
|
3503
3507
|
context: RequestContext,
|
3504
3508
|
config_rule_name: ConfigRuleName,
|
3505
|
-
resource_keys: ResourceKeys = None,
|
3506
|
-
limit: Limit = None,
|
3507
|
-
next_token: String = None,
|
3509
|
+
resource_keys: ResourceKeys | None = None,
|
3510
|
+
limit: Limit | None = None,
|
3511
|
+
next_token: String | None = None,
|
3508
3512
|
**kwargs,
|
3509
3513
|
) -> DescribeRemediationExecutionStatusResponse:
|
3510
3514
|
raise NotImplementedError
|
@@ -3513,8 +3517,8 @@ class ConfigApi:
|
|
3513
3517
|
def describe_retention_configurations(
|
3514
3518
|
self,
|
3515
3519
|
context: RequestContext,
|
3516
|
-
retention_configuration_names: RetentionConfigurationNameList = None,
|
3517
|
-
next_token: NextToken = None,
|
3520
|
+
retention_configuration_names: RetentionConfigurationNameList | None = None,
|
3521
|
+
next_token: NextToken | None = None,
|
3518
3522
|
**kwargs,
|
3519
3523
|
) -> DescribeRetentionConfigurationsResponse:
|
3520
3524
|
raise NotImplementedError
|
@@ -3537,9 +3541,9 @@ class ConfigApi:
|
|
3537
3541
|
config_rule_name: ConfigRuleName,
|
3538
3542
|
account_id: AccountId,
|
3539
3543
|
aws_region: AwsRegion,
|
3540
|
-
compliance_type: ComplianceType = None,
|
3541
|
-
limit: Limit = None,
|
3542
|
-
next_token: NextToken = None,
|
3544
|
+
compliance_type: ComplianceType | None = None,
|
3545
|
+
limit: Limit | None = None,
|
3546
|
+
next_token: NextToken | None = None,
|
3543
3547
|
**kwargs,
|
3544
3548
|
) -> GetAggregateComplianceDetailsByConfigRuleResponse:
|
3545
3549
|
raise NotImplementedError
|
@@ -3549,10 +3553,10 @@ class ConfigApi:
|
|
3549
3553
|
self,
|
3550
3554
|
context: RequestContext,
|
3551
3555
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3552
|
-
filters: ConfigRuleComplianceSummaryFilters = None,
|
3553
|
-
group_by_key: ConfigRuleComplianceSummaryGroupKey = None,
|
3554
|
-
limit: GroupByAPILimit = None,
|
3555
|
-
next_token: NextToken = None,
|
3556
|
+
filters: ConfigRuleComplianceSummaryFilters | None = None,
|
3557
|
+
group_by_key: ConfigRuleComplianceSummaryGroupKey | None = None,
|
3558
|
+
limit: GroupByAPILimit | None = None,
|
3559
|
+
next_token: NextToken | None = None,
|
3556
3560
|
**kwargs,
|
3557
3561
|
) -> GetAggregateConfigRuleComplianceSummaryResponse:
|
3558
3562
|
raise NotImplementedError
|
@@ -3562,10 +3566,10 @@ class ConfigApi:
|
|
3562
3566
|
self,
|
3563
3567
|
context: RequestContext,
|
3564
3568
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3565
|
-
filters: AggregateConformancePackComplianceSummaryFilters = None,
|
3566
|
-
group_by_key: AggregateConformancePackComplianceSummaryGroupKey = None,
|
3567
|
-
limit: Limit = None,
|
3568
|
-
next_token: NextToken = None,
|
3569
|
+
filters: AggregateConformancePackComplianceSummaryFilters | None = None,
|
3570
|
+
group_by_key: AggregateConformancePackComplianceSummaryGroupKey | None = None,
|
3571
|
+
limit: Limit | None = None,
|
3572
|
+
next_token: NextToken | None = None,
|
3569
3573
|
**kwargs,
|
3570
3574
|
) -> GetAggregateConformancePackComplianceSummaryResponse:
|
3571
3575
|
raise NotImplementedError
|
@@ -3575,10 +3579,10 @@ class ConfigApi:
|
|
3575
3579
|
self,
|
3576
3580
|
context: RequestContext,
|
3577
3581
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3578
|
-
filters: ResourceCountFilters = None,
|
3579
|
-
group_by_key: ResourceCountGroupKey = None,
|
3580
|
-
limit: GroupByAPILimit = None,
|
3581
|
-
next_token: NextToken = None,
|
3582
|
+
filters: ResourceCountFilters | None = None,
|
3583
|
+
group_by_key: ResourceCountGroupKey | None = None,
|
3584
|
+
limit: GroupByAPILimit | None = None,
|
3585
|
+
next_token: NextToken | None = None,
|
3582
3586
|
**kwargs,
|
3583
3587
|
) -> GetAggregateDiscoveredResourceCountsResponse:
|
3584
3588
|
raise NotImplementedError
|
@@ -3598,9 +3602,9 @@ class ConfigApi:
|
|
3598
3602
|
self,
|
3599
3603
|
context: RequestContext,
|
3600
3604
|
config_rule_name: StringWithCharLimit64,
|
3601
|
-
compliance_types: ComplianceTypes = None,
|
3602
|
-
limit: Limit = None,
|
3603
|
-
next_token: NextToken = None,
|
3605
|
+
compliance_types: ComplianceTypes | None = None,
|
3606
|
+
limit: Limit | None = None,
|
3607
|
+
next_token: NextToken | None = None,
|
3604
3608
|
**kwargs,
|
3605
3609
|
) -> GetComplianceDetailsByConfigRuleResponse:
|
3606
3610
|
raise NotImplementedError
|
@@ -3609,11 +3613,11 @@ class ConfigApi:
|
|
3609
3613
|
def get_compliance_details_by_resource(
|
3610
3614
|
self,
|
3611
3615
|
context: RequestContext,
|
3612
|
-
resource_type: StringWithCharLimit256 = None,
|
3613
|
-
resource_id: BaseResourceId = None,
|
3614
|
-
compliance_types: ComplianceTypes = None,
|
3615
|
-
next_token: String = None,
|
3616
|
-
resource_evaluation_id: ResourceEvaluationId = None,
|
3616
|
+
resource_type: StringWithCharLimit256 | None = None,
|
3617
|
+
resource_id: BaseResourceId | None = None,
|
3618
|
+
compliance_types: ComplianceTypes | None = None,
|
3619
|
+
next_token: String | None = None,
|
3620
|
+
resource_evaluation_id: ResourceEvaluationId | None = None,
|
3617
3621
|
**kwargs,
|
3618
3622
|
) -> GetComplianceDetailsByResourceResponse:
|
3619
3623
|
raise NotImplementedError
|
@@ -3626,7 +3630,7 @@ class ConfigApi:
|
|
3626
3630
|
|
3627
3631
|
@handler("GetComplianceSummaryByResourceType")
|
3628
3632
|
def get_compliance_summary_by_resource_type(
|
3629
|
-
self, context: RequestContext, resource_types: ResourceTypes = None, **kwargs
|
3633
|
+
self, context: RequestContext, resource_types: ResourceTypes | None = None, **kwargs
|
3630
3634
|
) -> GetComplianceSummaryByResourceTypeResponse:
|
3631
3635
|
raise NotImplementedError
|
3632
3636
|
|
@@ -3635,9 +3639,9 @@ class ConfigApi:
|
|
3635
3639
|
self,
|
3636
3640
|
context: RequestContext,
|
3637
3641
|
conformance_pack_name: ConformancePackName,
|
3638
|
-
filters: ConformancePackEvaluationFilters = None,
|
3639
|
-
limit: GetConformancePackComplianceDetailsLimit = None,
|
3640
|
-
next_token: NextToken = None,
|
3642
|
+
filters: ConformancePackEvaluationFilters | None = None,
|
3643
|
+
limit: GetConformancePackComplianceDetailsLimit | None = None,
|
3644
|
+
next_token: NextToken | None = None,
|
3641
3645
|
**kwargs,
|
3642
3646
|
) -> GetConformancePackComplianceDetailsResponse:
|
3643
3647
|
raise NotImplementedError
|
@@ -3647,15 +3651,15 @@ class ConfigApi:
|
|
3647
3651
|
self,
|
3648
3652
|
context: RequestContext,
|
3649
3653
|
conformance_pack_names: ConformancePackNamesToSummarizeList,
|
3650
|
-
limit: PageSizeLimit = None,
|
3651
|
-
next_token: NextToken = None,
|
3654
|
+
limit: PageSizeLimit | None = None,
|
3655
|
+
next_token: NextToken | None = None,
|
3652
3656
|
**kwargs,
|
3653
3657
|
) -> GetConformancePackComplianceSummaryResponse:
|
3654
3658
|
raise NotImplementedError
|
3655
3659
|
|
3656
3660
|
@handler("GetCustomRulePolicy")
|
3657
3661
|
def get_custom_rule_policy(
|
3658
|
-
self, context: RequestContext, config_rule_name: ConfigRuleName = None, **kwargs
|
3662
|
+
self, context: RequestContext, config_rule_name: ConfigRuleName | None = None, **kwargs
|
3659
3663
|
) -> GetCustomRulePolicyResponse:
|
3660
3664
|
raise NotImplementedError
|
3661
3665
|
|
@@ -3663,9 +3667,9 @@ class ConfigApi:
|
|
3663
3667
|
def get_discovered_resource_counts(
|
3664
3668
|
self,
|
3665
3669
|
context: RequestContext,
|
3666
|
-
resource_types: ResourceTypes = None,
|
3667
|
-
limit: Limit = None,
|
3668
|
-
next_token: NextToken = None,
|
3670
|
+
resource_types: ResourceTypes | None = None,
|
3671
|
+
limit: Limit | None = None,
|
3672
|
+
next_token: NextToken | None = None,
|
3669
3673
|
**kwargs,
|
3670
3674
|
) -> GetDiscoveredResourceCountsResponse:
|
3671
3675
|
raise NotImplementedError
|
@@ -3675,9 +3679,9 @@ class ConfigApi:
|
|
3675
3679
|
self,
|
3676
3680
|
context: RequestContext,
|
3677
3681
|
organization_config_rule_name: OrganizationConfigRuleName,
|
3678
|
-
filters: StatusDetailFilters = None,
|
3679
|
-
limit: CosmosPageLimit = None,
|
3680
|
-
next_token: String = None,
|
3682
|
+
filters: StatusDetailFilters | None = None,
|
3683
|
+
limit: CosmosPageLimit | None = None,
|
3684
|
+
next_token: String | None = None,
|
3681
3685
|
**kwargs,
|
3682
3686
|
) -> GetOrganizationConfigRuleDetailedStatusResponse:
|
3683
3687
|
raise NotImplementedError
|
@@ -3687,9 +3691,9 @@ class ConfigApi:
|
|
3687
3691
|
self,
|
3688
3692
|
context: RequestContext,
|
3689
3693
|
organization_conformance_pack_name: OrganizationConformancePackName,
|
3690
|
-
filters: OrganizationResourceDetailedStatusFilters = None,
|
3691
|
-
limit: CosmosPageLimit = None,
|
3692
|
-
next_token: String = None,
|
3694
|
+
filters: OrganizationResourceDetailedStatusFilters | None = None,
|
3695
|
+
limit: CosmosPageLimit | None = None,
|
3696
|
+
next_token: String | None = None,
|
3693
3697
|
**kwargs,
|
3694
3698
|
) -> GetOrganizationConformancePackDetailedStatusResponse:
|
3695
3699
|
raise NotImplementedError
|
@@ -3709,11 +3713,11 @@ class ConfigApi:
|
|
3709
3713
|
context: RequestContext,
|
3710
3714
|
resource_type: ResourceType,
|
3711
3715
|
resource_id: ResourceId,
|
3712
|
-
later_time: LaterTime = None,
|
3713
|
-
earlier_time: EarlierTime = None,
|
3714
|
-
chronological_order: ChronologicalOrder = None,
|
3715
|
-
limit: Limit = None,
|
3716
|
-
next_token: NextToken = None,
|
3716
|
+
later_time: LaterTime | None = None,
|
3717
|
+
earlier_time: EarlierTime | None = None,
|
3718
|
+
chronological_order: ChronologicalOrder | None = None,
|
3719
|
+
limit: Limit | None = None,
|
3720
|
+
next_token: NextToken | None = None,
|
3717
3721
|
**kwargs,
|
3718
3722
|
) -> GetResourceConfigHistoryResponse:
|
3719
3723
|
raise NotImplementedError
|
@@ -3736,9 +3740,9 @@ class ConfigApi:
|
|
3736
3740
|
context: RequestContext,
|
3737
3741
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3738
3742
|
resource_type: ResourceType,
|
3739
|
-
filters: ResourceFilters = None,
|
3740
|
-
limit: Limit = None,
|
3741
|
-
next_token: NextToken = None,
|
3743
|
+
filters: ResourceFilters | None = None,
|
3744
|
+
limit: Limit | None = None,
|
3745
|
+
next_token: NextToken | None = None,
|
3742
3746
|
**kwargs,
|
3743
3747
|
) -> ListAggregateDiscoveredResourcesResponse:
|
3744
3748
|
raise NotImplementedError
|
@@ -3747,9 +3751,9 @@ class ConfigApi:
|
|
3747
3751
|
def list_configuration_recorders(
|
3748
3752
|
self,
|
3749
3753
|
context: RequestContext,
|
3750
|
-
filters: ConfigurationRecorderFilterList = None,
|
3751
|
-
max_results: MaxResults = None,
|
3752
|
-
next_token: NextToken = None,
|
3754
|
+
filters: ConfigurationRecorderFilterList | None = None,
|
3755
|
+
max_results: MaxResults | None = None,
|
3756
|
+
next_token: NextToken | None = None,
|
3753
3757
|
**kwargs,
|
3754
3758
|
) -> ListConfigurationRecordersResponse:
|
3755
3759
|
raise NotImplementedError
|
@@ -3758,11 +3762,11 @@ class ConfigApi:
|
|
3758
3762
|
def list_conformance_pack_compliance_scores(
|
3759
3763
|
self,
|
3760
3764
|
context: RequestContext,
|
3761
|
-
filters: ConformancePackComplianceScoresFilters = None,
|
3762
|
-
sort_order: SortOrder = None,
|
3763
|
-
sort_by: SortBy = None,
|
3764
|
-
limit: PageSizeLimit = None,
|
3765
|
-
next_token: NextToken = None,
|
3765
|
+
filters: ConformancePackComplianceScoresFilters | None = None,
|
3766
|
+
sort_order: SortOrder | None = None,
|
3767
|
+
sort_by: SortBy | None = None,
|
3768
|
+
limit: PageSizeLimit | None = None,
|
3769
|
+
next_token: NextToken | None = None,
|
3766
3770
|
**kwargs,
|
3767
3771
|
) -> ListConformancePackComplianceScoresResponse:
|
3768
3772
|
raise NotImplementedError
|
@@ -3772,11 +3776,11 @@ class ConfigApi:
|
|
3772
3776
|
self,
|
3773
3777
|
context: RequestContext,
|
3774
3778
|
resource_type: ResourceType,
|
3775
|
-
resource_ids: ResourceIdList = None,
|
3776
|
-
resource_name: ResourceName = None,
|
3777
|
-
limit: Limit = None,
|
3778
|
-
include_deleted_resources: Boolean = None,
|
3779
|
-
next_token: NextToken = None,
|
3779
|
+
resource_ids: ResourceIdList | None = None,
|
3780
|
+
resource_name: ResourceName | None = None,
|
3781
|
+
limit: Limit | None = None,
|
3782
|
+
include_deleted_resources: Boolean | None = None,
|
3783
|
+
next_token: NextToken | None = None,
|
3780
3784
|
**kwargs,
|
3781
3785
|
) -> ListDiscoveredResourcesResponse:
|
3782
3786
|
raise NotImplementedError
|
@@ -3785,9 +3789,9 @@ class ConfigApi:
|
|
3785
3789
|
def list_resource_evaluations(
|
3786
3790
|
self,
|
3787
3791
|
context: RequestContext,
|
3788
|
-
filters: ResourceEvaluationFilters = None,
|
3789
|
-
limit: ListResourceEvaluationsPageItemLimit = None,
|
3790
|
-
next_token: String = None,
|
3792
|
+
filters: ResourceEvaluationFilters | None = None,
|
3793
|
+
limit: ListResourceEvaluationsPageItemLimit | None = None,
|
3794
|
+
next_token: String | None = None,
|
3791
3795
|
**kwargs,
|
3792
3796
|
) -> ListResourceEvaluationsResponse:
|
3793
3797
|
raise NotImplementedError
|
@@ -3796,8 +3800,8 @@ class ConfigApi:
|
|
3796
3800
|
def list_stored_queries(
|
3797
3801
|
self,
|
3798
3802
|
context: RequestContext,
|
3799
|
-
next_token: String = None,
|
3800
|
-
max_results: Limit = None,
|
3803
|
+
next_token: String | None = None,
|
3804
|
+
max_results: Limit | None = None,
|
3801
3805
|
**kwargs,
|
3802
3806
|
) -> ListStoredQueriesResponse:
|
3803
3807
|
raise NotImplementedError
|
@@ -3807,8 +3811,8 @@ class ConfigApi:
|
|
3807
3811
|
self,
|
3808
3812
|
context: RequestContext,
|
3809
3813
|
resource_arn: AmazonResourceName,
|
3810
|
-
limit: Limit = None,
|
3811
|
-
next_token: NextToken = None,
|
3814
|
+
limit: Limit | None = None,
|
3815
|
+
next_token: NextToken | None = None,
|
3812
3816
|
**kwargs,
|
3813
3817
|
) -> ListTagsForResourceResponse:
|
3814
3818
|
raise NotImplementedError
|
@@ -3819,14 +3823,18 @@ class ConfigApi:
|
|
3819
3823
|
context: RequestContext,
|
3820
3824
|
authorized_account_id: AccountId,
|
3821
3825
|
authorized_aws_region: AwsRegion,
|
3822
|
-
tags: TagsList = None,
|
3826
|
+
tags: TagsList | None = None,
|
3823
3827
|
**kwargs,
|
3824
3828
|
) -> PutAggregationAuthorizationResponse:
|
3825
3829
|
raise NotImplementedError
|
3826
3830
|
|
3827
3831
|
@handler("PutConfigRule")
|
3828
3832
|
def put_config_rule(
|
3829
|
-
self,
|
3833
|
+
self,
|
3834
|
+
context: RequestContext,
|
3835
|
+
config_rule: ConfigRule,
|
3836
|
+
tags: TagsList | None = None,
|
3837
|
+
**kwargs,
|
3830
3838
|
) -> None:
|
3831
3839
|
raise NotImplementedError
|
3832
3840
|
|
@@ -3835,10 +3843,10 @@ class ConfigApi:
|
|
3835
3843
|
self,
|
3836
3844
|
context: RequestContext,
|
3837
3845
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3838
|
-
account_aggregation_sources: AccountAggregationSourceList = None,
|
3839
|
-
organization_aggregation_source: OrganizationAggregationSource = None,
|
3840
|
-
tags: TagsList = None,
|
3841
|
-
aggregator_filters: AggregatorFilters = None,
|
3846
|
+
account_aggregation_sources: AccountAggregationSourceList | None = None,
|
3847
|
+
organization_aggregation_source: OrganizationAggregationSource | None = None,
|
3848
|
+
tags: TagsList | None = None,
|
3849
|
+
aggregator_filters: AggregatorFilters | None = None,
|
3842
3850
|
**kwargs,
|
3843
3851
|
) -> PutConfigurationAggregatorResponse:
|
3844
3852
|
raise NotImplementedError
|
@@ -3848,7 +3856,7 @@ class ConfigApi:
|
|
3848
3856
|
self,
|
3849
3857
|
context: RequestContext,
|
3850
3858
|
configuration_recorder: ConfigurationRecorder,
|
3851
|
-
tags: TagsList = None,
|
3859
|
+
tags: TagsList | None = None,
|
3852
3860
|
**kwargs,
|
3853
3861
|
) -> None:
|
3854
3862
|
raise NotImplementedError
|
@@ -3858,12 +3866,12 @@ class ConfigApi:
|
|
3858
3866
|
self,
|
3859
3867
|
context: RequestContext,
|
3860
3868
|
conformance_pack_name: ConformancePackName,
|
3861
|
-
template_s3_uri: TemplateS3Uri = None,
|
3862
|
-
template_body: TemplateBody = None,
|
3863
|
-
delivery_s3_bucket: DeliveryS3Bucket = None,
|
3864
|
-
delivery_s3_key_prefix: DeliveryS3KeyPrefix = None,
|
3865
|
-
conformance_pack_input_parameters: ConformancePackInputParameters = None,
|
3866
|
-
template_ssm_document_details: TemplateSSMDocumentDetails = None,
|
3869
|
+
template_s3_uri: TemplateS3Uri | None = None,
|
3870
|
+
template_body: TemplateBody | None = None,
|
3871
|
+
delivery_s3_bucket: DeliveryS3Bucket | None = None,
|
3872
|
+
delivery_s3_key_prefix: DeliveryS3KeyPrefix | None = None,
|
3873
|
+
conformance_pack_input_parameters: ConformancePackInputParameters | None = None,
|
3874
|
+
template_ssm_document_details: TemplateSSMDocumentDetails | None = None,
|
3867
3875
|
**kwargs,
|
3868
3876
|
) -> PutConformancePackResponse:
|
3869
3877
|
raise NotImplementedError
|
@@ -3879,8 +3887,8 @@ class ConfigApi:
|
|
3879
3887
|
self,
|
3880
3888
|
context: RequestContext,
|
3881
3889
|
result_token: String,
|
3882
|
-
evaluations: Evaluations = None,
|
3883
|
-
test_mode: Boolean = None,
|
3890
|
+
evaluations: Evaluations | None = None,
|
3891
|
+
test_mode: Boolean | None = None,
|
3884
3892
|
**kwargs,
|
3885
3893
|
) -> PutEvaluationsResponse:
|
3886
3894
|
raise NotImplementedError
|
@@ -3900,10 +3908,11 @@ class ConfigApi:
|
|
3900
3908
|
self,
|
3901
3909
|
context: RequestContext,
|
3902
3910
|
organization_config_rule_name: OrganizationConfigRuleName,
|
3903
|
-
organization_managed_rule_metadata: OrganizationManagedRuleMetadata = None,
|
3904
|
-
organization_custom_rule_metadata: OrganizationCustomRuleMetadata = None,
|
3905
|
-
excluded_accounts: ExcludedAccounts = None,
|
3906
|
-
organization_custom_policy_rule_metadata: OrganizationCustomPolicyRuleMetadata
|
3911
|
+
organization_managed_rule_metadata: OrganizationManagedRuleMetadata | None = None,
|
3912
|
+
organization_custom_rule_metadata: OrganizationCustomRuleMetadata | None = None,
|
3913
|
+
excluded_accounts: ExcludedAccounts | None = None,
|
3914
|
+
organization_custom_policy_rule_metadata: OrganizationCustomPolicyRuleMetadata
|
3915
|
+
| None = None,
|
3907
3916
|
**kwargs,
|
3908
3917
|
) -> PutOrganizationConfigRuleResponse:
|
3909
3918
|
raise NotImplementedError
|
@@ -3913,12 +3922,12 @@ class ConfigApi:
|
|
3913
3922
|
self,
|
3914
3923
|
context: RequestContext,
|
3915
3924
|
organization_conformance_pack_name: OrganizationConformancePackName,
|
3916
|
-
template_s3_uri: TemplateS3Uri = None,
|
3917
|
-
template_body: TemplateBody = None,
|
3918
|
-
delivery_s3_bucket: DeliveryS3Bucket = None,
|
3919
|
-
delivery_s3_key_prefix: DeliveryS3KeyPrefix = None,
|
3920
|
-
conformance_pack_input_parameters: ConformancePackInputParameters = None,
|
3921
|
-
excluded_accounts: ExcludedAccounts = None,
|
3925
|
+
template_s3_uri: TemplateS3Uri | None = None,
|
3926
|
+
template_body: TemplateBody | None = None,
|
3927
|
+
delivery_s3_bucket: DeliveryS3Bucket | None = None,
|
3928
|
+
delivery_s3_key_prefix: DeliveryS3KeyPrefix | None = None,
|
3929
|
+
conformance_pack_input_parameters: ConformancePackInputParameters | None = None,
|
3930
|
+
excluded_accounts: ExcludedAccounts | None = None,
|
3922
3931
|
**kwargs,
|
3923
3932
|
) -> PutOrganizationConformancePackResponse:
|
3924
3933
|
raise NotImplementedError
|
@@ -3938,8 +3947,8 @@ class ConfigApi:
|
|
3938
3947
|
context: RequestContext,
|
3939
3948
|
config_rule_name: ConfigRuleName,
|
3940
3949
|
resource_keys: RemediationExceptionResourceKeys,
|
3941
|
-
message: StringWithCharLimit1024 = None,
|
3942
|
-
expiration_time: Date = None,
|
3950
|
+
message: StringWithCharLimit1024 | None = None,
|
3951
|
+
expiration_time: Date | None = None,
|
3943
3952
|
**kwargs,
|
3944
3953
|
) -> PutRemediationExceptionsResponse:
|
3945
3954
|
raise NotImplementedError
|
@@ -3952,8 +3961,8 @@ class ConfigApi:
|
|
3952
3961
|
schema_version_id: SchemaVersionId,
|
3953
3962
|
resource_id: ResourceId,
|
3954
3963
|
configuration: Configuration,
|
3955
|
-
resource_name: ResourceName = None,
|
3956
|
-
tags: Tags = None,
|
3964
|
+
resource_name: ResourceName | None = None,
|
3965
|
+
tags: Tags | None = None,
|
3957
3966
|
**kwargs,
|
3958
3967
|
) -> None:
|
3959
3968
|
raise NotImplementedError
|
@@ -3969,14 +3978,18 @@ class ConfigApi:
|
|
3969
3978
|
self,
|
3970
3979
|
context: RequestContext,
|
3971
3980
|
service_principal: ServicePrincipal,
|
3972
|
-
tags: TagsList = None,
|
3981
|
+
tags: TagsList | None = None,
|
3973
3982
|
**kwargs,
|
3974
3983
|
) -> PutServiceLinkedConfigurationRecorderResponse:
|
3975
3984
|
raise NotImplementedError
|
3976
3985
|
|
3977
3986
|
@handler("PutStoredQuery")
|
3978
3987
|
def put_stored_query(
|
3979
|
-
self,
|
3988
|
+
self,
|
3989
|
+
context: RequestContext,
|
3990
|
+
stored_query: StoredQuery,
|
3991
|
+
tags: TagsList | None = None,
|
3992
|
+
**kwargs,
|
3980
3993
|
) -> PutStoredQueryResponse:
|
3981
3994
|
raise NotImplementedError
|
3982
3995
|
|
@@ -3986,9 +3999,9 @@ class ConfigApi:
|
|
3986
3999
|
context: RequestContext,
|
3987
4000
|
expression: Expression,
|
3988
4001
|
configuration_aggregator_name: ConfigurationAggregatorName,
|
3989
|
-
limit: Limit = None,
|
3990
|
-
max_results: Limit = None,
|
3991
|
-
next_token: NextToken = None,
|
4002
|
+
limit: Limit | None = None,
|
4003
|
+
max_results: Limit | None = None,
|
4004
|
+
next_token: NextToken | None = None,
|
3992
4005
|
**kwargs,
|
3993
4006
|
) -> SelectAggregateResourceConfigResponse:
|
3994
4007
|
raise NotImplementedError
|
@@ -3998,15 +4011,18 @@ class ConfigApi:
|
|
3998
4011
|
self,
|
3999
4012
|
context: RequestContext,
|
4000
4013
|
expression: Expression,
|
4001
|
-
limit: Limit = None,
|
4002
|
-
next_token: NextToken = None,
|
4014
|
+
limit: Limit | None = None,
|
4015
|
+
next_token: NextToken | None = None,
|
4003
4016
|
**kwargs,
|
4004
4017
|
) -> SelectResourceConfigResponse:
|
4005
4018
|
raise NotImplementedError
|
4006
4019
|
|
4007
4020
|
@handler("StartConfigRulesEvaluation")
|
4008
4021
|
def start_config_rules_evaluation(
|
4009
|
-
self,
|
4022
|
+
self,
|
4023
|
+
context: RequestContext,
|
4024
|
+
config_rule_names: ReevaluateConfigRuleNames | None = None,
|
4025
|
+
**kwargs,
|
4010
4026
|
) -> StartConfigRulesEvaluationResponse:
|
4011
4027
|
raise NotImplementedError
|
4012
4028
|
|
@@ -4032,9 +4048,9 @@ class ConfigApi:
|
|
4032
4048
|
context: RequestContext,
|
4033
4049
|
resource_details: ResourceDetails,
|
4034
4050
|
evaluation_mode: EvaluationMode,
|
4035
|
-
evaluation_context: EvaluationContext = None,
|
4036
|
-
evaluation_timeout: EvaluationTimeout = None,
|
4037
|
-
client_token: ClientToken = None,
|
4051
|
+
evaluation_context: EvaluationContext | None = None,
|
4052
|
+
evaluation_timeout: EvaluationTimeout | None = None,
|
4053
|
+
client_token: ClientToken | None = None,
|
4038
4054
|
**kwargs,
|
4039
4055
|
) -> StartResourceEvaluationResponse:
|
4040
4056
|
raise NotImplementedError
|