aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.1__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 aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +246 -62
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1 -1
- aws_cdk/aws_appflow/__init__.py +205 -7
- aws_cdk/aws_appstream/__init__.py +33 -28
- aws_cdk/aws_appsync/__init__.py +555 -71
- aws_cdk/aws_autoscaling/__init__.py +5 -11
- aws_cdk/aws_billingconductor/__init__.py +145 -1
- aws_cdk/aws_cleanrooms/__init__.py +1198 -86
- aws_cdk/aws_cloudformation/__init__.py +221 -55
- aws_cdk/aws_cloudwatch/__init__.py +325 -2
- aws_cdk/aws_cognito/__init__.py +9 -13
- aws_cdk/aws_config/__init__.py +68 -73
- aws_cdk/aws_connect/__init__.py +909 -164
- aws_cdk/aws_customerprofiles/__init__.py +44 -0
- aws_cdk/aws_dms/__init__.py +198 -0
- aws_cdk/aws_ec2/__init__.py +593 -73
- aws_cdk/aws_ecr/__init__.py +7 -2
- aws_cdk/aws_ecs/__init__.py +2 -2
- aws_cdk/aws_efs/__init__.py +237 -0
- aws_cdk/aws_emr/__init__.py +232 -0
- aws_cdk/aws_entityresolution/__init__.py +1702 -0
- aws_cdk/aws_events/__init__.py +13 -18
- aws_cdk/aws_fms/__init__.py +3 -3
- aws_cdk/aws_gamelift/__init__.py +10 -15
- aws_cdk/aws_grafana/__init__.py +9 -5
- aws_cdk/aws_guardduty/__init__.py +272 -205
- aws_cdk/aws_iam/__init__.py +20 -18
- aws_cdk/aws_iotwireless/__init__.py +38 -54
- aws_cdk/aws_lakeformation/__init__.py +18 -6
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_lightsail/__init__.py +225 -0
- aws_cdk/aws_lookoutequipment/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +5 -3
- aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
- aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
- aws_cdk/aws_quicksight/__init__.py +189 -116
- aws_cdk/aws_rds/__init__.py +316 -9
- aws_cdk/aws_resiliencehub/__init__.py +38 -21
- aws_cdk/aws_route53resolver/__init__.py +429 -0
- aws_cdk/aws_sagemaker/__init__.py +34 -34
- aws_cdk/aws_stepfunctions/__init__.py +111 -14
- aws_cdk/aws_transfer/__init__.py +2 -2
- aws_cdk/aws_vpclattice/__init__.py +128 -120
- aws_cdk/aws_workspacesweb/__init__.py +3790 -0
- aws_cdk/region_info/__init__.py +49 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
|
@@ -91,16 +91,18 @@ class CfnDetector(
|
|
|
91
91
|
enable=False
|
|
92
92
|
)
|
|
93
93
|
),
|
|
94
|
-
features=[guardduty.CfnDetector.
|
|
95
|
-
|
|
94
|
+
features=[guardduty.CfnDetector.CFNFeatureConfigurationProperty(
|
|
95
|
+
name="name",
|
|
96
|
+
status="status",
|
|
97
|
+
|
|
98
|
+
# the properties below are optional
|
|
99
|
+
additional_configuration=[guardduty.CfnDetector.CFNFeatureAdditionalConfigurationProperty(
|
|
96
100
|
name="name",
|
|
97
101
|
status="status"
|
|
98
|
-
)]
|
|
99
|
-
name="name",
|
|
100
|
-
status="status"
|
|
102
|
+
)]
|
|
101
103
|
)],
|
|
102
104
|
finding_publishing_frequency="findingPublishingFrequency",
|
|
103
|
-
tags=[
|
|
105
|
+
tags=[guardduty.CfnDetector.TagItemProperty(
|
|
104
106
|
key="key",
|
|
105
107
|
value="value"
|
|
106
108
|
)]
|
|
@@ -114,9 +116,9 @@ class CfnDetector(
|
|
|
114
116
|
*,
|
|
115
117
|
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
116
118
|
data_sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.CFNDataSourceConfigurationsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
117
|
-
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.
|
|
119
|
+
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.CFNFeatureConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
118
120
|
finding_publishing_frequency: typing.Optional[builtins.str] = None,
|
|
119
|
-
tags: typing.Optional[typing.Sequence[typing.Union[
|
|
121
|
+
tags: typing.Optional[typing.Sequence[typing.Union["CfnDetector.TagItemProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
120
122
|
) -> None:
|
|
121
123
|
'''
|
|
122
124
|
:param scope: Scope in which this resource is defined.
|
|
@@ -225,14 +227,14 @@ class CfnDetector(
|
|
|
225
227
|
@jsii.member(jsii_name="features")
|
|
226
228
|
def features(
|
|
227
229
|
self,
|
|
228
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.
|
|
230
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNFeatureConfigurationProperty"]]]]:
|
|
229
231
|
'''A list of features that will be configured for the detector.'''
|
|
230
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.
|
|
232
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNFeatureConfigurationProperty"]]]], jsii.get(self, "features"))
|
|
231
233
|
|
|
232
234
|
@features.setter
|
|
233
235
|
def features(
|
|
234
236
|
self,
|
|
235
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.
|
|
237
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNFeatureConfigurationProperty"]]]],
|
|
236
238
|
) -> None:
|
|
237
239
|
if __debug__:
|
|
238
240
|
type_hints = typing.get_type_hints(_typecheckingstub__77d162426268bf9dc8b5f3efea1e4d49418ad72947ae8c15de703212246d36f5)
|
|
@@ -257,12 +259,15 @@ class CfnDetector(
|
|
|
257
259
|
|
|
258
260
|
@builtins.property
|
|
259
261
|
@jsii.member(jsii_name="tagsRaw")
|
|
260
|
-
def tags_raw(self) -> typing.Optional[typing.List[
|
|
262
|
+
def tags_raw(self) -> typing.Optional[typing.List["CfnDetector.TagItemProperty"]]:
|
|
261
263
|
'''Specifies tags added to a new detector resource.'''
|
|
262
|
-
return typing.cast(typing.Optional[typing.List[
|
|
264
|
+
return typing.cast(typing.Optional[typing.List["CfnDetector.TagItemProperty"]], jsii.get(self, "tagsRaw"))
|
|
263
265
|
|
|
264
266
|
@tags_raw.setter
|
|
265
|
-
def tags_raw(
|
|
267
|
+
def tags_raw(
|
|
268
|
+
self,
|
|
269
|
+
value: typing.Optional[typing.List["CfnDetector.TagItemProperty"]],
|
|
270
|
+
) -> None:
|
|
266
271
|
if __debug__:
|
|
267
272
|
type_hints = typing.get_type_hints(_typecheckingstub__273b490c75e93f137bcaf4b10d4df89064d16e78f021b92c6008b18c9c74e99c)
|
|
268
273
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
@@ -373,6 +378,166 @@ class CfnDetector(
|
|
|
373
378
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
374
379
|
)
|
|
375
380
|
|
|
381
|
+
@jsii.data_type(
|
|
382
|
+
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.CFNFeatureAdditionalConfigurationProperty",
|
|
383
|
+
jsii_struct_bases=[],
|
|
384
|
+
name_mapping={"name": "name", "status": "status"},
|
|
385
|
+
)
|
|
386
|
+
class CFNFeatureAdditionalConfigurationProperty:
|
|
387
|
+
def __init__(
|
|
388
|
+
self,
|
|
389
|
+
*,
|
|
390
|
+
name: typing.Optional[builtins.str] = None,
|
|
391
|
+
status: typing.Optional[builtins.str] = None,
|
|
392
|
+
) -> None:
|
|
393
|
+
'''
|
|
394
|
+
:param name:
|
|
395
|
+
:param status:
|
|
396
|
+
|
|
397
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureadditionalconfiguration.html
|
|
398
|
+
:exampleMetadata: fixture=_generated
|
|
399
|
+
|
|
400
|
+
Example::
|
|
401
|
+
|
|
402
|
+
# The code below shows an example of how to instantiate this type.
|
|
403
|
+
# The values are placeholders you should change.
|
|
404
|
+
from aws_cdk import aws_guardduty as guardduty
|
|
405
|
+
|
|
406
|
+
c_fNFeature_additional_configuration_property = guardduty.CfnDetector.CFNFeatureAdditionalConfigurationProperty(
|
|
407
|
+
name="name",
|
|
408
|
+
status="status"
|
|
409
|
+
)
|
|
410
|
+
'''
|
|
411
|
+
if __debug__:
|
|
412
|
+
type_hints = typing.get_type_hints(_typecheckingstub__14683b1742eef915011143c2de33d6d319c1b64df161e313fc74706f4cb6403e)
|
|
413
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
414
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
415
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
416
|
+
if name is not None:
|
|
417
|
+
self._values["name"] = name
|
|
418
|
+
if status is not None:
|
|
419
|
+
self._values["status"] = status
|
|
420
|
+
|
|
421
|
+
@builtins.property
|
|
422
|
+
def name(self) -> typing.Optional[builtins.str]:
|
|
423
|
+
'''
|
|
424
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureadditionalconfiguration.html#cfn-guardduty-detector-cfnfeatureadditionalconfiguration-name
|
|
425
|
+
'''
|
|
426
|
+
result = self._values.get("name")
|
|
427
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
428
|
+
|
|
429
|
+
@builtins.property
|
|
430
|
+
def status(self) -> typing.Optional[builtins.str]:
|
|
431
|
+
'''
|
|
432
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureadditionalconfiguration.html#cfn-guardduty-detector-cfnfeatureadditionalconfiguration-status
|
|
433
|
+
'''
|
|
434
|
+
result = self._values.get("status")
|
|
435
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
436
|
+
|
|
437
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
438
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
439
|
+
|
|
440
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
441
|
+
return not (rhs == self)
|
|
442
|
+
|
|
443
|
+
def __repr__(self) -> str:
|
|
444
|
+
return "CFNFeatureAdditionalConfigurationProperty(%s)" % ", ".join(
|
|
445
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
446
|
+
)
|
|
447
|
+
|
|
448
|
+
@jsii.data_type(
|
|
449
|
+
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.CFNFeatureConfigurationProperty",
|
|
450
|
+
jsii_struct_bases=[],
|
|
451
|
+
name_mapping={
|
|
452
|
+
"name": "name",
|
|
453
|
+
"status": "status",
|
|
454
|
+
"additional_configuration": "additionalConfiguration",
|
|
455
|
+
},
|
|
456
|
+
)
|
|
457
|
+
class CFNFeatureConfigurationProperty:
|
|
458
|
+
def __init__(
|
|
459
|
+
self,
|
|
460
|
+
*,
|
|
461
|
+
name: builtins.str,
|
|
462
|
+
status: builtins.str,
|
|
463
|
+
additional_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.CFNFeatureAdditionalConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
464
|
+
) -> None:
|
|
465
|
+
'''
|
|
466
|
+
:param name:
|
|
467
|
+
:param status:
|
|
468
|
+
:param additional_configuration:
|
|
469
|
+
|
|
470
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureconfiguration.html
|
|
471
|
+
:exampleMetadata: fixture=_generated
|
|
472
|
+
|
|
473
|
+
Example::
|
|
474
|
+
|
|
475
|
+
# The code below shows an example of how to instantiate this type.
|
|
476
|
+
# The values are placeholders you should change.
|
|
477
|
+
from aws_cdk import aws_guardduty as guardduty
|
|
478
|
+
|
|
479
|
+
c_fNFeature_configuration_property = guardduty.CfnDetector.CFNFeatureConfigurationProperty(
|
|
480
|
+
name="name",
|
|
481
|
+
status="status",
|
|
482
|
+
|
|
483
|
+
# the properties below are optional
|
|
484
|
+
additional_configuration=[guardduty.CfnDetector.CFNFeatureAdditionalConfigurationProperty(
|
|
485
|
+
name="name",
|
|
486
|
+
status="status"
|
|
487
|
+
)]
|
|
488
|
+
)
|
|
489
|
+
'''
|
|
490
|
+
if __debug__:
|
|
491
|
+
type_hints = typing.get_type_hints(_typecheckingstub__043c99c7f2180a2eecb506e75e5c7eb8b7eef11a8f6c22288b7ea40c683e3219)
|
|
492
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
493
|
+
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
494
|
+
check_type(argname="argument additional_configuration", value=additional_configuration, expected_type=type_hints["additional_configuration"])
|
|
495
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
496
|
+
"name": name,
|
|
497
|
+
"status": status,
|
|
498
|
+
}
|
|
499
|
+
if additional_configuration is not None:
|
|
500
|
+
self._values["additional_configuration"] = additional_configuration
|
|
501
|
+
|
|
502
|
+
@builtins.property
|
|
503
|
+
def name(self) -> builtins.str:
|
|
504
|
+
'''
|
|
505
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureconfiguration.html#cfn-guardduty-detector-cfnfeatureconfiguration-name
|
|
506
|
+
'''
|
|
507
|
+
result = self._values.get("name")
|
|
508
|
+
assert result is not None, "Required property 'name' is missing"
|
|
509
|
+
return typing.cast(builtins.str, result)
|
|
510
|
+
|
|
511
|
+
@builtins.property
|
|
512
|
+
def status(self) -> builtins.str:
|
|
513
|
+
'''
|
|
514
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureconfiguration.html#cfn-guardduty-detector-cfnfeatureconfiguration-status
|
|
515
|
+
'''
|
|
516
|
+
result = self._values.get("status")
|
|
517
|
+
assert result is not None, "Required property 'status' is missing"
|
|
518
|
+
return typing.cast(builtins.str, result)
|
|
519
|
+
|
|
520
|
+
@builtins.property
|
|
521
|
+
def additional_configuration(
|
|
522
|
+
self,
|
|
523
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNFeatureAdditionalConfigurationProperty"]]]]:
|
|
524
|
+
'''
|
|
525
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnfeatureconfiguration.html#cfn-guardduty-detector-cfnfeatureconfiguration-additionalconfiguration
|
|
526
|
+
'''
|
|
527
|
+
result = self._values.get("additional_configuration")
|
|
528
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNFeatureAdditionalConfigurationProperty"]]]], result)
|
|
529
|
+
|
|
530
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
531
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
532
|
+
|
|
533
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
534
|
+
return not (rhs == self)
|
|
535
|
+
|
|
536
|
+
def __repr__(self) -> str:
|
|
537
|
+
return "CFNFeatureConfigurationProperty(%s)" % ", ".join(
|
|
538
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
539
|
+
)
|
|
540
|
+
|
|
376
541
|
@jsii.data_type(
|
|
377
542
|
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.CFNKubernetesAuditLogsConfigurationProperty",
|
|
378
543
|
jsii_struct_bases=[],
|
|
@@ -382,7 +547,7 @@ class CfnDetector(
|
|
|
382
547
|
def __init__(
|
|
383
548
|
self,
|
|
384
549
|
*,
|
|
385
|
-
enable: typing.
|
|
550
|
+
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
386
551
|
) -> None:
|
|
387
552
|
'''Describes which optional data sources are enabled for a detector.
|
|
388
553
|
|
|
@@ -404,20 +569,19 @@ class CfnDetector(
|
|
|
404
569
|
if __debug__:
|
|
405
570
|
type_hints = typing.get_type_hints(_typecheckingstub__91a0cf3d36fd260bda8fbf7c652e71e3282b0a3867b477f0b4e992be46f9e9fc)
|
|
406
571
|
check_type(argname="argument enable", value=enable, expected_type=type_hints["enable"])
|
|
407
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
408
|
-
|
|
409
|
-
|
|
572
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
573
|
+
"enable": enable,
|
|
574
|
+
}
|
|
410
575
|
|
|
411
576
|
@builtins.property
|
|
412
|
-
def enable(
|
|
413
|
-
self,
|
|
414
|
-
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
577
|
+
def enable(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
415
578
|
'''Describes whether Kubernetes audit logs are enabled as a data source for the detector.
|
|
416
579
|
|
|
417
580
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnkubernetesauditlogsconfiguration.html#cfn-guardduty-detector-cfnkubernetesauditlogsconfiguration-enable
|
|
418
581
|
'''
|
|
419
582
|
result = self._values.get("enable")
|
|
420
|
-
|
|
583
|
+
assert result is not None, "Required property 'enable' is missing"
|
|
584
|
+
return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
|
|
421
585
|
|
|
422
586
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
423
587
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -439,7 +603,7 @@ class CfnDetector(
|
|
|
439
603
|
def __init__(
|
|
440
604
|
self,
|
|
441
605
|
*,
|
|
442
|
-
audit_logs: typing.
|
|
606
|
+
audit_logs: typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.CFNKubernetesAuditLogsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
443
607
|
) -> None:
|
|
444
608
|
'''Describes which Kubernetes protection data sources are enabled for the detector.
|
|
445
609
|
|
|
@@ -463,20 +627,21 @@ class CfnDetector(
|
|
|
463
627
|
if __debug__:
|
|
464
628
|
type_hints = typing.get_type_hints(_typecheckingstub__507c730ce77749f55565236ae0e0949766ee63b4e28eddebc38a59384af159d1)
|
|
465
629
|
check_type(argname="argument audit_logs", value=audit_logs, expected_type=type_hints["audit_logs"])
|
|
466
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
467
|
-
|
|
468
|
-
|
|
630
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
631
|
+
"audit_logs": audit_logs,
|
|
632
|
+
}
|
|
469
633
|
|
|
470
634
|
@builtins.property
|
|
471
635
|
def audit_logs(
|
|
472
636
|
self,
|
|
473
|
-
) -> typing.
|
|
637
|
+
) -> typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNKubernetesAuditLogsConfigurationProperty"]:
|
|
474
638
|
'''Describes whether Kubernetes audit logs are enabled as a data source for the detector.
|
|
475
639
|
|
|
476
640
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfnkubernetesconfiguration.html#cfn-guardduty-detector-cfnkubernetesconfiguration-auditlogs
|
|
477
641
|
'''
|
|
478
642
|
result = self._values.get("audit_logs")
|
|
479
|
-
|
|
643
|
+
assert result is not None, "Required property 'audit_logs' is missing"
|
|
644
|
+
return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnDetector.CFNKubernetesAuditLogsConfigurationProperty"], result)
|
|
480
645
|
|
|
481
646
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
482
647
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -559,7 +724,7 @@ class CfnDetector(
|
|
|
559
724
|
def __init__(
|
|
560
725
|
self,
|
|
561
726
|
*,
|
|
562
|
-
enable: typing.
|
|
727
|
+
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
563
728
|
) -> None:
|
|
564
729
|
'''Describes whether S3 data event logs will be enabled as a data source when the detector is created.
|
|
565
730
|
|
|
@@ -581,20 +746,19 @@ class CfnDetector(
|
|
|
581
746
|
if __debug__:
|
|
582
747
|
type_hints = typing.get_type_hints(_typecheckingstub__273397d5fa0880c36c6aca40485efece77caba905c5a76cf0e055b3125298f05)
|
|
583
748
|
check_type(argname="argument enable", value=enable, expected_type=type_hints["enable"])
|
|
584
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
585
|
-
|
|
586
|
-
|
|
749
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
750
|
+
"enable": enable,
|
|
751
|
+
}
|
|
587
752
|
|
|
588
753
|
@builtins.property
|
|
589
|
-
def enable(
|
|
590
|
-
self,
|
|
591
|
-
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
754
|
+
def enable(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
592
755
|
'''The status of S3 data event logs as a data source.
|
|
593
756
|
|
|
594
757
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-cfns3logsconfiguration.html#cfn-guardduty-detector-cfns3logsconfiguration-enable
|
|
595
758
|
'''
|
|
596
759
|
result = self._values.get("enable")
|
|
597
|
-
|
|
760
|
+
assert result is not None, "Required property 'enable' is missing"
|
|
761
|
+
return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
|
|
598
762
|
|
|
599
763
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
600
764
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -665,105 +829,17 @@ class CfnDetector(
|
|
|
665
829
|
)
|
|
666
830
|
|
|
667
831
|
@jsii.data_type(
|
|
668
|
-
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.
|
|
832
|
+
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.TagItemProperty",
|
|
669
833
|
jsii_struct_bases=[],
|
|
670
|
-
name_mapping={"
|
|
834
|
+
name_mapping={"key": "key", "value": "value"},
|
|
671
835
|
)
|
|
672
|
-
class
|
|
673
|
-
def __init__(
|
|
674
|
-
self,
|
|
675
|
-
*,
|
|
676
|
-
name: typing.Optional[builtins.str] = None,
|
|
677
|
-
status: typing.Optional[builtins.str] = None,
|
|
678
|
-
) -> None:
|
|
679
|
-
'''Describes the additional configuration for a feature.
|
|
680
|
-
|
|
681
|
-
If you want to specify any additional configuration for your feature, it is required to provide the ``Name`` and ``Status`` for that additional configuration. For more information, see `DetectorAdditionalConfiguration <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_DetectorAdditionalConfiguration.html>`_ .
|
|
682
|
-
|
|
683
|
-
If you're providing additional configuration, ensure to provide the corresponding `FeatureConfigurations <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureconfigurations.html#cfn-guardduty-detector-featureconfigurations-additionalconfiguration>`_ .
|
|
684
|
-
|
|
685
|
-
:param name: Name of the additional configuration of a feature.
|
|
686
|
-
:param status: Status of the additional configuration of a feature.
|
|
687
|
-
|
|
688
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureadditionalconfiguration.html
|
|
689
|
-
:exampleMetadata: fixture=_generated
|
|
690
|
-
|
|
691
|
-
Example::
|
|
692
|
-
|
|
693
|
-
# The code below shows an example of how to instantiate this type.
|
|
694
|
-
# The values are placeholders you should change.
|
|
695
|
-
from aws_cdk import aws_guardduty as guardduty
|
|
696
|
-
|
|
697
|
-
feature_additional_configuration_property = guardduty.CfnDetector.FeatureAdditionalConfigurationProperty(
|
|
698
|
-
name="name",
|
|
699
|
-
status="status"
|
|
700
|
-
)
|
|
701
|
-
'''
|
|
702
|
-
if __debug__:
|
|
703
|
-
type_hints = typing.get_type_hints(_typecheckingstub__cb1d313a0a14310f6b849190dee89a2da63dae70d22f924dc5da548f75272d58)
|
|
704
|
-
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
705
|
-
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
706
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
707
|
-
if name is not None:
|
|
708
|
-
self._values["name"] = name
|
|
709
|
-
if status is not None:
|
|
710
|
-
self._values["status"] = status
|
|
711
|
-
|
|
712
|
-
@builtins.property
|
|
713
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
714
|
-
'''Name of the additional configuration of a feature.
|
|
715
|
-
|
|
716
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureadditionalconfiguration.html#cfn-guardduty-detector-featureadditionalconfiguration-name
|
|
717
|
-
'''
|
|
718
|
-
result = self._values.get("name")
|
|
719
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
720
|
-
|
|
721
|
-
@builtins.property
|
|
722
|
-
def status(self) -> typing.Optional[builtins.str]:
|
|
723
|
-
'''Status of the additional configuration of a feature.
|
|
724
|
-
|
|
725
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureadditionalconfiguration.html#cfn-guardduty-detector-featureadditionalconfiguration-status
|
|
836
|
+
class TagItemProperty:
|
|
837
|
+
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
726
838
|
'''
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
731
|
-
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
732
|
-
|
|
733
|
-
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
734
|
-
return not (rhs == self)
|
|
735
|
-
|
|
736
|
-
def __repr__(self) -> str:
|
|
737
|
-
return "FeatureAdditionalConfigurationProperty(%s)" % ", ".join(
|
|
738
|
-
k + "=" + repr(v) for k, v in self._values.items()
|
|
739
|
-
)
|
|
740
|
-
|
|
741
|
-
@jsii.data_type(
|
|
742
|
-
jsii_type="aws-cdk-lib.aws_guardduty.CfnDetector.FeatureConfigurationsProperty",
|
|
743
|
-
jsii_struct_bases=[],
|
|
744
|
-
name_mapping={
|
|
745
|
-
"additional_configuration": "additionalConfiguration",
|
|
746
|
-
"name": "name",
|
|
747
|
-
"status": "status",
|
|
748
|
-
},
|
|
749
|
-
)
|
|
750
|
-
class FeatureConfigurationsProperty:
|
|
751
|
-
def __init__(
|
|
752
|
-
self,
|
|
753
|
-
*,
|
|
754
|
-
additional_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDetector.FeatureAdditionalConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
755
|
-
name: typing.Optional[builtins.str] = None,
|
|
756
|
-
status: typing.Optional[builtins.str] = None,
|
|
757
|
-
) -> None:
|
|
758
|
-
'''Describes the configuration for a feature.
|
|
759
|
-
|
|
760
|
-
Although the ``Required`` field associated with the following properties specifies ``No`` , if you provide information for ``Name`` , you will need to provide the information for ``Status`` too. For information about the available feature configurations, see `DetectorFeatureConfiguration <https://docs.aws.amazon.com/guardduty/latest/APIReference/API_DetectorFeatureConfiguration.html>`_ .
|
|
761
|
-
|
|
762
|
-
:param additional_configuration: Additional configuration of the feature.
|
|
763
|
-
:param name: Name of the feature.
|
|
764
|
-
:param status: Status of the feature.
|
|
839
|
+
:param key:
|
|
840
|
+
:param value:
|
|
765
841
|
|
|
766
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-
|
|
842
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-tagitem.html
|
|
767
843
|
:exampleMetadata: fixture=_generated
|
|
768
844
|
|
|
769
845
|
Example::
|
|
@@ -772,56 +848,37 @@ class CfnDetector(
|
|
|
772
848
|
# The values are placeholders you should change.
|
|
773
849
|
from aws_cdk import aws_guardduty as guardduty
|
|
774
850
|
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
status="status"
|
|
779
|
-
)],
|
|
780
|
-
name="name",
|
|
781
|
-
status="status"
|
|
851
|
+
tag_item_property = guardduty.CfnDetector.TagItemProperty(
|
|
852
|
+
key="key",
|
|
853
|
+
value="value"
|
|
782
854
|
)
|
|
783
855
|
'''
|
|
784
856
|
if __debug__:
|
|
785
|
-
type_hints = typing.get_type_hints(
|
|
786
|
-
check_type(argname="argument
|
|
787
|
-
check_type(argname="argument
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
if name is not None:
|
|
793
|
-
self._values["name"] = name
|
|
794
|
-
if status is not None:
|
|
795
|
-
self._values["status"] = status
|
|
857
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3426efe6dc1168d06decb2e9b19e645c1e5e0a25fe35c90fe369bf09298964e2)
|
|
858
|
+
check_type(argname="argument key", value=key, expected_type=type_hints["key"])
|
|
859
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
860
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
861
|
+
"key": key,
|
|
862
|
+
"value": value,
|
|
863
|
+
}
|
|
796
864
|
|
|
797
865
|
@builtins.property
|
|
798
|
-
def
|
|
799
|
-
self,
|
|
800
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.FeatureAdditionalConfigurationProperty"]]]]:
|
|
801
|
-
'''Additional configuration of the feature.
|
|
802
|
-
|
|
803
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureconfigurations.html#cfn-guardduty-detector-featureconfigurations-additionalconfiguration
|
|
866
|
+
def key(self) -> builtins.str:
|
|
804
867
|
'''
|
|
805
|
-
|
|
806
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDetector.FeatureAdditionalConfigurationProperty"]]]], result)
|
|
807
|
-
|
|
808
|
-
@builtins.property
|
|
809
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
810
|
-
'''Name of the feature.
|
|
811
|
-
|
|
812
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureconfigurations.html#cfn-guardduty-detector-featureconfigurations-name
|
|
868
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-tagitem.html#cfn-guardduty-detector-tagitem-key
|
|
813
869
|
'''
|
|
814
|
-
result = self._values.get("
|
|
815
|
-
|
|
870
|
+
result = self._values.get("key")
|
|
871
|
+
assert result is not None, "Required property 'key' is missing"
|
|
872
|
+
return typing.cast(builtins.str, result)
|
|
816
873
|
|
|
817
874
|
@builtins.property
|
|
818
|
-
def
|
|
819
|
-
'''Status of the feature.
|
|
820
|
-
|
|
821
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-featureconfigurations.html#cfn-guardduty-detector-featureconfigurations-status
|
|
875
|
+
def value(self) -> builtins.str:
|
|
822
876
|
'''
|
|
823
|
-
|
|
824
|
-
|
|
877
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-guardduty-detector-tagitem.html#cfn-guardduty-detector-tagitem-value
|
|
878
|
+
'''
|
|
879
|
+
result = self._values.get("value")
|
|
880
|
+
assert result is not None, "Required property 'value' is missing"
|
|
881
|
+
return typing.cast(builtins.str, result)
|
|
825
882
|
|
|
826
883
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
827
884
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -830,7 +887,7 @@ class CfnDetector(
|
|
|
830
887
|
return not (rhs == self)
|
|
831
888
|
|
|
832
889
|
def __repr__(self) -> str:
|
|
833
|
-
return "
|
|
890
|
+
return "TagItemProperty(%s)" % ", ".join(
|
|
834
891
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
835
892
|
)
|
|
836
893
|
|
|
@@ -852,9 +909,9 @@ class CfnDetectorProps:
|
|
|
852
909
|
*,
|
|
853
910
|
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
854
911
|
data_sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNDataSourceConfigurationsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
855
|
-
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.
|
|
912
|
+
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNFeatureConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
856
913
|
finding_publishing_frequency: typing.Optional[builtins.str] = None,
|
|
857
|
-
tags: typing.Optional[typing.Sequence[typing.Union[
|
|
914
|
+
tags: typing.Optional[typing.Sequence[typing.Union[CfnDetector.TagItemProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
858
915
|
) -> None:
|
|
859
916
|
'''Properties for defining a ``CfnDetector``.
|
|
860
917
|
|
|
@@ -892,16 +949,18 @@ class CfnDetectorProps:
|
|
|
892
949
|
enable=False
|
|
893
950
|
)
|
|
894
951
|
),
|
|
895
|
-
features=[guardduty.CfnDetector.
|
|
896
|
-
|
|
952
|
+
features=[guardduty.CfnDetector.CFNFeatureConfigurationProperty(
|
|
953
|
+
name="name",
|
|
954
|
+
status="status",
|
|
955
|
+
|
|
956
|
+
# the properties below are optional
|
|
957
|
+
additional_configuration=[guardduty.CfnDetector.CFNFeatureAdditionalConfigurationProperty(
|
|
897
958
|
name="name",
|
|
898
959
|
status="status"
|
|
899
|
-
)]
|
|
900
|
-
name="name",
|
|
901
|
-
status="status"
|
|
960
|
+
)]
|
|
902
961
|
)],
|
|
903
962
|
finding_publishing_frequency="findingPublishingFrequency",
|
|
904
|
-
tags=[
|
|
963
|
+
tags=[guardduty.CfnDetector.TagItemProperty(
|
|
905
964
|
key="key",
|
|
906
965
|
value="value"
|
|
907
966
|
)]
|
|
@@ -950,13 +1009,13 @@ class CfnDetectorProps:
|
|
|
950
1009
|
@builtins.property
|
|
951
1010
|
def features(
|
|
952
1011
|
self,
|
|
953
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.
|
|
1012
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.CFNFeatureConfigurationProperty]]]]:
|
|
954
1013
|
'''A list of features that will be configured for the detector.
|
|
955
1014
|
|
|
956
1015
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-features
|
|
957
1016
|
'''
|
|
958
1017
|
result = self._values.get("features")
|
|
959
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.
|
|
1018
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.CFNFeatureConfigurationProperty]]]], result)
|
|
960
1019
|
|
|
961
1020
|
@builtins.property
|
|
962
1021
|
def finding_publishing_frequency(self) -> typing.Optional[builtins.str]:
|
|
@@ -968,7 +1027,7 @@ class CfnDetectorProps:
|
|
|
968
1027
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
969
1028
|
|
|
970
1029
|
@builtins.property
|
|
971
|
-
def tags(self) -> typing.Optional[typing.List[
|
|
1030
|
+
def tags(self) -> typing.Optional[typing.List[CfnDetector.TagItemProperty]]:
|
|
972
1031
|
'''Specifies tags added to a new detector resource.
|
|
973
1032
|
|
|
974
1033
|
Each tag consists of a key and an optional value, both of which you define.
|
|
@@ -980,7 +1039,7 @@ class CfnDetectorProps:
|
|
|
980
1039
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-tags
|
|
981
1040
|
'''
|
|
982
1041
|
result = self._values.get("tags")
|
|
983
|
-
return typing.cast(typing.Optional[typing.List[
|
|
1042
|
+
return typing.cast(typing.Optional[typing.List[CfnDetector.TagItemProperty]], result)
|
|
984
1043
|
|
|
985
1044
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
986
1045
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -3126,9 +3185,9 @@ def _typecheckingstub__d4374e73b5cd2e2814bd72eb21f29547df6146e023d23ee6d5c8c8cdb
|
|
|
3126
3185
|
*,
|
|
3127
3186
|
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
3128
3187
|
data_sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNDataSourceConfigurationsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3129
|
-
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.
|
|
3188
|
+
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNFeatureConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3130
3189
|
finding_publishing_frequency: typing.Optional[builtins.str] = None,
|
|
3131
|
-
tags: typing.Optional[typing.Sequence[typing.Union[
|
|
3190
|
+
tags: typing.Optional[typing.Sequence[typing.Union[CfnDetector.TagItemProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3132
3191
|
) -> None:
|
|
3133
3192
|
"""Type checking stubs"""
|
|
3134
3193
|
pass
|
|
@@ -3158,7 +3217,7 @@ def _typecheckingstub__d984644fe0d5555f018ae12b1bfbb1e875501438854ca50d249d3cd60
|
|
|
3158
3217
|
pass
|
|
3159
3218
|
|
|
3160
3219
|
def _typecheckingstub__77d162426268bf9dc8b5f3efea1e4d49418ad72947ae8c15de703212246d36f5(
|
|
3161
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.
|
|
3220
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDetector.CFNFeatureConfigurationProperty]]]],
|
|
3162
3221
|
) -> None:
|
|
3163
3222
|
"""Type checking stubs"""
|
|
3164
3223
|
pass
|
|
@@ -3170,7 +3229,7 @@ def _typecheckingstub__b05a15130d3f8d159abcddfb10123f12bf70fc091e86be777252ab49a
|
|
|
3170
3229
|
pass
|
|
3171
3230
|
|
|
3172
3231
|
def _typecheckingstub__273b490c75e93f137bcaf4b10d4df89064d16e78f021b92c6008b18c9c74e99c(
|
|
3173
|
-
value: typing.Optional[typing.List[
|
|
3232
|
+
value: typing.Optional[typing.List[CfnDetector.TagItemProperty]],
|
|
3174
3233
|
) -> None:
|
|
3175
3234
|
"""Type checking stubs"""
|
|
3176
3235
|
pass
|
|
@@ -3184,16 +3243,33 @@ def _typecheckingstub__9cc6f5e6dd89fc0d30f28179b1bc893366d4b68b6eff35d1ed195ef95
|
|
|
3184
3243
|
"""Type checking stubs"""
|
|
3185
3244
|
pass
|
|
3186
3245
|
|
|
3246
|
+
def _typecheckingstub__14683b1742eef915011143c2de33d6d319c1b64df161e313fc74706f4cb6403e(
|
|
3247
|
+
*,
|
|
3248
|
+
name: typing.Optional[builtins.str] = None,
|
|
3249
|
+
status: typing.Optional[builtins.str] = None,
|
|
3250
|
+
) -> None:
|
|
3251
|
+
"""Type checking stubs"""
|
|
3252
|
+
pass
|
|
3253
|
+
|
|
3254
|
+
def _typecheckingstub__043c99c7f2180a2eecb506e75e5c7eb8b7eef11a8f6c22288b7ea40c683e3219(
|
|
3255
|
+
*,
|
|
3256
|
+
name: builtins.str,
|
|
3257
|
+
status: builtins.str,
|
|
3258
|
+
additional_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNFeatureAdditionalConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3259
|
+
) -> None:
|
|
3260
|
+
"""Type checking stubs"""
|
|
3261
|
+
pass
|
|
3262
|
+
|
|
3187
3263
|
def _typecheckingstub__91a0cf3d36fd260bda8fbf7c652e71e3282b0a3867b477f0b4e992be46f9e9fc(
|
|
3188
3264
|
*,
|
|
3189
|
-
enable: typing.
|
|
3265
|
+
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
3190
3266
|
) -> None:
|
|
3191
3267
|
"""Type checking stubs"""
|
|
3192
3268
|
pass
|
|
3193
3269
|
|
|
3194
3270
|
def _typecheckingstub__507c730ce77749f55565236ae0e0949766ee63b4e28eddebc38a59384af159d1(
|
|
3195
3271
|
*,
|
|
3196
|
-
audit_logs: typing.
|
|
3272
|
+
audit_logs: typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNKubernetesAuditLogsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
3197
3273
|
) -> None:
|
|
3198
3274
|
"""Type checking stubs"""
|
|
3199
3275
|
pass
|
|
@@ -3207,7 +3283,7 @@ def _typecheckingstub__b489755354068d624ff07c4dbcaacb69f242db268771504faaf7ec08d
|
|
|
3207
3283
|
|
|
3208
3284
|
def _typecheckingstub__273397d5fa0880c36c6aca40485efece77caba905c5a76cf0e055b3125298f05(
|
|
3209
3285
|
*,
|
|
3210
|
-
enable: typing.
|
|
3286
|
+
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
3211
3287
|
) -> None:
|
|
3212
3288
|
"""Type checking stubs"""
|
|
3213
3289
|
pass
|
|
@@ -3219,19 +3295,10 @@ def _typecheckingstub__f726c6703e77466e481c466dc3d2680cf3ce31a2bfc0af08fdc357084
|
|
|
3219
3295
|
"""Type checking stubs"""
|
|
3220
3296
|
pass
|
|
3221
3297
|
|
|
3222
|
-
def
|
|
3298
|
+
def _typecheckingstub__3426efe6dc1168d06decb2e9b19e645c1e5e0a25fe35c90fe369bf09298964e2(
|
|
3223
3299
|
*,
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
) -> None:
|
|
3227
|
-
"""Type checking stubs"""
|
|
3228
|
-
pass
|
|
3229
|
-
|
|
3230
|
-
def _typecheckingstub__8f95505a43158b2ecb934d0eda3be9e00ddd25a7f5ec93e48b5a2ca2bcd6addf(
|
|
3231
|
-
*,
|
|
3232
|
-
additional_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.FeatureAdditionalConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3233
|
-
name: typing.Optional[builtins.str] = None,
|
|
3234
|
-
status: typing.Optional[builtins.str] = None,
|
|
3300
|
+
key: builtins.str,
|
|
3301
|
+
value: builtins.str,
|
|
3235
3302
|
) -> None:
|
|
3236
3303
|
"""Type checking stubs"""
|
|
3237
3304
|
pass
|
|
@@ -3240,9 +3307,9 @@ def _typecheckingstub__3914f92ec13130f6437ebb8077c96e2e1592d547cc445617fe4957f62
|
|
|
3240
3307
|
*,
|
|
3241
3308
|
enable: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
3242
3309
|
data_sources: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNDataSourceConfigurationsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3243
|
-
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.
|
|
3310
|
+
features: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDetector.CFNFeatureConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3244
3311
|
finding_publishing_frequency: typing.Optional[builtins.str] = None,
|
|
3245
|
-
tags: typing.Optional[typing.Sequence[typing.Union[
|
|
3312
|
+
tags: typing.Optional[typing.Sequence[typing.Union[CfnDetector.TagItemProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3246
3313
|
) -> None:
|
|
3247
3314
|
"""Type checking stubs"""
|
|
3248
3315
|
pass
|