aws-cdk-lib 2.219.0__py3-none-any.whl → 2.220.0__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 +12 -17
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.219.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationsignals/__init__.py +450 -2
- aws_cdk/aws_arcregionswitch/__init__.py +8 -0
- aws_cdk/aws_backup/__init__.py +29 -0
- aws_cdk/aws_batch/__init__.py +109 -7
- aws_cdk/aws_bedrock/__init__.py +44 -16
- aws_cdk/aws_bedrockagentcore/__init__.py +7872 -1718
- aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
- aws_cdk/aws_cloudwatch/__init__.py +5 -5
- aws_cdk/aws_cognito/__init__.py +6 -4
- aws_cdk/aws_dax/__init__.py +12 -3
- aws_cdk/aws_directoryservice/__init__.py +29 -0
- aws_cdk/aws_ec2/__init__.py +99 -8
- aws_cdk/aws_ecs/__init__.py +342 -134
- aws_cdk/aws_eks/__init__.py +114 -9
- aws_cdk/aws_fsx/__init__.py +4 -4
- aws_cdk/aws_imagebuilder/__init__.py +397 -0
- aws_cdk/aws_iotsitewise/__init__.py +136 -80
- aws_cdk/aws_kinesis/__init__.py +95 -4
- aws_cdk/aws_lambda/__init__.py +43 -0
- aws_cdk/aws_lightsail/__init__.py +584 -0
- aws_cdk/aws_logs/__init__.py +57 -0
- aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
- aws_cdk/aws_m2/__init__.py +59 -13
- aws_cdk/aws_medialive/__init__.py +108 -0
- aws_cdk/aws_mwaa/__init__.py +5 -5
- aws_cdk/aws_neptune/__init__.py +133 -70
- aws_cdk/aws_networkmanager/__init__.py +29 -0
- aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
- aws_cdk/aws_omics/__init__.py +7 -1
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_pcs/__init__.py +224 -33
- aws_cdk/aws_pinpoint/__init__.py +58 -0
- aws_cdk/aws_quicksight/__init__.py +80 -0
- aws_cdk/aws_rds/__init__.py +29 -23
- aws_cdk/aws_refactorspaces/__init__.py +18 -6
- aws_cdk/aws_route53/__init__.py +130 -6
- aws_cdk/aws_s3/__init__.py +29 -2
- aws_cdk/aws_s3objectlambda/__init__.py +44 -12
- aws_cdk/aws_servicecatalog/__init__.py +25 -20
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_synthetics/__init__.py +21 -1
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +51 -51
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
|
@@ -789,6 +789,7 @@ class CfnDistributionConfigurationProps:
|
|
|
789
789
|
"image_recipe_arn": "imageRecipeArn",
|
|
790
790
|
"image_scanning_configuration": "imageScanningConfiguration",
|
|
791
791
|
"image_tests_configuration": "imageTestsConfiguration",
|
|
792
|
+
"logging_configuration": "loggingConfiguration",
|
|
792
793
|
"schedule": "schedule",
|
|
793
794
|
"status": "status",
|
|
794
795
|
"tags": "tags",
|
|
@@ -809,6 +810,7 @@ class CfnImagePipelineProps:
|
|
|
809
810
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
810
811
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
811
812
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
813
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.PipelineLoggingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
812
814
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ScheduleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
813
815
|
status: typing.Optional[builtins.str] = None,
|
|
814
816
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -826,6 +828,7 @@ class CfnImagePipelineProps:
|
|
|
826
828
|
:param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
|
|
827
829
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
828
830
|
:param image_tests_configuration: The configuration of the image tests that run after image creation to ensure the quality of the image that was created.
|
|
831
|
+
:param logging_configuration: Defines logging configuration for the output image.
|
|
829
832
|
:param schedule: The schedule of the image pipeline. A schedule configures how often and when a pipeline automatically creates a new image.
|
|
830
833
|
:param status: The status of the image pipeline.
|
|
831
834
|
:param tags: The tags of this image pipeline.
|
|
@@ -862,7 +865,14 @@ class CfnImagePipelineProps:
|
|
|
862
865
|
image_tests_enabled=False,
|
|
863
866
|
timeout_minutes=123
|
|
864
867
|
),
|
|
868
|
+
logging_configuration=imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty(
|
|
869
|
+
image_log_group_name="imageLogGroupName",
|
|
870
|
+
pipeline_log_group_name="pipelineLogGroupName"
|
|
871
|
+
),
|
|
865
872
|
schedule=imagebuilder.CfnImagePipeline.ScheduleProperty(
|
|
873
|
+
auto_disable_policy=imagebuilder.CfnImagePipeline.AutoDisablePolicyProperty(
|
|
874
|
+
failure_count=123
|
|
875
|
+
),
|
|
866
876
|
pipeline_execution_start_condition="pipelineExecutionStartCondition",
|
|
867
877
|
schedule_expression="scheduleExpression"
|
|
868
878
|
),
|
|
@@ -893,6 +903,7 @@ class CfnImagePipelineProps:
|
|
|
893
903
|
check_type(argname="argument image_recipe_arn", value=image_recipe_arn, expected_type=type_hints["image_recipe_arn"])
|
|
894
904
|
check_type(argname="argument image_scanning_configuration", value=image_scanning_configuration, expected_type=type_hints["image_scanning_configuration"])
|
|
895
905
|
check_type(argname="argument image_tests_configuration", value=image_tests_configuration, expected_type=type_hints["image_tests_configuration"])
|
|
906
|
+
check_type(argname="argument logging_configuration", value=logging_configuration, expected_type=type_hints["logging_configuration"])
|
|
896
907
|
check_type(argname="argument schedule", value=schedule, expected_type=type_hints["schedule"])
|
|
897
908
|
check_type(argname="argument status", value=status, expected_type=type_hints["status"])
|
|
898
909
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -917,6 +928,8 @@ class CfnImagePipelineProps:
|
|
|
917
928
|
self._values["image_scanning_configuration"] = image_scanning_configuration
|
|
918
929
|
if image_tests_configuration is not None:
|
|
919
930
|
self._values["image_tests_configuration"] = image_tests_configuration
|
|
931
|
+
if logging_configuration is not None:
|
|
932
|
+
self._values["logging_configuration"] = logging_configuration
|
|
920
933
|
if schedule is not None:
|
|
921
934
|
self._values["schedule"] = schedule
|
|
922
935
|
if status is not None:
|
|
@@ -1026,6 +1039,17 @@ class CfnImagePipelineProps:
|
|
|
1026
1039
|
result = self._values.get("image_tests_configuration")
|
|
1027
1040
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.ImageTestsConfigurationProperty"]], result)
|
|
1028
1041
|
|
|
1042
|
+
@builtins.property
|
|
1043
|
+
def logging_configuration(
|
|
1044
|
+
self,
|
|
1045
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.PipelineLoggingConfigurationProperty"]]:
|
|
1046
|
+
'''Defines logging configuration for the output image.
|
|
1047
|
+
|
|
1048
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagepipeline.html#cfn-imagebuilder-imagepipeline-loggingconfiguration
|
|
1049
|
+
'''
|
|
1050
|
+
result = self._values.get("logging_configuration")
|
|
1051
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.PipelineLoggingConfigurationProperty"]], result)
|
|
1052
|
+
|
|
1029
1053
|
@builtins.property
|
|
1030
1054
|
def schedule(
|
|
1031
1055
|
self,
|
|
@@ -1092,6 +1116,7 @@ class CfnImagePipelineProps:
|
|
|
1092
1116
|
"image_scanning_configuration": "imageScanningConfiguration",
|
|
1093
1117
|
"image_tests_configuration": "imageTestsConfiguration",
|
|
1094
1118
|
"infrastructure_configuration_arn": "infrastructureConfigurationArn",
|
|
1119
|
+
"logging_configuration": "loggingConfiguration",
|
|
1095
1120
|
"tags": "tags",
|
|
1096
1121
|
"workflows": "workflows",
|
|
1097
1122
|
},
|
|
@@ -1108,6 +1133,7 @@ class CfnImageProps:
|
|
|
1108
1133
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1109
1134
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1110
1135
|
infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
|
|
1136
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageLoggingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1111
1137
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
1112
1138
|
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.WorkflowConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1113
1139
|
) -> None:
|
|
@@ -1121,6 +1147,7 @@ class CfnImageProps:
|
|
|
1121
1147
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
1122
1148
|
:param image_tests_configuration: The image tests configuration of the image.
|
|
1123
1149
|
:param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
|
|
1150
|
+
:param logging_configuration: The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
1124
1151
|
:param tags: The tags of the image.
|
|
1125
1152
|
:param workflows: Contains an array of workflow configuration objects.
|
|
1126
1153
|
|
|
@@ -1151,6 +1178,9 @@ class CfnImageProps:
|
|
|
1151
1178
|
timeout_minutes=123
|
|
1152
1179
|
),
|
|
1153
1180
|
infrastructure_configuration_arn="infrastructureConfigurationArn",
|
|
1181
|
+
logging_configuration=imagebuilder.CfnImage.ImageLoggingConfigurationProperty(
|
|
1182
|
+
log_group_name="logGroupName"
|
|
1183
|
+
),
|
|
1154
1184
|
tags={
|
|
1155
1185
|
"tags_key": "tags"
|
|
1156
1186
|
},
|
|
@@ -1175,6 +1205,7 @@ class CfnImageProps:
|
|
|
1175
1205
|
check_type(argname="argument image_scanning_configuration", value=image_scanning_configuration, expected_type=type_hints["image_scanning_configuration"])
|
|
1176
1206
|
check_type(argname="argument image_tests_configuration", value=image_tests_configuration, expected_type=type_hints["image_tests_configuration"])
|
|
1177
1207
|
check_type(argname="argument infrastructure_configuration_arn", value=infrastructure_configuration_arn, expected_type=type_hints["infrastructure_configuration_arn"])
|
|
1208
|
+
check_type(argname="argument logging_configuration", value=logging_configuration, expected_type=type_hints["logging_configuration"])
|
|
1178
1209
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1179
1210
|
check_type(argname="argument workflows", value=workflows, expected_type=type_hints["workflows"])
|
|
1180
1211
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -1194,6 +1225,8 @@ class CfnImageProps:
|
|
|
1194
1225
|
self._values["image_tests_configuration"] = image_tests_configuration
|
|
1195
1226
|
if infrastructure_configuration_arn is not None:
|
|
1196
1227
|
self._values["infrastructure_configuration_arn"] = infrastructure_configuration_arn
|
|
1228
|
+
if logging_configuration is not None:
|
|
1229
|
+
self._values["logging_configuration"] = logging_configuration
|
|
1197
1230
|
if tags is not None:
|
|
1198
1231
|
self._values["tags"] = tags
|
|
1199
1232
|
if workflows is not None:
|
|
@@ -1279,6 +1312,19 @@ class CfnImageProps:
|
|
|
1279
1312
|
result = self._values.get("infrastructure_configuration_arn")
|
|
1280
1313
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1281
1314
|
|
|
1315
|
+
@builtins.property
|
|
1316
|
+
def logging_configuration(
|
|
1317
|
+
self,
|
|
1318
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImage.ImageLoggingConfigurationProperty"]]:
|
|
1319
|
+
'''The logging configuration that's defined for the image.
|
|
1320
|
+
|
|
1321
|
+
Image Builder uses the defined settings to direct execution log output during image creation.
|
|
1322
|
+
|
|
1323
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-image.html#cfn-imagebuilder-image-loggingconfiguration
|
|
1324
|
+
'''
|
|
1325
|
+
result = self._values.get("logging_configuration")
|
|
1326
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImage.ImageLoggingConfigurationProperty"]], result)
|
|
1327
|
+
|
|
1282
1328
|
@builtins.property
|
|
1283
1329
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
1284
1330
|
'''The tags of the image.
|
|
@@ -1320,6 +1366,7 @@ class CfnImageProps:
|
|
|
1320
1366
|
"parent_image": "parentImage",
|
|
1321
1367
|
"version": "version",
|
|
1322
1368
|
"additional_instance_configuration": "additionalInstanceConfiguration",
|
|
1369
|
+
"ami_tags": "amiTags",
|
|
1323
1370
|
"block_device_mappings": "blockDeviceMappings",
|
|
1324
1371
|
"description": "description",
|
|
1325
1372
|
"tags": "tags",
|
|
@@ -1335,6 +1382,7 @@ class CfnImageRecipeProps:
|
|
|
1335
1382
|
parent_image: builtins.str,
|
|
1336
1383
|
version: builtins.str,
|
|
1337
1384
|
additional_instance_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImageRecipe.AdditionalInstanceConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1385
|
+
ami_tags: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
1338
1386
|
block_device_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImageRecipe.InstanceBlockDeviceMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1339
1387
|
description: typing.Optional[builtins.str] = None,
|
|
1340
1388
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -1347,6 +1395,7 @@ class CfnImageRecipeProps:
|
|
|
1347
1395
|
:param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
|
|
1348
1396
|
:param version: The version of the image recipe.
|
|
1349
1397
|
:param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
|
|
1398
|
+
:param ami_tags: Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.
|
|
1350
1399
|
:param block_device_mappings: The block device mappings to apply when creating images from this recipe.
|
|
1351
1400
|
:param description: The description of the image recipe.
|
|
1352
1401
|
:param tags: The tags of the image recipe.
|
|
@@ -1380,6 +1429,9 @@ class CfnImageRecipeProps:
|
|
|
1380
1429
|
),
|
|
1381
1430
|
user_data_override="userDataOverride"
|
|
1382
1431
|
),
|
|
1432
|
+
ami_tags={
|
|
1433
|
+
"ami_tags_key": "amiTags"
|
|
1434
|
+
},
|
|
1383
1435
|
block_device_mappings=[imagebuilder.CfnImageRecipe.InstanceBlockDeviceMappingProperty(
|
|
1384
1436
|
device_name="deviceName",
|
|
1385
1437
|
ebs=imagebuilder.CfnImageRecipe.EbsInstanceBlockDeviceSpecificationProperty(
|
|
@@ -1409,6 +1461,7 @@ class CfnImageRecipeProps:
|
|
|
1409
1461
|
check_type(argname="argument parent_image", value=parent_image, expected_type=type_hints["parent_image"])
|
|
1410
1462
|
check_type(argname="argument version", value=version, expected_type=type_hints["version"])
|
|
1411
1463
|
check_type(argname="argument additional_instance_configuration", value=additional_instance_configuration, expected_type=type_hints["additional_instance_configuration"])
|
|
1464
|
+
check_type(argname="argument ami_tags", value=ami_tags, expected_type=type_hints["ami_tags"])
|
|
1412
1465
|
check_type(argname="argument block_device_mappings", value=block_device_mappings, expected_type=type_hints["block_device_mappings"])
|
|
1413
1466
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1414
1467
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -1421,6 +1474,8 @@ class CfnImageRecipeProps:
|
|
|
1421
1474
|
}
|
|
1422
1475
|
if additional_instance_configuration is not None:
|
|
1423
1476
|
self._values["additional_instance_configuration"] = additional_instance_configuration
|
|
1477
|
+
if ami_tags is not None:
|
|
1478
|
+
self._values["ami_tags"] = ami_tags
|
|
1424
1479
|
if block_device_mappings is not None:
|
|
1425
1480
|
self._values["block_device_mappings"] = block_device_mappings
|
|
1426
1481
|
if description is not None:
|
|
@@ -1494,6 +1549,17 @@ class CfnImageRecipeProps:
|
|
|
1494
1549
|
result = self._values.get("additional_instance_configuration")
|
|
1495
1550
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImageRecipe.AdditionalInstanceConfigurationProperty"]], result)
|
|
1496
1551
|
|
|
1552
|
+
@builtins.property
|
|
1553
|
+
def ami_tags(
|
|
1554
|
+
self,
|
|
1555
|
+
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
1556
|
+
'''Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.
|
|
1557
|
+
|
|
1558
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-imagebuilder-imagerecipe.html#cfn-imagebuilder-imagerecipe-amitags
|
|
1559
|
+
'''
|
|
1560
|
+
result = self._values.get("ami_tags")
|
|
1561
|
+
return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], result)
|
|
1562
|
+
|
|
1497
1563
|
@builtins.property
|
|
1498
1564
|
def block_device_mappings(
|
|
1499
1565
|
self,
|
|
@@ -5799,6 +5865,9 @@ class CfnImage(
|
|
|
5799
5865
|
timeout_minutes=123
|
|
5800
5866
|
),
|
|
5801
5867
|
infrastructure_configuration_arn="infrastructureConfigurationArn",
|
|
5868
|
+
logging_configuration=imagebuilder.CfnImage.ImageLoggingConfigurationProperty(
|
|
5869
|
+
log_group_name="logGroupName"
|
|
5870
|
+
),
|
|
5802
5871
|
tags={
|
|
5803
5872
|
"tags_key": "tags"
|
|
5804
5873
|
},
|
|
@@ -5827,6 +5896,7 @@ class CfnImage(
|
|
|
5827
5896
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5828
5897
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5829
5898
|
infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
|
|
5899
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.ImageLoggingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5830
5900
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
5831
5901
|
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImage.WorkflowConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5832
5902
|
) -> None:
|
|
@@ -5841,6 +5911,7 @@ class CfnImage(
|
|
|
5841
5911
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
5842
5912
|
:param image_tests_configuration: The image tests configuration of the image.
|
|
5843
5913
|
:param infrastructure_configuration_arn: The Amazon Resource Name (ARN) of the infrastructure configuration that defines the environment in which your image will be built and tested.
|
|
5914
|
+
:param logging_configuration: The logging configuration that's defined for the image. Image Builder uses the defined settings to direct execution log output during image creation.
|
|
5844
5915
|
:param tags: The tags of the image.
|
|
5845
5916
|
:param workflows: Contains an array of workflow configuration objects.
|
|
5846
5917
|
'''
|
|
@@ -5857,6 +5928,7 @@ class CfnImage(
|
|
|
5857
5928
|
image_scanning_configuration=image_scanning_configuration,
|
|
5858
5929
|
image_tests_configuration=image_tests_configuration,
|
|
5859
5930
|
infrastructure_configuration_arn=infrastructure_configuration_arn,
|
|
5931
|
+
logging_configuration=logging_configuration,
|
|
5860
5932
|
tags=tags,
|
|
5861
5933
|
workflows=workflows,
|
|
5862
5934
|
)
|
|
@@ -6077,6 +6149,24 @@ class CfnImage(
|
|
|
6077
6149
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6078
6150
|
jsii.set(self, "infrastructureConfigurationArn", value) # pyright: ignore[reportArgumentType]
|
|
6079
6151
|
|
|
6152
|
+
@builtins.property
|
|
6153
|
+
@jsii.member(jsii_name="loggingConfiguration")
|
|
6154
|
+
def logging_configuration(
|
|
6155
|
+
self,
|
|
6156
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImage.ImageLoggingConfigurationProperty"]]:
|
|
6157
|
+
'''The logging configuration that's defined for the image.'''
|
|
6158
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImage.ImageLoggingConfigurationProperty"]], jsii.get(self, "loggingConfiguration"))
|
|
6159
|
+
|
|
6160
|
+
@logging_configuration.setter
|
|
6161
|
+
def logging_configuration(
|
|
6162
|
+
self,
|
|
6163
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImage.ImageLoggingConfigurationProperty"]],
|
|
6164
|
+
) -> None:
|
|
6165
|
+
if __debug__:
|
|
6166
|
+
type_hints = typing.get_type_hints(_typecheckingstub__a3e3020758a024deeed0645c515a9c3a69ea5ecf40fc9a2133b40f82a94b72c2)
|
|
6167
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6168
|
+
jsii.set(self, "loggingConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
6169
|
+
|
|
6080
6170
|
@builtins.property
|
|
6081
6171
|
@jsii.member(jsii_name="tagsRaw")
|
|
6082
6172
|
def tags_raw(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
@@ -6188,6 +6278,65 @@ class CfnImage(
|
|
|
6188
6278
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
6189
6279
|
)
|
|
6190
6280
|
|
|
6281
|
+
@jsii.data_type(
|
|
6282
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImage.ImageLoggingConfigurationProperty",
|
|
6283
|
+
jsii_struct_bases=[],
|
|
6284
|
+
name_mapping={"log_group_name": "logGroupName"},
|
|
6285
|
+
)
|
|
6286
|
+
class ImageLoggingConfigurationProperty:
|
|
6287
|
+
def __init__(
|
|
6288
|
+
self,
|
|
6289
|
+
*,
|
|
6290
|
+
log_group_name: typing.Optional[builtins.str] = None,
|
|
6291
|
+
) -> None:
|
|
6292
|
+
'''The logging configuration that's defined for the image.
|
|
6293
|
+
|
|
6294
|
+
Image Builder uses the defined settings to direct execution log output during image creation.
|
|
6295
|
+
|
|
6296
|
+
:param log_group_name: The log group name that Image Builder uses for image creation. If not specified, the log group name defaults to ``/aws/imagebuilder/image-name`` .
|
|
6297
|
+
|
|
6298
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html
|
|
6299
|
+
:exampleMetadata: fixture=_generated
|
|
6300
|
+
|
|
6301
|
+
Example::
|
|
6302
|
+
|
|
6303
|
+
# The code below shows an example of how to instantiate this type.
|
|
6304
|
+
# The values are placeholders you should change.
|
|
6305
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
6306
|
+
|
|
6307
|
+
image_logging_configuration_property = imagebuilder.CfnImage.ImageLoggingConfigurationProperty(
|
|
6308
|
+
log_group_name="logGroupName"
|
|
6309
|
+
)
|
|
6310
|
+
'''
|
|
6311
|
+
if __debug__:
|
|
6312
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f48c0bf82989235f735b3b537ceae8bf7cbb63f48573c8a5dac03547706ff000)
|
|
6313
|
+
check_type(argname="argument log_group_name", value=log_group_name, expected_type=type_hints["log_group_name"])
|
|
6314
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6315
|
+
if log_group_name is not None:
|
|
6316
|
+
self._values["log_group_name"] = log_group_name
|
|
6317
|
+
|
|
6318
|
+
@builtins.property
|
|
6319
|
+
def log_group_name(self) -> typing.Optional[builtins.str]:
|
|
6320
|
+
'''The log group name that Image Builder uses for image creation.
|
|
6321
|
+
|
|
6322
|
+
If not specified, the log group name defaults to ``/aws/imagebuilder/image-name`` .
|
|
6323
|
+
|
|
6324
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html#cfn-imagebuilder-image-imageloggingconfiguration-loggroupname
|
|
6325
|
+
'''
|
|
6326
|
+
result = self._values.get("log_group_name")
|
|
6327
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6328
|
+
|
|
6329
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6330
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
6331
|
+
|
|
6332
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6333
|
+
return not (rhs == self)
|
|
6334
|
+
|
|
6335
|
+
def __repr__(self) -> str:
|
|
6336
|
+
return "ImageLoggingConfigurationProperty(%s)" % ", ".join(
|
|
6337
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6338
|
+
)
|
|
6339
|
+
|
|
6191
6340
|
@jsii.data_type(
|
|
6192
6341
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImage.ImageScanningConfigurationProperty",
|
|
6193
6342
|
jsii_struct_bases=[],
|
|
@@ -6576,7 +6725,14 @@ class CfnImagePipeline(
|
|
|
6576
6725
|
image_tests_enabled=False,
|
|
6577
6726
|
timeout_minutes=123
|
|
6578
6727
|
),
|
|
6728
|
+
logging_configuration=imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty(
|
|
6729
|
+
image_log_group_name="imageLogGroupName",
|
|
6730
|
+
pipeline_log_group_name="pipelineLogGroupName"
|
|
6731
|
+
),
|
|
6579
6732
|
schedule=imagebuilder.CfnImagePipeline.ScheduleProperty(
|
|
6733
|
+
auto_disable_policy=imagebuilder.CfnImagePipeline.AutoDisablePolicyProperty(
|
|
6734
|
+
failure_count=123
|
|
6735
|
+
),
|
|
6580
6736
|
pipeline_execution_start_condition="pipelineExecutionStartCondition",
|
|
6581
6737
|
schedule_expression="scheduleExpression"
|
|
6582
6738
|
),
|
|
@@ -6611,6 +6767,7 @@ class CfnImagePipeline(
|
|
|
6611
6767
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
6612
6768
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageScanningConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6613
6769
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ImageTestsConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6770
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.PipelineLoggingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6614
6771
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.ScheduleProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6615
6772
|
status: typing.Optional[builtins.str] = None,
|
|
6616
6773
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -6629,6 +6786,7 @@ class CfnImagePipeline(
|
|
|
6629
6786
|
:param image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.
|
|
6630
6787
|
:param image_scanning_configuration: Contains settings for vulnerability scans.
|
|
6631
6788
|
:param image_tests_configuration: The configuration of the image tests that run after image creation to ensure the quality of the image that was created.
|
|
6789
|
+
:param logging_configuration: Defines logging configuration for the output image.
|
|
6632
6790
|
:param schedule: The schedule of the image pipeline. A schedule configures how often and when a pipeline automatically creates a new image.
|
|
6633
6791
|
:param status: The status of the image pipeline.
|
|
6634
6792
|
:param tags: The tags of this image pipeline.
|
|
@@ -6649,6 +6807,7 @@ class CfnImagePipeline(
|
|
|
6649
6807
|
image_recipe_arn=image_recipe_arn,
|
|
6650
6808
|
image_scanning_configuration=image_scanning_configuration,
|
|
6651
6809
|
image_tests_configuration=image_tests_configuration,
|
|
6810
|
+
logging_configuration=logging_configuration,
|
|
6652
6811
|
schedule=schedule,
|
|
6653
6812
|
status=status,
|
|
6654
6813
|
tags=tags,
|
|
@@ -6872,6 +7031,24 @@ class CfnImagePipeline(
|
|
|
6872
7031
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6873
7032
|
jsii.set(self, "imageTestsConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
6874
7033
|
|
|
7034
|
+
@builtins.property
|
|
7035
|
+
@jsii.member(jsii_name="loggingConfiguration")
|
|
7036
|
+
def logging_configuration(
|
|
7037
|
+
self,
|
|
7038
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.PipelineLoggingConfigurationProperty"]]:
|
|
7039
|
+
'''Defines logging configuration for the output image.'''
|
|
7040
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.PipelineLoggingConfigurationProperty"]], jsii.get(self, "loggingConfiguration"))
|
|
7041
|
+
|
|
7042
|
+
@logging_configuration.setter
|
|
7043
|
+
def logging_configuration(
|
|
7044
|
+
self,
|
|
7045
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.PipelineLoggingConfigurationProperty"]],
|
|
7046
|
+
) -> None:
|
|
7047
|
+
if __debug__:
|
|
7048
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fd669ff1d1a241fd9694fe5f0927bdc4b1cdbf105330ca8df7626d0785047d5e)
|
|
7049
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7050
|
+
jsii.set(self, "loggingConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
7051
|
+
|
|
6875
7052
|
@builtins.property
|
|
6876
7053
|
@jsii.member(jsii_name="schedule")
|
|
6877
7054
|
def schedule(
|
|
@@ -6937,6 +7114,58 @@ class CfnImagePipeline(
|
|
|
6937
7114
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6938
7115
|
jsii.set(self, "workflows", value) # pyright: ignore[reportArgumentType]
|
|
6939
7116
|
|
|
7117
|
+
@jsii.data_type(
|
|
7118
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.AutoDisablePolicyProperty",
|
|
7119
|
+
jsii_struct_bases=[],
|
|
7120
|
+
name_mapping={"failure_count": "failureCount"},
|
|
7121
|
+
)
|
|
7122
|
+
class AutoDisablePolicyProperty:
|
|
7123
|
+
def __init__(self, *, failure_count: jsii.Number) -> None:
|
|
7124
|
+
'''Defines the rules by which an image pipeline is automatically disabled when it fails.
|
|
7125
|
+
|
|
7126
|
+
:param failure_count: The number of consecutive scheduled image pipeline executions that must fail before Image Builder automatically disables the pipeline.
|
|
7127
|
+
|
|
7128
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-autodisablepolicy.html
|
|
7129
|
+
:exampleMetadata: fixture=_generated
|
|
7130
|
+
|
|
7131
|
+
Example::
|
|
7132
|
+
|
|
7133
|
+
# The code below shows an example of how to instantiate this type.
|
|
7134
|
+
# The values are placeholders you should change.
|
|
7135
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
7136
|
+
|
|
7137
|
+
auto_disable_policy_property = imagebuilder.CfnImagePipeline.AutoDisablePolicyProperty(
|
|
7138
|
+
failure_count=123
|
|
7139
|
+
)
|
|
7140
|
+
'''
|
|
7141
|
+
if __debug__:
|
|
7142
|
+
type_hints = typing.get_type_hints(_typecheckingstub__69b844c16b5b7fe86f960e35030a259ca786bf1c7c25272436fa39cdc264de05)
|
|
7143
|
+
check_type(argname="argument failure_count", value=failure_count, expected_type=type_hints["failure_count"])
|
|
7144
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
7145
|
+
"failure_count": failure_count,
|
|
7146
|
+
}
|
|
7147
|
+
|
|
7148
|
+
@builtins.property
|
|
7149
|
+
def failure_count(self) -> jsii.Number:
|
|
7150
|
+
'''The number of consecutive scheduled image pipeline executions that must fail before Image Builder automatically disables the pipeline.
|
|
7151
|
+
|
|
7152
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-autodisablepolicy.html#cfn-imagebuilder-imagepipeline-autodisablepolicy-failurecount
|
|
7153
|
+
'''
|
|
7154
|
+
result = self._values.get("failure_count")
|
|
7155
|
+
assert result is not None, "Required property 'failure_count' is missing"
|
|
7156
|
+
return typing.cast(jsii.Number, result)
|
|
7157
|
+
|
|
7158
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7159
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7160
|
+
|
|
7161
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7162
|
+
return not (rhs == self)
|
|
7163
|
+
|
|
7164
|
+
def __repr__(self) -> str:
|
|
7165
|
+
return "AutoDisablePolicyProperty(%s)" % ", ".join(
|
|
7166
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7167
|
+
)
|
|
7168
|
+
|
|
6940
7169
|
@jsii.data_type(
|
|
6941
7170
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.EcrConfigurationProperty",
|
|
6942
7171
|
jsii_struct_bases=[],
|
|
@@ -7177,10 +7406,88 @@ class CfnImagePipeline(
|
|
|
7177
7406
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
7178
7407
|
)
|
|
7179
7408
|
|
|
7409
|
+
@jsii.data_type(
|
|
7410
|
+
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty",
|
|
7411
|
+
jsii_struct_bases=[],
|
|
7412
|
+
name_mapping={
|
|
7413
|
+
"image_log_group_name": "imageLogGroupName",
|
|
7414
|
+
"pipeline_log_group_name": "pipelineLogGroupName",
|
|
7415
|
+
},
|
|
7416
|
+
)
|
|
7417
|
+
class PipelineLoggingConfigurationProperty:
|
|
7418
|
+
def __init__(
|
|
7419
|
+
self,
|
|
7420
|
+
*,
|
|
7421
|
+
image_log_group_name: typing.Optional[builtins.str] = None,
|
|
7422
|
+
pipeline_log_group_name: typing.Optional[builtins.str] = None,
|
|
7423
|
+
) -> None:
|
|
7424
|
+
'''The logging configuration that's defined for pipeline execution.
|
|
7425
|
+
|
|
7426
|
+
:param image_log_group_name: The log group name that Image Builder uses for image creation. If not specified, the log group name defaults to ``/aws/imagebuilder/image-name`` .
|
|
7427
|
+
:param pipeline_log_group_name: The log group name that Image Builder uses for the log output during creation of a new pipeline. If not specified, the pipeline log group name defaults to ``/aws/imagebuilder/pipeline/pipeline-name`` .
|
|
7428
|
+
|
|
7429
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html
|
|
7430
|
+
:exampleMetadata: fixture=_generated
|
|
7431
|
+
|
|
7432
|
+
Example::
|
|
7433
|
+
|
|
7434
|
+
# The code below shows an example of how to instantiate this type.
|
|
7435
|
+
# The values are placeholders you should change.
|
|
7436
|
+
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
7437
|
+
|
|
7438
|
+
pipeline_logging_configuration_property = imagebuilder.CfnImagePipeline.PipelineLoggingConfigurationProperty(
|
|
7439
|
+
image_log_group_name="imageLogGroupName",
|
|
7440
|
+
pipeline_log_group_name="pipelineLogGroupName"
|
|
7441
|
+
)
|
|
7442
|
+
'''
|
|
7443
|
+
if __debug__:
|
|
7444
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2af353350682d5947ff1643b9bf2422511eaee659a470f07d53aac235328167a)
|
|
7445
|
+
check_type(argname="argument image_log_group_name", value=image_log_group_name, expected_type=type_hints["image_log_group_name"])
|
|
7446
|
+
check_type(argname="argument pipeline_log_group_name", value=pipeline_log_group_name, expected_type=type_hints["pipeline_log_group_name"])
|
|
7447
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7448
|
+
if image_log_group_name is not None:
|
|
7449
|
+
self._values["image_log_group_name"] = image_log_group_name
|
|
7450
|
+
if pipeline_log_group_name is not None:
|
|
7451
|
+
self._values["pipeline_log_group_name"] = pipeline_log_group_name
|
|
7452
|
+
|
|
7453
|
+
@builtins.property
|
|
7454
|
+
def image_log_group_name(self) -> typing.Optional[builtins.str]:
|
|
7455
|
+
'''The log group name that Image Builder uses for image creation.
|
|
7456
|
+
|
|
7457
|
+
If not specified, the log group name defaults to ``/aws/imagebuilder/image-name`` .
|
|
7458
|
+
|
|
7459
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html#cfn-imagebuilder-imagepipeline-pipelineloggingconfiguration-imageloggroupname
|
|
7460
|
+
'''
|
|
7461
|
+
result = self._values.get("image_log_group_name")
|
|
7462
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
7463
|
+
|
|
7464
|
+
@builtins.property
|
|
7465
|
+
def pipeline_log_group_name(self) -> typing.Optional[builtins.str]:
|
|
7466
|
+
'''The log group name that Image Builder uses for the log output during creation of a new pipeline.
|
|
7467
|
+
|
|
7468
|
+
If not specified, the pipeline log group name defaults to ``/aws/imagebuilder/pipeline/pipeline-name`` .
|
|
7469
|
+
|
|
7470
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-pipelineloggingconfiguration.html#cfn-imagebuilder-imagepipeline-pipelineloggingconfiguration-pipelineloggroupname
|
|
7471
|
+
'''
|
|
7472
|
+
result = self._values.get("pipeline_log_group_name")
|
|
7473
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
7474
|
+
|
|
7475
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
7476
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
7477
|
+
|
|
7478
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
7479
|
+
return not (rhs == self)
|
|
7480
|
+
|
|
7481
|
+
def __repr__(self) -> str:
|
|
7482
|
+
return "PipelineLoggingConfigurationProperty(%s)" % ", ".join(
|
|
7483
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
7484
|
+
)
|
|
7485
|
+
|
|
7180
7486
|
@jsii.data_type(
|
|
7181
7487
|
jsii_type="aws-cdk-lib.aws_imagebuilder.CfnImagePipeline.ScheduleProperty",
|
|
7182
7488
|
jsii_struct_bases=[],
|
|
7183
7489
|
name_mapping={
|
|
7490
|
+
"auto_disable_policy": "autoDisablePolicy",
|
|
7184
7491
|
"pipeline_execution_start_condition": "pipelineExecutionStartCondition",
|
|
7185
7492
|
"schedule_expression": "scheduleExpression",
|
|
7186
7493
|
},
|
|
@@ -7189,11 +7496,13 @@ class CfnImagePipeline(
|
|
|
7189
7496
|
def __init__(
|
|
7190
7497
|
self,
|
|
7191
7498
|
*,
|
|
7499
|
+
auto_disable_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImagePipeline.AutoDisablePolicyProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7192
7500
|
pipeline_execution_start_condition: typing.Optional[builtins.str] = None,
|
|
7193
7501
|
schedule_expression: typing.Optional[builtins.str] = None,
|
|
7194
7502
|
) -> None:
|
|
7195
7503
|
'''A schedule configures when and how often a pipeline will automatically create a new image.
|
|
7196
7504
|
|
|
7505
|
+
:param auto_disable_policy: The policy that configures when Image Builder should automatically disable a pipeline that is failing.
|
|
7197
7506
|
:param pipeline_execution_start_condition: The condition configures when the pipeline should trigger a new image build. When the ``pipelineExecutionStartCondition`` is set to ``EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`` , and you use semantic version filters on the base image or components in your image recipe, Image Builder will build a new image only when there are new versions of the image or components in your recipe that match the semantic version filter. When it is set to ``EXPRESSION_MATCH_ONLY`` , it will build a new image every time the CRON expression matches the current time. For semantic version syntax, see `CreateComponent <https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html>`_ in the *Image Builder API Reference* .
|
|
7198
7507
|
:param schedule_expression: The cron expression determines how often EC2 Image Builder evaluates your ``pipelineExecutionStartCondition`` . For information on how to format a cron expression in Image Builder, see `Use cron expressions in EC2 Image Builder <https://docs.aws.amazon.com/imagebuilder/latest/userguide/image-builder-cron.html>`_ .
|
|
7199
7508
|
|
|
@@ -7207,20 +7516,37 @@ class CfnImagePipeline(
|
|
|
7207
7516
|
from aws_cdk import aws_imagebuilder as imagebuilder
|
|
7208
7517
|
|
|
7209
7518
|
schedule_property = imagebuilder.CfnImagePipeline.ScheduleProperty(
|
|
7519
|
+
auto_disable_policy=imagebuilder.CfnImagePipeline.AutoDisablePolicyProperty(
|
|
7520
|
+
failure_count=123
|
|
7521
|
+
),
|
|
7210
7522
|
pipeline_execution_start_condition="pipelineExecutionStartCondition",
|
|
7211
7523
|
schedule_expression="scheduleExpression"
|
|
7212
7524
|
)
|
|
7213
7525
|
'''
|
|
7214
7526
|
if __debug__:
|
|
7215
7527
|
type_hints = typing.get_type_hints(_typecheckingstub__02783d051498bb630cd6a27d361c0750914a59f05623585e0808549e9248bae0)
|
|
7528
|
+
check_type(argname="argument auto_disable_policy", value=auto_disable_policy, expected_type=type_hints["auto_disable_policy"])
|
|
7216
7529
|
check_type(argname="argument pipeline_execution_start_condition", value=pipeline_execution_start_condition, expected_type=type_hints["pipeline_execution_start_condition"])
|
|
7217
7530
|
check_type(argname="argument schedule_expression", value=schedule_expression, expected_type=type_hints["schedule_expression"])
|
|
7218
7531
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
7532
|
+
if auto_disable_policy is not None:
|
|
7533
|
+
self._values["auto_disable_policy"] = auto_disable_policy
|
|
7219
7534
|
if pipeline_execution_start_condition is not None:
|
|
7220
7535
|
self._values["pipeline_execution_start_condition"] = pipeline_execution_start_condition
|
|
7221
7536
|
if schedule_expression is not None:
|
|
7222
7537
|
self._values["schedule_expression"] = schedule_expression
|
|
7223
7538
|
|
|
7539
|
+
@builtins.property
|
|
7540
|
+
def auto_disable_policy(
|
|
7541
|
+
self,
|
|
7542
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.AutoDisablePolicyProperty"]]:
|
|
7543
|
+
'''The policy that configures when Image Builder should automatically disable a pipeline that is failing.
|
|
7544
|
+
|
|
7545
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-imagepipeline-schedule.html#cfn-imagebuilder-imagepipeline-schedule-autodisablepolicy
|
|
7546
|
+
'''
|
|
7547
|
+
result = self._values.get("auto_disable_policy")
|
|
7548
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnImagePipeline.AutoDisablePolicyProperty"]], result)
|
|
7549
|
+
|
|
7224
7550
|
@builtins.property
|
|
7225
7551
|
def pipeline_execution_start_condition(self) -> typing.Optional[builtins.str]:
|
|
7226
7552
|
'''The condition configures when the pipeline should trigger a new image build.
|
|
@@ -7476,6 +7802,9 @@ class CfnImageRecipe(
|
|
|
7476
7802
|
),
|
|
7477
7803
|
user_data_override="userDataOverride"
|
|
7478
7804
|
),
|
|
7805
|
+
ami_tags={
|
|
7806
|
+
"ami_tags_key": "amiTags"
|
|
7807
|
+
},
|
|
7479
7808
|
block_device_mappings=[imagebuilder.CfnImageRecipe.InstanceBlockDeviceMappingProperty(
|
|
7480
7809
|
device_name="deviceName",
|
|
7481
7810
|
ebs=imagebuilder.CfnImageRecipe.EbsInstanceBlockDeviceSpecificationProperty(
|
|
@@ -7509,6 +7838,7 @@ class CfnImageRecipe(
|
|
|
7509
7838
|
parent_image: builtins.str,
|
|
7510
7839
|
version: builtins.str,
|
|
7511
7840
|
additional_instance_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImageRecipe.AdditionalInstanceConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7841
|
+
ami_tags: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
7512
7842
|
block_device_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnImageRecipe.InstanceBlockDeviceMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7513
7843
|
description: typing.Optional[builtins.str] = None,
|
|
7514
7844
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -7522,6 +7852,7 @@ class CfnImageRecipe(
|
|
|
7522
7852
|
:param parent_image: The base image for customizations specified in the image recipe. You can specify the parent image using one of the following options: - AMI ID - Image Builder image Amazon Resource Name (ARN) - AWS Systems Manager (SSM) Parameter Store Parameter, prefixed by ``ssm:`` , followed by the parameter name or ARN. - AWS Marketplace product ID
|
|
7523
7853
|
:param version: The version of the image recipe.
|
|
7524
7854
|
:param additional_instance_configuration: Before you create a new AMI, Image Builder launches temporary Amazon EC2 instances to build and test your image configuration. Instance configuration adds a layer of control over those instances. You can define settings and add scripts to run when an instance is launched from your AMI.
|
|
7855
|
+
:param ami_tags: Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.
|
|
7525
7856
|
:param block_device_mappings: The block device mappings to apply when creating images from this recipe.
|
|
7526
7857
|
:param description: The description of the image recipe.
|
|
7527
7858
|
:param tags: The tags of the image recipe.
|
|
@@ -7537,6 +7868,7 @@ class CfnImageRecipe(
|
|
|
7537
7868
|
parent_image=parent_image,
|
|
7538
7869
|
version=version,
|
|
7539
7870
|
additional_instance_configuration=additional_instance_configuration,
|
|
7871
|
+
ami_tags=ami_tags,
|
|
7540
7872
|
block_device_mappings=block_device_mappings,
|
|
7541
7873
|
description=description,
|
|
7542
7874
|
tags=tags,
|
|
@@ -7687,6 +8019,24 @@ class CfnImageRecipe(
|
|
|
7687
8019
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
7688
8020
|
jsii.set(self, "additionalInstanceConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
7689
8021
|
|
|
8022
|
+
@builtins.property
|
|
8023
|
+
@jsii.member(jsii_name="amiTags")
|
|
8024
|
+
def ami_tags(
|
|
8025
|
+
self,
|
|
8026
|
+
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
8027
|
+
'''Tags that are applied to the AMI that Image Builder creates during the Build phase prior to image distribution.'''
|
|
8028
|
+
return typing.cast(typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]], jsii.get(self, "amiTags"))
|
|
8029
|
+
|
|
8030
|
+
@ami_tags.setter
|
|
8031
|
+
def ami_tags(
|
|
8032
|
+
self,
|
|
8033
|
+
value: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]],
|
|
8034
|
+
) -> None:
|
|
8035
|
+
if __debug__:
|
|
8036
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7b194ae2195e82b1b59277988a8b1cf823ca9cdc3b2e26bbaa6e0b9e805a12ad)
|
|
8037
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8038
|
+
jsii.set(self, "amiTags", value) # pyright: ignore[reportArgumentType]
|
|
8039
|
+
|
|
7690
8040
|
@builtins.property
|
|
7691
8041
|
@jsii.member(jsii_name="blockDeviceMappings")
|
|
7692
8042
|
def block_device_mappings(
|
|
@@ -10591,6 +10941,7 @@ def _typecheckingstub__95f10c4451c6bf3f2cf15951831cd372e35975262c0be294c1ae7c774
|
|
|
10591
10941
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
10592
10942
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10593
10943
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10944
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.PipelineLoggingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10594
10945
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10595
10946
|
status: typing.Optional[builtins.str] = None,
|
|
10596
10947
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -10609,6 +10960,7 @@ def _typecheckingstub__5f217922888735234464ee573256caba679b2c1215a99c91ad609c9c7
|
|
|
10609
10960
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10610
10961
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10611
10962
|
infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
|
|
10963
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageLoggingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10612
10964
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
10613
10965
|
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10614
10966
|
) -> None:
|
|
@@ -10622,6 +10974,7 @@ def _typecheckingstub__a289ec10c5f4c9443f1dfb0dc4ecb78a20e5f6e491ed688cb2e3a59ad
|
|
|
10622
10974
|
parent_image: builtins.str,
|
|
10623
10975
|
version: builtins.str,
|
|
10624
10976
|
additional_instance_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImageRecipe.AdditionalInstanceConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
10977
|
+
ami_tags: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
10625
10978
|
block_device_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImageRecipe.InstanceBlockDeviceMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10626
10979
|
description: typing.Optional[builtins.str] = None,
|
|
10627
10980
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -11170,6 +11523,7 @@ def _typecheckingstub__1406bc225111bc54a87c50d1d8180aed46d22e10134235c4fa581d313
|
|
|
11170
11523
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11171
11524
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11172
11525
|
infrastructure_configuration_arn: typing.Optional[builtins.str] = None,
|
|
11526
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.ImageLoggingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11173
11527
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
11174
11528
|
workflows: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.WorkflowConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11175
11529
|
) -> None:
|
|
@@ -11236,6 +11590,12 @@ def _typecheckingstub__a190431e330e97015561230a0d9b0477abed6793472228169b2ce3d49
|
|
|
11236
11590
|
"""Type checking stubs"""
|
|
11237
11591
|
pass
|
|
11238
11592
|
|
|
11593
|
+
def _typecheckingstub__a3e3020758a024deeed0645c515a9c3a69ea5ecf40fc9a2133b40f82a94b72c2(
|
|
11594
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnImage.ImageLoggingConfigurationProperty]],
|
|
11595
|
+
) -> None:
|
|
11596
|
+
"""Type checking stubs"""
|
|
11597
|
+
pass
|
|
11598
|
+
|
|
11239
11599
|
def _typecheckingstub__c0e6ba55682dabdf30b5bb38534688ff3dbd8c6a8044f77eb6180bb8d815ceb8(
|
|
11240
11600
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
11241
11601
|
) -> None:
|
|
@@ -11256,6 +11616,13 @@ def _typecheckingstub__8e752dc7f51b470c209f9741b4ee9c9b1b8ab926ba9ba46ae3160a187
|
|
|
11256
11616
|
"""Type checking stubs"""
|
|
11257
11617
|
pass
|
|
11258
11618
|
|
|
11619
|
+
def _typecheckingstub__f48c0bf82989235f735b3b537ceae8bf7cbb63f48573c8a5dac03547706ff000(
|
|
11620
|
+
*,
|
|
11621
|
+
log_group_name: typing.Optional[builtins.str] = None,
|
|
11622
|
+
) -> None:
|
|
11623
|
+
"""Type checking stubs"""
|
|
11624
|
+
pass
|
|
11625
|
+
|
|
11259
11626
|
def _typecheckingstub__155636d4b270ff858336d445a5c3a434623faaa989317a61b024d7142948911e(
|
|
11260
11627
|
*,
|
|
11261
11628
|
ecr_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImage.EcrConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -11304,6 +11671,7 @@ def _typecheckingstub__e2d099702ab4ebcb03c34ae00fedabfa81a0c5d3662aa1605c47ff1fc
|
|
|
11304
11671
|
image_recipe_arn: typing.Optional[builtins.str] = None,
|
|
11305
11672
|
image_scanning_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageScanningConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11306
11673
|
image_tests_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ImageTestsConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11674
|
+
logging_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.PipelineLoggingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11307
11675
|
schedule: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.ScheduleProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11308
11676
|
status: typing.Optional[builtins.str] = None,
|
|
11309
11677
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -11384,6 +11752,12 @@ def _typecheckingstub__d9e327e008ef0b95ddde8197947e86b8bc9160733d270caa11482a88d
|
|
|
11384
11752
|
"""Type checking stubs"""
|
|
11385
11753
|
pass
|
|
11386
11754
|
|
|
11755
|
+
def _typecheckingstub__fd669ff1d1a241fd9694fe5f0927bdc4b1cdbf105330ca8df7626d0785047d5e(
|
|
11756
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnImagePipeline.PipelineLoggingConfigurationProperty]],
|
|
11757
|
+
) -> None:
|
|
11758
|
+
"""Type checking stubs"""
|
|
11759
|
+
pass
|
|
11760
|
+
|
|
11387
11761
|
def _typecheckingstub__7493819df4798ffd45cd31ff99c66a5c22065a41d47c9c3792eaaf9d4c4150a1(
|
|
11388
11762
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnImagePipeline.ScheduleProperty]],
|
|
11389
11763
|
) -> None:
|
|
@@ -11408,6 +11782,13 @@ def _typecheckingstub__d31373519ea07e5936785c1446524bda21756ca2eb6c12f87303f5a12
|
|
|
11408
11782
|
"""Type checking stubs"""
|
|
11409
11783
|
pass
|
|
11410
11784
|
|
|
11785
|
+
def _typecheckingstub__69b844c16b5b7fe86f960e35030a259ca786bf1c7c25272436fa39cdc264de05(
|
|
11786
|
+
*,
|
|
11787
|
+
failure_count: jsii.Number,
|
|
11788
|
+
) -> None:
|
|
11789
|
+
"""Type checking stubs"""
|
|
11790
|
+
pass
|
|
11791
|
+
|
|
11411
11792
|
def _typecheckingstub__1ad9ee4365967b325aac7636f417b9a691b4b50560fe8f594198933e7ed13aca(
|
|
11412
11793
|
*,
|
|
11413
11794
|
container_tags: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -11432,8 +11813,17 @@ def _typecheckingstub__ae3643f34d20caf9e518f587e7eacbe6f2163c4d76025d717d8d8ea1b
|
|
|
11432
11813
|
"""Type checking stubs"""
|
|
11433
11814
|
pass
|
|
11434
11815
|
|
|
11816
|
+
def _typecheckingstub__2af353350682d5947ff1643b9bf2422511eaee659a470f07d53aac235328167a(
|
|
11817
|
+
*,
|
|
11818
|
+
image_log_group_name: typing.Optional[builtins.str] = None,
|
|
11819
|
+
pipeline_log_group_name: typing.Optional[builtins.str] = None,
|
|
11820
|
+
) -> None:
|
|
11821
|
+
"""Type checking stubs"""
|
|
11822
|
+
pass
|
|
11823
|
+
|
|
11435
11824
|
def _typecheckingstub__02783d051498bb630cd6a27d361c0750914a59f05623585e0808549e9248bae0(
|
|
11436
11825
|
*,
|
|
11826
|
+
auto_disable_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImagePipeline.AutoDisablePolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11437
11827
|
pipeline_execution_start_condition: typing.Optional[builtins.str] = None,
|
|
11438
11828
|
schedule_expression: typing.Optional[builtins.str] = None,
|
|
11439
11829
|
) -> None:
|
|
@@ -11467,6 +11857,7 @@ def _typecheckingstub__b92e909d03413ceab5b5ff0737ae582bf88ebb71e7e89f62cc57922d1
|
|
|
11467
11857
|
parent_image: builtins.str,
|
|
11468
11858
|
version: builtins.str,
|
|
11469
11859
|
additional_instance_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImageRecipe.AdditionalInstanceConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11860
|
+
ami_tags: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
11470
11861
|
block_device_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnImageRecipe.InstanceBlockDeviceMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
11471
11862
|
description: typing.Optional[builtins.str] = None,
|
|
11472
11863
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -11517,6 +11908,12 @@ def _typecheckingstub__fcc3e434aa1a301be5e1a5341bc64287bfcf82761f08ef98de5711b1b
|
|
|
11517
11908
|
"""Type checking stubs"""
|
|
11518
11909
|
pass
|
|
11519
11910
|
|
|
11911
|
+
def _typecheckingstub__7b194ae2195e82b1b59277988a8b1cf823ca9cdc3b2e26bbaa6e0b9e805a12ad(
|
|
11912
|
+
value: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]],
|
|
11913
|
+
) -> None:
|
|
11914
|
+
"""Type checking stubs"""
|
|
11915
|
+
pass
|
|
11916
|
+
|
|
11520
11917
|
def _typecheckingstub__3f9ee0bcfa7d5f48279416991e3a05c2143a695ca605b7c215eb5e8cc38d2174(
|
|
11521
11918
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnImageRecipe.InstanceBlockDeviceMappingProperty]]]],
|
|
11522
11919
|
) -> None:
|