aws-cdk-lib 2.202.0__py3-none-any.whl → 2.203.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 +46 -47
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.202.0.jsii.tgz → aws-cdk-lib@2.203.1.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +61 -18
- aws_cdk/aws_cloudfront/experimental/__init__.py +37 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +140 -20
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +159 -7
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_iam/__init__.py +8 -8
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +14 -8
- aws_cdk/aws_lambda/__init__.py +191 -24
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +171 -41
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +6 -2
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +156 -51
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +15 -14
- aws_cdk/pipelines/__init__.py +31 -3
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/RECORD +62 -59
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.202.0.dist-info → aws_cdk_lib-2.203.1.dist-info}/top_level.txt +0 -0
|
@@ -945,7 +945,7 @@ class CfnCisScanConfigurationProps:
|
|
|
945
945
|
)
|
|
946
946
|
|
|
947
947
|
|
|
948
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
948
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
949
949
|
class CfnFilter(
|
|
950
950
|
_CfnResource_9df397a6,
|
|
951
951
|
metaclass=jsii.JSIIMeta,
|
|
@@ -970,6 +970,18 @@ class CfnFilter(
|
|
|
970
970
|
comparison="comparison",
|
|
971
971
|
value="value"
|
|
972
972
|
)],
|
|
973
|
+
code_vulnerability_detector_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
974
|
+
comparison="comparison",
|
|
975
|
+
value="value"
|
|
976
|
+
)],
|
|
977
|
+
code_vulnerability_detector_tags=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
978
|
+
comparison="comparison",
|
|
979
|
+
value="value"
|
|
980
|
+
)],
|
|
981
|
+
code_vulnerability_file_path=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
982
|
+
comparison="comparison",
|
|
983
|
+
value="value"
|
|
984
|
+
)],
|
|
973
985
|
component_id=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
974
986
|
comparison="comparison",
|
|
975
987
|
value="value"
|
|
@@ -1014,6 +1026,14 @@ class CfnFilter(
|
|
|
1014
1026
|
comparison="comparison",
|
|
1015
1027
|
value="value"
|
|
1016
1028
|
)],
|
|
1029
|
+
epss_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
1030
|
+
lower_inclusive=123,
|
|
1031
|
+
upper_inclusive=123
|
|
1032
|
+
)],
|
|
1033
|
+
exploit_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1034
|
+
comparison="comparison",
|
|
1035
|
+
value="value"
|
|
1036
|
+
)],
|
|
1017
1037
|
finding_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1018
1038
|
comparison="comparison",
|
|
1019
1039
|
value="value"
|
|
@@ -1030,10 +1050,34 @@ class CfnFilter(
|
|
|
1030
1050
|
end_inclusive=123,
|
|
1031
1051
|
start_inclusive=123
|
|
1032
1052
|
)],
|
|
1053
|
+
fix_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1054
|
+
comparison="comparison",
|
|
1055
|
+
value="value"
|
|
1056
|
+
)],
|
|
1033
1057
|
inspector_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
1034
1058
|
lower_inclusive=123,
|
|
1035
1059
|
upper_inclusive=123
|
|
1036
1060
|
)],
|
|
1061
|
+
lambda_function_execution_role_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1062
|
+
comparison="comparison",
|
|
1063
|
+
value="value"
|
|
1064
|
+
)],
|
|
1065
|
+
lambda_function_last_modified_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
1066
|
+
end_inclusive=123,
|
|
1067
|
+
start_inclusive=123
|
|
1068
|
+
)],
|
|
1069
|
+
lambda_function_layers=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1070
|
+
comparison="comparison",
|
|
1071
|
+
value="value"
|
|
1072
|
+
)],
|
|
1073
|
+
lambda_function_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1074
|
+
comparison="comparison",
|
|
1075
|
+
value="value"
|
|
1076
|
+
)],
|
|
1077
|
+
lambda_function_runtime=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1078
|
+
comparison="comparison",
|
|
1079
|
+
value="value"
|
|
1080
|
+
)],
|
|
1037
1081
|
last_observed_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
1038
1082
|
end_inclusive=123,
|
|
1039
1083
|
start_inclusive=123
|
|
@@ -1098,6 +1142,10 @@ class CfnFilter(
|
|
|
1098
1142
|
lower_inclusive=123,
|
|
1099
1143
|
upper_inclusive=123
|
|
1100
1144
|
),
|
|
1145
|
+
file_path=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1146
|
+
comparison="comparison",
|
|
1147
|
+
value="value"
|
|
1148
|
+
),
|
|
1101
1149
|
name=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1102
1150
|
comparison="comparison",
|
|
1103
1151
|
value="value"
|
|
@@ -1106,6 +1154,10 @@ class CfnFilter(
|
|
|
1106
1154
|
comparison="comparison",
|
|
1107
1155
|
value="value"
|
|
1108
1156
|
),
|
|
1157
|
+
source_lambda_layer_arn=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1158
|
+
comparison="comparison",
|
|
1159
|
+
value="value"
|
|
1160
|
+
),
|
|
1109
1161
|
source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1110
1162
|
comparison="comparison",
|
|
1111
1163
|
value="value"
|
|
@@ -1119,7 +1171,10 @@ class CfnFilter(
|
|
|
1119
1171
|
name="name",
|
|
1120
1172
|
|
|
1121
1173
|
# the properties below are optional
|
|
1122
|
-
description="description"
|
|
1174
|
+
description="description",
|
|
1175
|
+
tags={
|
|
1176
|
+
"tags_key": "tags"
|
|
1177
|
+
}
|
|
1123
1178
|
)
|
|
1124
1179
|
'''
|
|
1125
1180
|
|
|
@@ -1132,6 +1187,7 @@ class CfnFilter(
|
|
|
1132
1187
|
filter_criteria: typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.FilterCriteriaProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
1133
1188
|
name: builtins.str,
|
|
1134
1189
|
description: typing.Optional[builtins.str] = None,
|
|
1190
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1135
1191
|
) -> None:
|
|
1136
1192
|
'''
|
|
1137
1193
|
:param scope: Scope in which this resource is defined.
|
|
@@ -1140,6 +1196,7 @@ class CfnFilter(
|
|
|
1140
1196
|
:param filter_criteria: Details on the filter criteria associated with this filter.
|
|
1141
1197
|
:param name: The name of the filter.
|
|
1142
1198
|
:param description: A description of the filter.
|
|
1199
|
+
:param tags: The tags attached to the filter.
|
|
1143
1200
|
'''
|
|
1144
1201
|
if __debug__:
|
|
1145
1202
|
type_hints = typing.get_type_hints(_typecheckingstub__76aaac8f8d755716225a5dd2d4902f3e7ec007381fa82a2d163553362c975c9d)
|
|
@@ -1150,6 +1207,7 @@ class CfnFilter(
|
|
|
1150
1207
|
filter_criteria=filter_criteria,
|
|
1151
1208
|
name=name,
|
|
1152
1209
|
description=description,
|
|
1210
|
+
tags=tags,
|
|
1153
1211
|
)
|
|
1154
1212
|
|
|
1155
1213
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -1193,6 +1251,12 @@ class CfnFilter(
|
|
|
1193
1251
|
'''
|
|
1194
1252
|
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
1195
1253
|
|
|
1254
|
+
@builtins.property
|
|
1255
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
1256
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
1257
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
1258
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
1259
|
+
|
|
1196
1260
|
@builtins.property
|
|
1197
1261
|
@jsii.member(jsii_name="cfnProperties")
|
|
1198
1262
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -1255,6 +1319,22 @@ class CfnFilter(
|
|
|
1255
1319
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1256
1320
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
1257
1321
|
|
|
1322
|
+
@builtins.property
|
|
1323
|
+
@jsii.member(jsii_name="tags")
|
|
1324
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
1325
|
+
'''The tags attached to the filter.'''
|
|
1326
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
1327
|
+
|
|
1328
|
+
@tags.setter
|
|
1329
|
+
def tags(
|
|
1330
|
+
self,
|
|
1331
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
1332
|
+
) -> None:
|
|
1333
|
+
if __debug__:
|
|
1334
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2d85ec3c1992f35abc960573e86c94eb9d5f4d6c6fd9f47728ef03d5078212f1)
|
|
1335
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1336
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
1337
|
+
|
|
1258
1338
|
@jsii.data_type(
|
|
1259
1339
|
jsii_type="aws-cdk-lib.aws_inspectorv2.CfnFilter.DateFilterProperty",
|
|
1260
1340
|
jsii_struct_bases=[],
|
|
@@ -1333,6 +1413,9 @@ class CfnFilter(
|
|
|
1333
1413
|
jsii_struct_bases=[],
|
|
1334
1414
|
name_mapping={
|
|
1335
1415
|
"aws_account_id": "awsAccountId",
|
|
1416
|
+
"code_vulnerability_detector_name": "codeVulnerabilityDetectorName",
|
|
1417
|
+
"code_vulnerability_detector_tags": "codeVulnerabilityDetectorTags",
|
|
1418
|
+
"code_vulnerability_file_path": "codeVulnerabilityFilePath",
|
|
1336
1419
|
"component_id": "componentId",
|
|
1337
1420
|
"component_type": "componentType",
|
|
1338
1421
|
"ec2_instance_image_id": "ec2InstanceImageId",
|
|
@@ -1344,11 +1427,19 @@ class CfnFilter(
|
|
|
1344
1427
|
"ecr_image_registry": "ecrImageRegistry",
|
|
1345
1428
|
"ecr_image_repository_name": "ecrImageRepositoryName",
|
|
1346
1429
|
"ecr_image_tags": "ecrImageTags",
|
|
1430
|
+
"epss_score": "epssScore",
|
|
1431
|
+
"exploit_available": "exploitAvailable",
|
|
1347
1432
|
"finding_arn": "findingArn",
|
|
1348
1433
|
"finding_status": "findingStatus",
|
|
1349
1434
|
"finding_type": "findingType",
|
|
1350
1435
|
"first_observed_at": "firstObservedAt",
|
|
1436
|
+
"fix_available": "fixAvailable",
|
|
1351
1437
|
"inspector_score": "inspectorScore",
|
|
1438
|
+
"lambda_function_execution_role_arn": "lambdaFunctionExecutionRoleArn",
|
|
1439
|
+
"lambda_function_last_modified_at": "lambdaFunctionLastModifiedAt",
|
|
1440
|
+
"lambda_function_layers": "lambdaFunctionLayers",
|
|
1441
|
+
"lambda_function_name": "lambdaFunctionName",
|
|
1442
|
+
"lambda_function_runtime": "lambdaFunctionRuntime",
|
|
1352
1443
|
"last_observed_at": "lastObservedAt",
|
|
1353
1444
|
"network_protocol": "networkProtocol",
|
|
1354
1445
|
"port_range": "portRange",
|
|
@@ -1370,6 +1461,9 @@ class CfnFilter(
|
|
|
1370
1461
|
self,
|
|
1371
1462
|
*,
|
|
1372
1463
|
aws_account_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1464
|
+
code_vulnerability_detector_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1465
|
+
code_vulnerability_detector_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1466
|
+
code_vulnerability_file_path: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1373
1467
|
component_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1374
1468
|
component_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1375
1469
|
ec2_instance_image_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -1381,11 +1475,19 @@ class CfnFilter(
|
|
|
1381
1475
|
ecr_image_registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1382
1476
|
ecr_image_repository_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1383
1477
|
ecr_image_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1478
|
+
epss_score: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.NumberFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1479
|
+
exploit_available: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1384
1480
|
finding_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1385
1481
|
finding_status: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1386
1482
|
finding_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1387
1483
|
first_observed_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.DateFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1484
|
+
fix_available: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1388
1485
|
inspector_score: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.NumberFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1486
|
+
lambda_function_execution_role_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1487
|
+
lambda_function_last_modified_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.DateFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1488
|
+
lambda_function_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1489
|
+
lambda_function_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1490
|
+
lambda_function_runtime: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1389
1491
|
last_observed_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.DateFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1390
1492
|
network_protocol: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1391
1493
|
port_range: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.PortRangeFilterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -1404,6 +1506,9 @@ class CfnFilter(
|
|
|
1404
1506
|
'''Details on the criteria used to define the filter.
|
|
1405
1507
|
|
|
1406
1508
|
:param aws_account_id: Details of the AWS account IDs used to filter findings.
|
|
1509
|
+
:param code_vulnerability_detector_name:
|
|
1510
|
+
:param code_vulnerability_detector_tags:
|
|
1511
|
+
:param code_vulnerability_file_path:
|
|
1407
1512
|
:param component_id: Details of the component IDs used to filter findings.
|
|
1408
1513
|
:param component_type: Details of the component types used to filter findings.
|
|
1409
1514
|
:param ec2_instance_image_id: Details of the Amazon EC2 instance image IDs used to filter findings.
|
|
@@ -1415,11 +1520,19 @@ class CfnFilter(
|
|
|
1415
1520
|
:param ecr_image_registry: Details on the Amazon ECR registry used to filter findings.
|
|
1416
1521
|
:param ecr_image_repository_name: Details on the name of the Amazon ECR repository used to filter findings.
|
|
1417
1522
|
:param ecr_image_tags: The tags attached to the Amazon ECR container image.
|
|
1523
|
+
:param epss_score:
|
|
1524
|
+
:param exploit_available:
|
|
1418
1525
|
:param finding_arn: Details on the finding ARNs used to filter findings.
|
|
1419
1526
|
:param finding_status: Details on the finding status types used to filter findings.
|
|
1420
1527
|
:param finding_type: Details on the finding types used to filter findings.
|
|
1421
1528
|
:param first_observed_at: Details on the date and time a finding was first seen used to filter findings.
|
|
1529
|
+
:param fix_available:
|
|
1422
1530
|
:param inspector_score: The Amazon Inspector score to filter on.
|
|
1531
|
+
:param lambda_function_execution_role_arn:
|
|
1532
|
+
:param lambda_function_last_modified_at:
|
|
1533
|
+
:param lambda_function_layers:
|
|
1534
|
+
:param lambda_function_name:
|
|
1535
|
+
:param lambda_function_runtime:
|
|
1423
1536
|
:param last_observed_at: Details on the date and time a finding was last seen used to filter findings.
|
|
1424
1537
|
:param network_protocol: Details on network protocol used to filter findings.
|
|
1425
1538
|
:param port_range: Details on the port ranges used to filter findings.
|
|
@@ -1449,6 +1562,18 @@ class CfnFilter(
|
|
|
1449
1562
|
comparison="comparison",
|
|
1450
1563
|
value="value"
|
|
1451
1564
|
)],
|
|
1565
|
+
code_vulnerability_detector_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1566
|
+
comparison="comparison",
|
|
1567
|
+
value="value"
|
|
1568
|
+
)],
|
|
1569
|
+
code_vulnerability_detector_tags=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1570
|
+
comparison="comparison",
|
|
1571
|
+
value="value"
|
|
1572
|
+
)],
|
|
1573
|
+
code_vulnerability_file_path=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1574
|
+
comparison="comparison",
|
|
1575
|
+
value="value"
|
|
1576
|
+
)],
|
|
1452
1577
|
component_id=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1453
1578
|
comparison="comparison",
|
|
1454
1579
|
value="value"
|
|
@@ -1493,6 +1618,14 @@ class CfnFilter(
|
|
|
1493
1618
|
comparison="comparison",
|
|
1494
1619
|
value="value"
|
|
1495
1620
|
)],
|
|
1621
|
+
epss_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
1622
|
+
lower_inclusive=123,
|
|
1623
|
+
upper_inclusive=123
|
|
1624
|
+
)],
|
|
1625
|
+
exploit_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1626
|
+
comparison="comparison",
|
|
1627
|
+
value="value"
|
|
1628
|
+
)],
|
|
1496
1629
|
finding_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1497
1630
|
comparison="comparison",
|
|
1498
1631
|
value="value"
|
|
@@ -1509,10 +1642,34 @@ class CfnFilter(
|
|
|
1509
1642
|
end_inclusive=123,
|
|
1510
1643
|
start_inclusive=123
|
|
1511
1644
|
)],
|
|
1645
|
+
fix_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1646
|
+
comparison="comparison",
|
|
1647
|
+
value="value"
|
|
1648
|
+
)],
|
|
1512
1649
|
inspector_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
1513
1650
|
lower_inclusive=123,
|
|
1514
1651
|
upper_inclusive=123
|
|
1515
1652
|
)],
|
|
1653
|
+
lambda_function_execution_role_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1654
|
+
comparison="comparison",
|
|
1655
|
+
value="value"
|
|
1656
|
+
)],
|
|
1657
|
+
lambda_function_last_modified_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
1658
|
+
end_inclusive=123,
|
|
1659
|
+
start_inclusive=123
|
|
1660
|
+
)],
|
|
1661
|
+
lambda_function_layers=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1662
|
+
comparison="comparison",
|
|
1663
|
+
value="value"
|
|
1664
|
+
)],
|
|
1665
|
+
lambda_function_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1666
|
+
comparison="comparison",
|
|
1667
|
+
value="value"
|
|
1668
|
+
)],
|
|
1669
|
+
lambda_function_runtime=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
1670
|
+
comparison="comparison",
|
|
1671
|
+
value="value"
|
|
1672
|
+
)],
|
|
1516
1673
|
last_observed_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
1517
1674
|
end_inclusive=123,
|
|
1518
1675
|
start_inclusive=123
|
|
@@ -1577,6 +1734,10 @@ class CfnFilter(
|
|
|
1577
1734
|
lower_inclusive=123,
|
|
1578
1735
|
upper_inclusive=123
|
|
1579
1736
|
),
|
|
1737
|
+
file_path=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1738
|
+
comparison="comparison",
|
|
1739
|
+
value="value"
|
|
1740
|
+
),
|
|
1580
1741
|
name=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1581
1742
|
comparison="comparison",
|
|
1582
1743
|
value="value"
|
|
@@ -1585,6 +1746,10 @@ class CfnFilter(
|
|
|
1585
1746
|
comparison="comparison",
|
|
1586
1747
|
value="value"
|
|
1587
1748
|
),
|
|
1749
|
+
source_lambda_layer_arn=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1750
|
+
comparison="comparison",
|
|
1751
|
+
value="value"
|
|
1752
|
+
),
|
|
1588
1753
|
source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty(
|
|
1589
1754
|
comparison="comparison",
|
|
1590
1755
|
value="value"
|
|
@@ -1599,6 +1764,9 @@ class CfnFilter(
|
|
|
1599
1764
|
if __debug__:
|
|
1600
1765
|
type_hints = typing.get_type_hints(_typecheckingstub__8bf898b4c669bfc838bf91c83d3735a9d69065b37baef35430be61dc52e3c81a)
|
|
1601
1766
|
check_type(argname="argument aws_account_id", value=aws_account_id, expected_type=type_hints["aws_account_id"])
|
|
1767
|
+
check_type(argname="argument code_vulnerability_detector_name", value=code_vulnerability_detector_name, expected_type=type_hints["code_vulnerability_detector_name"])
|
|
1768
|
+
check_type(argname="argument code_vulnerability_detector_tags", value=code_vulnerability_detector_tags, expected_type=type_hints["code_vulnerability_detector_tags"])
|
|
1769
|
+
check_type(argname="argument code_vulnerability_file_path", value=code_vulnerability_file_path, expected_type=type_hints["code_vulnerability_file_path"])
|
|
1602
1770
|
check_type(argname="argument component_id", value=component_id, expected_type=type_hints["component_id"])
|
|
1603
1771
|
check_type(argname="argument component_type", value=component_type, expected_type=type_hints["component_type"])
|
|
1604
1772
|
check_type(argname="argument ec2_instance_image_id", value=ec2_instance_image_id, expected_type=type_hints["ec2_instance_image_id"])
|
|
@@ -1610,11 +1778,19 @@ class CfnFilter(
|
|
|
1610
1778
|
check_type(argname="argument ecr_image_registry", value=ecr_image_registry, expected_type=type_hints["ecr_image_registry"])
|
|
1611
1779
|
check_type(argname="argument ecr_image_repository_name", value=ecr_image_repository_name, expected_type=type_hints["ecr_image_repository_name"])
|
|
1612
1780
|
check_type(argname="argument ecr_image_tags", value=ecr_image_tags, expected_type=type_hints["ecr_image_tags"])
|
|
1781
|
+
check_type(argname="argument epss_score", value=epss_score, expected_type=type_hints["epss_score"])
|
|
1782
|
+
check_type(argname="argument exploit_available", value=exploit_available, expected_type=type_hints["exploit_available"])
|
|
1613
1783
|
check_type(argname="argument finding_arn", value=finding_arn, expected_type=type_hints["finding_arn"])
|
|
1614
1784
|
check_type(argname="argument finding_status", value=finding_status, expected_type=type_hints["finding_status"])
|
|
1615
1785
|
check_type(argname="argument finding_type", value=finding_type, expected_type=type_hints["finding_type"])
|
|
1616
1786
|
check_type(argname="argument first_observed_at", value=first_observed_at, expected_type=type_hints["first_observed_at"])
|
|
1787
|
+
check_type(argname="argument fix_available", value=fix_available, expected_type=type_hints["fix_available"])
|
|
1617
1788
|
check_type(argname="argument inspector_score", value=inspector_score, expected_type=type_hints["inspector_score"])
|
|
1789
|
+
check_type(argname="argument lambda_function_execution_role_arn", value=lambda_function_execution_role_arn, expected_type=type_hints["lambda_function_execution_role_arn"])
|
|
1790
|
+
check_type(argname="argument lambda_function_last_modified_at", value=lambda_function_last_modified_at, expected_type=type_hints["lambda_function_last_modified_at"])
|
|
1791
|
+
check_type(argname="argument lambda_function_layers", value=lambda_function_layers, expected_type=type_hints["lambda_function_layers"])
|
|
1792
|
+
check_type(argname="argument lambda_function_name", value=lambda_function_name, expected_type=type_hints["lambda_function_name"])
|
|
1793
|
+
check_type(argname="argument lambda_function_runtime", value=lambda_function_runtime, expected_type=type_hints["lambda_function_runtime"])
|
|
1618
1794
|
check_type(argname="argument last_observed_at", value=last_observed_at, expected_type=type_hints["last_observed_at"])
|
|
1619
1795
|
check_type(argname="argument network_protocol", value=network_protocol, expected_type=type_hints["network_protocol"])
|
|
1620
1796
|
check_type(argname="argument port_range", value=port_range, expected_type=type_hints["port_range"])
|
|
@@ -1632,6 +1808,12 @@ class CfnFilter(
|
|
|
1632
1808
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1633
1809
|
if aws_account_id is not None:
|
|
1634
1810
|
self._values["aws_account_id"] = aws_account_id
|
|
1811
|
+
if code_vulnerability_detector_name is not None:
|
|
1812
|
+
self._values["code_vulnerability_detector_name"] = code_vulnerability_detector_name
|
|
1813
|
+
if code_vulnerability_detector_tags is not None:
|
|
1814
|
+
self._values["code_vulnerability_detector_tags"] = code_vulnerability_detector_tags
|
|
1815
|
+
if code_vulnerability_file_path is not None:
|
|
1816
|
+
self._values["code_vulnerability_file_path"] = code_vulnerability_file_path
|
|
1635
1817
|
if component_id is not None:
|
|
1636
1818
|
self._values["component_id"] = component_id
|
|
1637
1819
|
if component_type is not None:
|
|
@@ -1654,6 +1836,10 @@ class CfnFilter(
|
|
|
1654
1836
|
self._values["ecr_image_repository_name"] = ecr_image_repository_name
|
|
1655
1837
|
if ecr_image_tags is not None:
|
|
1656
1838
|
self._values["ecr_image_tags"] = ecr_image_tags
|
|
1839
|
+
if epss_score is not None:
|
|
1840
|
+
self._values["epss_score"] = epss_score
|
|
1841
|
+
if exploit_available is not None:
|
|
1842
|
+
self._values["exploit_available"] = exploit_available
|
|
1657
1843
|
if finding_arn is not None:
|
|
1658
1844
|
self._values["finding_arn"] = finding_arn
|
|
1659
1845
|
if finding_status is not None:
|
|
@@ -1662,8 +1848,20 @@ class CfnFilter(
|
|
|
1662
1848
|
self._values["finding_type"] = finding_type
|
|
1663
1849
|
if first_observed_at is not None:
|
|
1664
1850
|
self._values["first_observed_at"] = first_observed_at
|
|
1851
|
+
if fix_available is not None:
|
|
1852
|
+
self._values["fix_available"] = fix_available
|
|
1665
1853
|
if inspector_score is not None:
|
|
1666
1854
|
self._values["inspector_score"] = inspector_score
|
|
1855
|
+
if lambda_function_execution_role_arn is not None:
|
|
1856
|
+
self._values["lambda_function_execution_role_arn"] = lambda_function_execution_role_arn
|
|
1857
|
+
if lambda_function_last_modified_at is not None:
|
|
1858
|
+
self._values["lambda_function_last_modified_at"] = lambda_function_last_modified_at
|
|
1859
|
+
if lambda_function_layers is not None:
|
|
1860
|
+
self._values["lambda_function_layers"] = lambda_function_layers
|
|
1861
|
+
if lambda_function_name is not None:
|
|
1862
|
+
self._values["lambda_function_name"] = lambda_function_name
|
|
1863
|
+
if lambda_function_runtime is not None:
|
|
1864
|
+
self._values["lambda_function_runtime"] = lambda_function_runtime
|
|
1667
1865
|
if last_observed_at is not None:
|
|
1668
1866
|
self._values["last_observed_at"] = last_observed_at
|
|
1669
1867
|
if network_protocol is not None:
|
|
@@ -1704,6 +1902,36 @@ class CfnFilter(
|
|
|
1704
1902
|
result = self._values.get("aws_account_id")
|
|
1705
1903
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
1706
1904
|
|
|
1905
|
+
@builtins.property
|
|
1906
|
+
def code_vulnerability_detector_name(
|
|
1907
|
+
self,
|
|
1908
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
1909
|
+
'''
|
|
1910
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilitydetectorname
|
|
1911
|
+
'''
|
|
1912
|
+
result = self._values.get("code_vulnerability_detector_name")
|
|
1913
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
1914
|
+
|
|
1915
|
+
@builtins.property
|
|
1916
|
+
def code_vulnerability_detector_tags(
|
|
1917
|
+
self,
|
|
1918
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
1919
|
+
'''
|
|
1920
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilitydetectortags
|
|
1921
|
+
'''
|
|
1922
|
+
result = self._values.get("code_vulnerability_detector_tags")
|
|
1923
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
1924
|
+
|
|
1925
|
+
@builtins.property
|
|
1926
|
+
def code_vulnerability_file_path(
|
|
1927
|
+
self,
|
|
1928
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
1929
|
+
'''
|
|
1930
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-codevulnerabilityfilepath
|
|
1931
|
+
'''
|
|
1932
|
+
result = self._values.get("code_vulnerability_file_path")
|
|
1933
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
1934
|
+
|
|
1707
1935
|
@builtins.property
|
|
1708
1936
|
def component_id(
|
|
1709
1937
|
self,
|
|
@@ -1825,6 +2053,26 @@ class CfnFilter(
|
|
|
1825
2053
|
result = self._values.get("ecr_image_tags")
|
|
1826
2054
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
1827
2055
|
|
|
2056
|
+
@builtins.property
|
|
2057
|
+
def epss_score(
|
|
2058
|
+
self,
|
|
2059
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.NumberFilterProperty"]]]]:
|
|
2060
|
+
'''
|
|
2061
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-epssscore
|
|
2062
|
+
'''
|
|
2063
|
+
result = self._values.get("epss_score")
|
|
2064
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.NumberFilterProperty"]]]], result)
|
|
2065
|
+
|
|
2066
|
+
@builtins.property
|
|
2067
|
+
def exploit_available(
|
|
2068
|
+
self,
|
|
2069
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2070
|
+
'''
|
|
2071
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-exploitavailable
|
|
2072
|
+
'''
|
|
2073
|
+
result = self._values.get("exploit_available")
|
|
2074
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2075
|
+
|
|
1828
2076
|
@builtins.property
|
|
1829
2077
|
def finding_arn(
|
|
1830
2078
|
self,
|
|
@@ -1869,6 +2117,16 @@ class CfnFilter(
|
|
|
1869
2117
|
result = self._values.get("first_observed_at")
|
|
1870
2118
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.DateFilterProperty"]]]], result)
|
|
1871
2119
|
|
|
2120
|
+
@builtins.property
|
|
2121
|
+
def fix_available(
|
|
2122
|
+
self,
|
|
2123
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2124
|
+
'''
|
|
2125
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-fixavailable
|
|
2126
|
+
'''
|
|
2127
|
+
result = self._values.get("fix_available")
|
|
2128
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2129
|
+
|
|
1872
2130
|
@builtins.property
|
|
1873
2131
|
def inspector_score(
|
|
1874
2132
|
self,
|
|
@@ -1880,6 +2138,56 @@ class CfnFilter(
|
|
|
1880
2138
|
result = self._values.get("inspector_score")
|
|
1881
2139
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.NumberFilterProperty"]]]], result)
|
|
1882
2140
|
|
|
2141
|
+
@builtins.property
|
|
2142
|
+
def lambda_function_execution_role_arn(
|
|
2143
|
+
self,
|
|
2144
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2145
|
+
'''
|
|
2146
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionexecutionrolearn
|
|
2147
|
+
'''
|
|
2148
|
+
result = self._values.get("lambda_function_execution_role_arn")
|
|
2149
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2150
|
+
|
|
2151
|
+
@builtins.property
|
|
2152
|
+
def lambda_function_last_modified_at(
|
|
2153
|
+
self,
|
|
2154
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.DateFilterProperty"]]]]:
|
|
2155
|
+
'''
|
|
2156
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionlastmodifiedat
|
|
2157
|
+
'''
|
|
2158
|
+
result = self._values.get("lambda_function_last_modified_at")
|
|
2159
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.DateFilterProperty"]]]], result)
|
|
2160
|
+
|
|
2161
|
+
@builtins.property
|
|
2162
|
+
def lambda_function_layers(
|
|
2163
|
+
self,
|
|
2164
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2165
|
+
'''
|
|
2166
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionlayers
|
|
2167
|
+
'''
|
|
2168
|
+
result = self._values.get("lambda_function_layers")
|
|
2169
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2170
|
+
|
|
2171
|
+
@builtins.property
|
|
2172
|
+
def lambda_function_name(
|
|
2173
|
+
self,
|
|
2174
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2175
|
+
'''
|
|
2176
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionname
|
|
2177
|
+
'''
|
|
2178
|
+
result = self._values.get("lambda_function_name")
|
|
2179
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2180
|
+
|
|
2181
|
+
@builtins.property
|
|
2182
|
+
def lambda_function_runtime(
|
|
2183
|
+
self,
|
|
2184
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]]:
|
|
2185
|
+
'''
|
|
2186
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-filtercriteria.html#cfn-inspectorv2-filter-filtercriteria-lambdafunctionruntime
|
|
2187
|
+
'''
|
|
2188
|
+
result = self._values.get("lambda_function_runtime")
|
|
2189
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]]], result)
|
|
2190
|
+
|
|
1883
2191
|
@builtins.property
|
|
1884
2192
|
def last_observed_at(
|
|
1885
2193
|
self,
|
|
@@ -2212,8 +2520,10 @@ class CfnFilter(
|
|
|
2212
2520
|
name_mapping={
|
|
2213
2521
|
"architecture": "architecture",
|
|
2214
2522
|
"epoch": "epoch",
|
|
2523
|
+
"file_path": "filePath",
|
|
2215
2524
|
"name": "name",
|
|
2216
2525
|
"release": "release",
|
|
2526
|
+
"source_lambda_layer_arn": "sourceLambdaLayerArn",
|
|
2217
2527
|
"source_layer_hash": "sourceLayerHash",
|
|
2218
2528
|
"version": "version",
|
|
2219
2529
|
},
|
|
@@ -2224,8 +2534,10 @@ class CfnFilter(
|
|
|
2224
2534
|
*,
|
|
2225
2535
|
architecture: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2226
2536
|
epoch: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.NumberFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2537
|
+
file_path: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2227
2538
|
name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2228
2539
|
release: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2540
|
+
source_lambda_layer_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2229
2541
|
source_layer_hash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2230
2542
|
version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnFilter.StringFilterProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2231
2543
|
) -> None:
|
|
@@ -2233,8 +2545,10 @@ class CfnFilter(
|
|
|
2233
2545
|
|
|
2234
2546
|
:param architecture: An object that contains details on the package architecture type to filter on.
|
|
2235
2547
|
:param epoch: An object that contains details on the package epoch to filter on.
|
|
2548
|
+
:param file_path:
|
|
2236
2549
|
:param name: An object that contains details on the name of the package to filter on.
|
|
2237
2550
|
:param release: An object that contains details on the package release to filter on.
|
|
2551
|
+
:param source_lambda_layer_arn:
|
|
2238
2552
|
:param source_layer_hash: An object that contains details on the source layer hash to filter on.
|
|
2239
2553
|
:param version: The package version to filter on.
|
|
2240
2554
|
|
|
@@ -2256,6 +2570,10 @@ class CfnFilter(
|
|
|
2256
2570
|
lower_inclusive=123,
|
|
2257
2571
|
upper_inclusive=123
|
|
2258
2572
|
),
|
|
2573
|
+
file_path=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2574
|
+
comparison="comparison",
|
|
2575
|
+
value="value"
|
|
2576
|
+
),
|
|
2259
2577
|
name=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2260
2578
|
comparison="comparison",
|
|
2261
2579
|
value="value"
|
|
@@ -2264,6 +2582,10 @@ class CfnFilter(
|
|
|
2264
2582
|
comparison="comparison",
|
|
2265
2583
|
value="value"
|
|
2266
2584
|
),
|
|
2585
|
+
source_lambda_layer_arn=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2586
|
+
comparison="comparison",
|
|
2587
|
+
value="value"
|
|
2588
|
+
),
|
|
2267
2589
|
source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2268
2590
|
comparison="comparison",
|
|
2269
2591
|
value="value"
|
|
@@ -2278,8 +2600,10 @@ class CfnFilter(
|
|
|
2278
2600
|
type_hints = typing.get_type_hints(_typecheckingstub__1bffc1f427079a7381e5366b9fd38ff4f23a9a2d0463f6c7f0250a60e1c3aa65)
|
|
2279
2601
|
check_type(argname="argument architecture", value=architecture, expected_type=type_hints["architecture"])
|
|
2280
2602
|
check_type(argname="argument epoch", value=epoch, expected_type=type_hints["epoch"])
|
|
2603
|
+
check_type(argname="argument file_path", value=file_path, expected_type=type_hints["file_path"])
|
|
2281
2604
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2282
2605
|
check_type(argname="argument release", value=release, expected_type=type_hints["release"])
|
|
2606
|
+
check_type(argname="argument source_lambda_layer_arn", value=source_lambda_layer_arn, expected_type=type_hints["source_lambda_layer_arn"])
|
|
2283
2607
|
check_type(argname="argument source_layer_hash", value=source_layer_hash, expected_type=type_hints["source_layer_hash"])
|
|
2284
2608
|
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
2285
2609
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -2287,10 +2611,14 @@ class CfnFilter(
|
|
|
2287
2611
|
self._values["architecture"] = architecture
|
|
2288
2612
|
if epoch is not None:
|
|
2289
2613
|
self._values["epoch"] = epoch
|
|
2614
|
+
if file_path is not None:
|
|
2615
|
+
self._values["file_path"] = file_path
|
|
2290
2616
|
if name is not None:
|
|
2291
2617
|
self._values["name"] = name
|
|
2292
2618
|
if release is not None:
|
|
2293
2619
|
self._values["release"] = release
|
|
2620
|
+
if source_lambda_layer_arn is not None:
|
|
2621
|
+
self._values["source_lambda_layer_arn"] = source_lambda_layer_arn
|
|
2294
2622
|
if source_layer_hash is not None:
|
|
2295
2623
|
self._values["source_layer_hash"] = source_layer_hash
|
|
2296
2624
|
if version is not None:
|
|
@@ -2318,6 +2646,16 @@ class CfnFilter(
|
|
|
2318
2646
|
result = self._values.get("epoch")
|
|
2319
2647
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.NumberFilterProperty"]], result)
|
|
2320
2648
|
|
|
2649
|
+
@builtins.property
|
|
2650
|
+
def file_path(
|
|
2651
|
+
self,
|
|
2652
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]:
|
|
2653
|
+
'''
|
|
2654
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-filepath
|
|
2655
|
+
'''
|
|
2656
|
+
result = self._values.get("file_path")
|
|
2657
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]], result)
|
|
2658
|
+
|
|
2321
2659
|
@builtins.property
|
|
2322
2660
|
def name(
|
|
2323
2661
|
self,
|
|
@@ -2340,6 +2678,16 @@ class CfnFilter(
|
|
|
2340
2678
|
result = self._values.get("release")
|
|
2341
2679
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]], result)
|
|
2342
2680
|
|
|
2681
|
+
@builtins.property
|
|
2682
|
+
def source_lambda_layer_arn(
|
|
2683
|
+
self,
|
|
2684
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]]:
|
|
2685
|
+
'''
|
|
2686
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-inspectorv2-filter-packagefilter.html#cfn-inspectorv2-filter-packagefilter-sourcelambdalayerarn
|
|
2687
|
+
'''
|
|
2688
|
+
result = self._values.get("source_lambda_layer_arn")
|
|
2689
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFilter.StringFilterProperty"]], result)
|
|
2690
|
+
|
|
2343
2691
|
@builtins.property
|
|
2344
2692
|
def source_layer_hash(
|
|
2345
2693
|
self,
|
|
@@ -2521,6 +2869,7 @@ class CfnFilter(
|
|
|
2521
2869
|
"filter_criteria": "filterCriteria",
|
|
2522
2870
|
"name": "name",
|
|
2523
2871
|
"description": "description",
|
|
2872
|
+
"tags": "tags",
|
|
2524
2873
|
},
|
|
2525
2874
|
)
|
|
2526
2875
|
class CfnFilterProps:
|
|
@@ -2531,6 +2880,7 @@ class CfnFilterProps:
|
|
|
2531
2880
|
filter_criteria: typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.FilterCriteriaProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
2532
2881
|
name: builtins.str,
|
|
2533
2882
|
description: typing.Optional[builtins.str] = None,
|
|
2883
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2534
2884
|
) -> None:
|
|
2535
2885
|
'''Properties for defining a ``CfnFilter``.
|
|
2536
2886
|
|
|
@@ -2538,6 +2888,7 @@ class CfnFilterProps:
|
|
|
2538
2888
|
:param filter_criteria: Details on the filter criteria associated with this filter.
|
|
2539
2889
|
:param name: The name of the filter.
|
|
2540
2890
|
:param description: A description of the filter.
|
|
2891
|
+
:param tags: The tags attached to the filter.
|
|
2541
2892
|
|
|
2542
2893
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html
|
|
2543
2894
|
:exampleMetadata: fixture=_generated
|
|
@@ -2555,6 +2906,18 @@ class CfnFilterProps:
|
|
|
2555
2906
|
comparison="comparison",
|
|
2556
2907
|
value="value"
|
|
2557
2908
|
)],
|
|
2909
|
+
code_vulnerability_detector_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2910
|
+
comparison="comparison",
|
|
2911
|
+
value="value"
|
|
2912
|
+
)],
|
|
2913
|
+
code_vulnerability_detector_tags=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2914
|
+
comparison="comparison",
|
|
2915
|
+
value="value"
|
|
2916
|
+
)],
|
|
2917
|
+
code_vulnerability_file_path=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2918
|
+
comparison="comparison",
|
|
2919
|
+
value="value"
|
|
2920
|
+
)],
|
|
2558
2921
|
component_id=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2559
2922
|
comparison="comparison",
|
|
2560
2923
|
value="value"
|
|
@@ -2599,6 +2962,14 @@ class CfnFilterProps:
|
|
|
2599
2962
|
comparison="comparison",
|
|
2600
2963
|
value="value"
|
|
2601
2964
|
)],
|
|
2965
|
+
epss_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
2966
|
+
lower_inclusive=123,
|
|
2967
|
+
upper_inclusive=123
|
|
2968
|
+
)],
|
|
2969
|
+
exploit_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2970
|
+
comparison="comparison",
|
|
2971
|
+
value="value"
|
|
2972
|
+
)],
|
|
2602
2973
|
finding_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2603
2974
|
comparison="comparison",
|
|
2604
2975
|
value="value"
|
|
@@ -2615,10 +2986,34 @@ class CfnFilterProps:
|
|
|
2615
2986
|
end_inclusive=123,
|
|
2616
2987
|
start_inclusive=123
|
|
2617
2988
|
)],
|
|
2989
|
+
fix_available=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2990
|
+
comparison="comparison",
|
|
2991
|
+
value="value"
|
|
2992
|
+
)],
|
|
2618
2993
|
inspector_score=[inspectorv2.CfnFilter.NumberFilterProperty(
|
|
2619
2994
|
lower_inclusive=123,
|
|
2620
2995
|
upper_inclusive=123
|
|
2621
2996
|
)],
|
|
2997
|
+
lambda_function_execution_role_arn=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
2998
|
+
comparison="comparison",
|
|
2999
|
+
value="value"
|
|
3000
|
+
)],
|
|
3001
|
+
lambda_function_last_modified_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
3002
|
+
end_inclusive=123,
|
|
3003
|
+
start_inclusive=123
|
|
3004
|
+
)],
|
|
3005
|
+
lambda_function_layers=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
3006
|
+
comparison="comparison",
|
|
3007
|
+
value="value"
|
|
3008
|
+
)],
|
|
3009
|
+
lambda_function_name=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
3010
|
+
comparison="comparison",
|
|
3011
|
+
value="value"
|
|
3012
|
+
)],
|
|
3013
|
+
lambda_function_runtime=[inspectorv2.CfnFilter.StringFilterProperty(
|
|
3014
|
+
comparison="comparison",
|
|
3015
|
+
value="value"
|
|
3016
|
+
)],
|
|
2622
3017
|
last_observed_at=[inspectorv2.CfnFilter.DateFilterProperty(
|
|
2623
3018
|
end_inclusive=123,
|
|
2624
3019
|
start_inclusive=123
|
|
@@ -2683,6 +3078,10 @@ class CfnFilterProps:
|
|
|
2683
3078
|
lower_inclusive=123,
|
|
2684
3079
|
upper_inclusive=123
|
|
2685
3080
|
),
|
|
3081
|
+
file_path=inspectorv2.CfnFilter.StringFilterProperty(
|
|
3082
|
+
comparison="comparison",
|
|
3083
|
+
value="value"
|
|
3084
|
+
),
|
|
2686
3085
|
name=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2687
3086
|
comparison="comparison",
|
|
2688
3087
|
value="value"
|
|
@@ -2691,6 +3090,10 @@ class CfnFilterProps:
|
|
|
2691
3090
|
comparison="comparison",
|
|
2692
3091
|
value="value"
|
|
2693
3092
|
),
|
|
3093
|
+
source_lambda_layer_arn=inspectorv2.CfnFilter.StringFilterProperty(
|
|
3094
|
+
comparison="comparison",
|
|
3095
|
+
value="value"
|
|
3096
|
+
),
|
|
2694
3097
|
source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty(
|
|
2695
3098
|
comparison="comparison",
|
|
2696
3099
|
value="value"
|
|
@@ -2704,7 +3107,10 @@ class CfnFilterProps:
|
|
|
2704
3107
|
name="name",
|
|
2705
3108
|
|
|
2706
3109
|
# the properties below are optional
|
|
2707
|
-
description="description"
|
|
3110
|
+
description="description",
|
|
3111
|
+
tags={
|
|
3112
|
+
"tags_key": "tags"
|
|
3113
|
+
}
|
|
2708
3114
|
)
|
|
2709
3115
|
'''
|
|
2710
3116
|
if __debug__:
|
|
@@ -2713,6 +3119,7 @@ class CfnFilterProps:
|
|
|
2713
3119
|
check_type(argname="argument filter_criteria", value=filter_criteria, expected_type=type_hints["filter_criteria"])
|
|
2714
3120
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2715
3121
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3122
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2716
3123
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2717
3124
|
"filter_action": filter_action,
|
|
2718
3125
|
"filter_criteria": filter_criteria,
|
|
@@ -2720,6 +3127,8 @@ class CfnFilterProps:
|
|
|
2720
3127
|
}
|
|
2721
3128
|
if description is not None:
|
|
2722
3129
|
self._values["description"] = description
|
|
3130
|
+
if tags is not None:
|
|
3131
|
+
self._values["tags"] = tags
|
|
2723
3132
|
|
|
2724
3133
|
@builtins.property
|
|
2725
3134
|
def filter_action(self) -> builtins.str:
|
|
@@ -2762,6 +3171,15 @@ class CfnFilterProps:
|
|
|
2762
3171
|
result = self._values.get("description")
|
|
2763
3172
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2764
3173
|
|
|
3174
|
+
@builtins.property
|
|
3175
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3176
|
+
'''The tags attached to the filter.
|
|
3177
|
+
|
|
3178
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html#cfn-inspectorv2-filter-tags
|
|
3179
|
+
'''
|
|
3180
|
+
result = self._values.get("tags")
|
|
3181
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
3182
|
+
|
|
2765
3183
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2766
3184
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2767
3185
|
|
|
@@ -2906,6 +3324,7 @@ def _typecheckingstub__76aaac8f8d755716225a5dd2d4902f3e7ec007381fa82a2d163553362
|
|
|
2906
3324
|
filter_criteria: typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.FilterCriteriaProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
2907
3325
|
name: builtins.str,
|
|
2908
3326
|
description: typing.Optional[builtins.str] = None,
|
|
3327
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2909
3328
|
) -> None:
|
|
2910
3329
|
"""Type checking stubs"""
|
|
2911
3330
|
pass
|
|
@@ -2946,6 +3365,12 @@ def _typecheckingstub__29a0d69128962a2d8d478ff9197ec92d930e2284a9cbff6337d95fb19
|
|
|
2946
3365
|
"""Type checking stubs"""
|
|
2947
3366
|
pass
|
|
2948
3367
|
|
|
3368
|
+
def _typecheckingstub__2d85ec3c1992f35abc960573e86c94eb9d5f4d6c6fd9f47728ef03d5078212f1(
|
|
3369
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3370
|
+
) -> None:
|
|
3371
|
+
"""Type checking stubs"""
|
|
3372
|
+
pass
|
|
3373
|
+
|
|
2949
3374
|
def _typecheckingstub__412cca739fbade26efa876445772a168ea693eb111b9385ae83d92127bd547b5(
|
|
2950
3375
|
*,
|
|
2951
3376
|
end_inclusive: typing.Optional[jsii.Number] = None,
|
|
@@ -2957,6 +3382,9 @@ def _typecheckingstub__412cca739fbade26efa876445772a168ea693eb111b9385ae83d92127
|
|
|
2957
3382
|
def _typecheckingstub__8bf898b4c669bfc838bf91c83d3735a9d69065b37baef35430be61dc52e3c81a(
|
|
2958
3383
|
*,
|
|
2959
3384
|
aws_account_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3385
|
+
code_vulnerability_detector_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3386
|
+
code_vulnerability_detector_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3387
|
+
code_vulnerability_file_path: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2960
3388
|
component_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2961
3389
|
component_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2962
3390
|
ec2_instance_image_id: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -2968,11 +3396,19 @@ def _typecheckingstub__8bf898b4c669bfc838bf91c83d3735a9d69065b37baef35430be61dc5
|
|
|
2968
3396
|
ecr_image_registry: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2969
3397
|
ecr_image_repository_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2970
3398
|
ecr_image_tags: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3399
|
+
epss_score: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.NumberFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3400
|
+
exploit_available: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2971
3401
|
finding_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2972
3402
|
finding_status: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2973
3403
|
finding_type: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2974
3404
|
first_observed_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.DateFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3405
|
+
fix_available: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2975
3406
|
inspector_score: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.NumberFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3407
|
+
lambda_function_execution_role_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3408
|
+
lambda_function_last_modified_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.DateFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3409
|
+
lambda_function_layers: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3410
|
+
lambda_function_name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
3411
|
+
lambda_function_runtime: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2976
3412
|
last_observed_at: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.DateFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2977
3413
|
network_protocol: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2978
3414
|
port_range: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.PortRangeFilterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -3012,8 +3448,10 @@ def _typecheckingstub__1bffc1f427079a7381e5366b9fd38ff4f23a9a2d0463f6c7f0250a60e
|
|
|
3012
3448
|
*,
|
|
3013
3449
|
architecture: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3014
3450
|
epoch: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.NumberFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3451
|
+
file_path: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3015
3452
|
name: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3016
3453
|
release: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3454
|
+
source_lambda_layer_arn: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3017
3455
|
source_layer_hash: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3018
3456
|
version: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.StringFilterProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3019
3457
|
) -> None:
|
|
@@ -3042,6 +3480,7 @@ def _typecheckingstub__701269c3a3c8675419393e41eacb02f94675d9b8c43500c7ae0bd7ea7
|
|
|
3042
3480
|
filter_criteria: typing.Union[_IResolvable_da3f097b, typing.Union[CfnFilter.FilterCriteriaProperty, typing.Dict[builtins.str, typing.Any]]],
|
|
3043
3481
|
name: builtins.str,
|
|
3044
3482
|
description: typing.Optional[builtins.str] = None,
|
|
3483
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3045
3484
|
) -> None:
|
|
3046
3485
|
"""Type checking stubs"""
|
|
3047
3486
|
pass
|