aws-cdk-lib 2.216.0__py3-none-any.whl → 2.217.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 +60 -28
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.216.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +2 -2
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +132 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +12 -8
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +48 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +46 -0
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +58 -56
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.216.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -901,6 +901,8 @@ class CfnVariantStoreProps:
|
|
|
901
901
|
jsii_struct_bases=[],
|
|
902
902
|
name_mapping={
|
|
903
903
|
"accelerators": "accelerators",
|
|
904
|
+
"container_registry_map": "containerRegistryMap",
|
|
905
|
+
"container_registry_map_uri": "containerRegistryMapUri",
|
|
904
906
|
"definition_repository": "definitionRepository",
|
|
905
907
|
"definition_uri": "definitionUri",
|
|
906
908
|
"description": "description",
|
|
@@ -923,6 +925,8 @@ class CfnWorkflowProps:
|
|
|
923
925
|
self,
|
|
924
926
|
*,
|
|
925
927
|
accelerators: typing.Optional[builtins.str] = None,
|
|
928
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.ContainerRegistryMapProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
929
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
926
930
|
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.DefinitionRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
927
931
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
928
932
|
description: typing.Optional[builtins.str] = None,
|
|
@@ -942,6 +946,8 @@ class CfnWorkflowProps:
|
|
|
942
946
|
'''Properties for defining a ``CfnWorkflow``.
|
|
943
947
|
|
|
944
948
|
:param accelerators:
|
|
949
|
+
:param container_registry_map: Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
950
|
+
:param container_registry_map_uri:
|
|
945
951
|
:param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
|
|
946
952
|
:param definition_uri: The URI of a definition for the workflow.
|
|
947
953
|
:param description: The parameter's description.
|
|
@@ -969,6 +975,19 @@ class CfnWorkflowProps:
|
|
|
969
975
|
|
|
970
976
|
cfn_workflow_props = omics.CfnWorkflowProps(
|
|
971
977
|
accelerators="accelerators",
|
|
978
|
+
container_registry_map=omics.CfnWorkflow.ContainerRegistryMapProperty(
|
|
979
|
+
image_mappings=[omics.CfnWorkflow.ImageMappingProperty(
|
|
980
|
+
destination_image="destinationImage",
|
|
981
|
+
source_image="sourceImage"
|
|
982
|
+
)],
|
|
983
|
+
registry_mappings=[omics.CfnWorkflow.RegistryMappingProperty(
|
|
984
|
+
ecr_account_id="ecrAccountId",
|
|
985
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
986
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
987
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
988
|
+
)]
|
|
989
|
+
),
|
|
990
|
+
container_registry_map_uri="containerRegistryMapUri",
|
|
972
991
|
definition_repository=omics.CfnWorkflow.DefinitionRepositoryProperty(
|
|
973
992
|
connection_arn="connectionArn",
|
|
974
993
|
exclude_file_patterns=["excludeFilePatterns"],
|
|
@@ -1004,6 +1023,8 @@ class CfnWorkflowProps:
|
|
|
1004
1023
|
if __debug__:
|
|
1005
1024
|
type_hints = typing.get_type_hints(_typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8205f173)
|
|
1006
1025
|
check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
|
|
1026
|
+
check_type(argname="argument container_registry_map", value=container_registry_map, expected_type=type_hints["container_registry_map"])
|
|
1027
|
+
check_type(argname="argument container_registry_map_uri", value=container_registry_map_uri, expected_type=type_hints["container_registry_map_uri"])
|
|
1007
1028
|
check_type(argname="argument definition_repository", value=definition_repository, expected_type=type_hints["definition_repository"])
|
|
1008
1029
|
check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
|
|
1009
1030
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
@@ -1022,6 +1043,10 @@ class CfnWorkflowProps:
|
|
|
1022
1043
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
1023
1044
|
if accelerators is not None:
|
|
1024
1045
|
self._values["accelerators"] = accelerators
|
|
1046
|
+
if container_registry_map is not None:
|
|
1047
|
+
self._values["container_registry_map"] = container_registry_map
|
|
1048
|
+
if container_registry_map_uri is not None:
|
|
1049
|
+
self._values["container_registry_map_uri"] = container_registry_map_uri
|
|
1025
1050
|
if definition_repository is not None:
|
|
1026
1051
|
self._values["definition_repository"] = definition_repository
|
|
1027
1052
|
if definition_uri is not None:
|
|
@@ -1061,6 +1086,27 @@ class CfnWorkflowProps:
|
|
|
1061
1086
|
result = self._values.get("accelerators")
|
|
1062
1087
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1063
1088
|
|
|
1089
|
+
@builtins.property
|
|
1090
|
+
def container_registry_map(
|
|
1091
|
+
self,
|
|
1092
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ContainerRegistryMapProperty"]]:
|
|
1093
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.
|
|
1094
|
+
|
|
1095
|
+
For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
1096
|
+
|
|
1097
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-containerregistrymap
|
|
1098
|
+
'''
|
|
1099
|
+
result = self._values.get("container_registry_map")
|
|
1100
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ContainerRegistryMapProperty"]], result)
|
|
1101
|
+
|
|
1102
|
+
@builtins.property
|
|
1103
|
+
def container_registry_map_uri(self) -> typing.Optional[builtins.str]:
|
|
1104
|
+
'''
|
|
1105
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-containerregistrymapuri
|
|
1106
|
+
'''
|
|
1107
|
+
result = self._values.get("container_registry_map_uri")
|
|
1108
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1109
|
+
|
|
1064
1110
|
@builtins.property
|
|
1065
1111
|
def definition_repository(
|
|
1066
1112
|
self,
|
|
@@ -1226,11 +1272,18 @@ class CfnWorkflowProps:
|
|
|
1226
1272
|
"version_name": "versionName",
|
|
1227
1273
|
"workflow_id": "workflowId",
|
|
1228
1274
|
"accelerators": "accelerators",
|
|
1275
|
+
"container_registry_map": "containerRegistryMap",
|
|
1276
|
+
"container_registry_map_uri": "containerRegistryMapUri",
|
|
1277
|
+
"definition_repository": "definitionRepository",
|
|
1229
1278
|
"definition_uri": "definitionUri",
|
|
1230
1279
|
"description": "description",
|
|
1231
1280
|
"engine": "engine",
|
|
1232
1281
|
"main": "main",
|
|
1233
1282
|
"parameter_template": "parameterTemplate",
|
|
1283
|
+
"parameter_template_path": "parameterTemplatePath",
|
|
1284
|
+
"readme_markdown": "readmeMarkdown",
|
|
1285
|
+
"readme_path": "readmePath",
|
|
1286
|
+
"readme_uri": "readmeUri",
|
|
1234
1287
|
"storage_capacity": "storageCapacity",
|
|
1235
1288
|
"storage_type": "storageType",
|
|
1236
1289
|
"tags": "tags",
|
|
@@ -1244,11 +1297,18 @@ class CfnWorkflowVersionProps:
|
|
|
1244
1297
|
version_name: builtins.str,
|
|
1245
1298
|
workflow_id: builtins.str,
|
|
1246
1299
|
accelerators: typing.Optional[builtins.str] = None,
|
|
1300
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.ContainerRegistryMapProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1301
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
1302
|
+
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.DefinitionRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1247
1303
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
1248
1304
|
description: typing.Optional[builtins.str] = None,
|
|
1249
1305
|
engine: typing.Optional[builtins.str] = None,
|
|
1250
1306
|
main: typing.Optional[builtins.str] = None,
|
|
1251
1307
|
parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.WorkflowParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
1308
|
+
parameter_template_path: typing.Optional[builtins.str] = None,
|
|
1309
|
+
readme_markdown: typing.Optional[builtins.str] = None,
|
|
1310
|
+
readme_path: typing.Optional[builtins.str] = None,
|
|
1311
|
+
readme_uri: typing.Optional[builtins.str] = None,
|
|
1252
1312
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
1253
1313
|
storage_type: typing.Optional[builtins.str] = None,
|
|
1254
1314
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -1259,11 +1319,18 @@ class CfnWorkflowVersionProps:
|
|
|
1259
1319
|
:param version_name: The name of the workflow version.
|
|
1260
1320
|
:param workflow_id: The workflow's ID.
|
|
1261
1321
|
:param accelerators:
|
|
1322
|
+
:param container_registry_map: Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
1323
|
+
:param container_registry_map_uri:
|
|
1324
|
+
:param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
|
|
1262
1325
|
:param definition_uri:
|
|
1263
1326
|
:param description: The description of the workflow version.
|
|
1264
1327
|
:param engine:
|
|
1265
1328
|
:param main:
|
|
1266
1329
|
:param parameter_template:
|
|
1330
|
+
:param parameter_template_path: Path to the primary workflow parameter template JSON file inside the repository.
|
|
1331
|
+
:param readme_markdown: The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.
|
|
1332
|
+
:param readme_path: The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
|
|
1333
|
+
:param readme_uri: The S3 URI of the README file for the workflow. This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
|
|
1267
1334
|
:param storage_capacity:
|
|
1268
1335
|
:param storage_type:
|
|
1269
1336
|
:param tags: A map of resource tags.
|
|
@@ -1284,6 +1351,28 @@ class CfnWorkflowVersionProps:
|
|
|
1284
1351
|
|
|
1285
1352
|
# the properties below are optional
|
|
1286
1353
|
accelerators="accelerators",
|
|
1354
|
+
container_registry_map=omics.CfnWorkflowVersion.ContainerRegistryMapProperty(
|
|
1355
|
+
image_mappings=[omics.CfnWorkflowVersion.ImageMappingProperty(
|
|
1356
|
+
destination_image="destinationImage",
|
|
1357
|
+
source_image="sourceImage"
|
|
1358
|
+
)],
|
|
1359
|
+
registry_mappings=[omics.CfnWorkflowVersion.RegistryMappingProperty(
|
|
1360
|
+
ecr_account_id="ecrAccountId",
|
|
1361
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
1362
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
1363
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
1364
|
+
)]
|
|
1365
|
+
),
|
|
1366
|
+
container_registry_map_uri="containerRegistryMapUri",
|
|
1367
|
+
definition_repository=omics.CfnWorkflowVersion.DefinitionRepositoryProperty(
|
|
1368
|
+
connection_arn="connectionArn",
|
|
1369
|
+
exclude_file_patterns=["excludeFilePatterns"],
|
|
1370
|
+
full_repository_id="fullRepositoryId",
|
|
1371
|
+
source_reference=omics.CfnWorkflowVersion.SourceReferenceProperty(
|
|
1372
|
+
type="type",
|
|
1373
|
+
value="value"
|
|
1374
|
+
)
|
|
1375
|
+
),
|
|
1287
1376
|
definition_uri="definitionUri",
|
|
1288
1377
|
description="description",
|
|
1289
1378
|
engine="engine",
|
|
@@ -1294,6 +1383,10 @@ class CfnWorkflowVersionProps:
|
|
|
1294
1383
|
optional=False
|
|
1295
1384
|
)
|
|
1296
1385
|
},
|
|
1386
|
+
parameter_template_path="parameterTemplatePath",
|
|
1387
|
+
readme_markdown="readmeMarkdown",
|
|
1388
|
+
readme_path="readmePath",
|
|
1389
|
+
readme_uri="readmeUri",
|
|
1297
1390
|
storage_capacity=123,
|
|
1298
1391
|
storage_type="storageType",
|
|
1299
1392
|
tags={
|
|
@@ -1307,11 +1400,18 @@ class CfnWorkflowVersionProps:
|
|
|
1307
1400
|
check_type(argname="argument version_name", value=version_name, expected_type=type_hints["version_name"])
|
|
1308
1401
|
check_type(argname="argument workflow_id", value=workflow_id, expected_type=type_hints["workflow_id"])
|
|
1309
1402
|
check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
|
|
1403
|
+
check_type(argname="argument container_registry_map", value=container_registry_map, expected_type=type_hints["container_registry_map"])
|
|
1404
|
+
check_type(argname="argument container_registry_map_uri", value=container_registry_map_uri, expected_type=type_hints["container_registry_map_uri"])
|
|
1405
|
+
check_type(argname="argument definition_repository", value=definition_repository, expected_type=type_hints["definition_repository"])
|
|
1310
1406
|
check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
|
|
1311
1407
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1312
1408
|
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
1313
1409
|
check_type(argname="argument main", value=main, expected_type=type_hints["main"])
|
|
1314
1410
|
check_type(argname="argument parameter_template", value=parameter_template, expected_type=type_hints["parameter_template"])
|
|
1411
|
+
check_type(argname="argument parameter_template_path", value=parameter_template_path, expected_type=type_hints["parameter_template_path"])
|
|
1412
|
+
check_type(argname="argument readme_markdown", value=readme_markdown, expected_type=type_hints["readme_markdown"])
|
|
1413
|
+
check_type(argname="argument readme_path", value=readme_path, expected_type=type_hints["readme_path"])
|
|
1414
|
+
check_type(argname="argument readme_uri", value=readme_uri, expected_type=type_hints["readme_uri"])
|
|
1315
1415
|
check_type(argname="argument storage_capacity", value=storage_capacity, expected_type=type_hints["storage_capacity"])
|
|
1316
1416
|
check_type(argname="argument storage_type", value=storage_type, expected_type=type_hints["storage_type"])
|
|
1317
1417
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -1322,6 +1422,12 @@ class CfnWorkflowVersionProps:
|
|
|
1322
1422
|
}
|
|
1323
1423
|
if accelerators is not None:
|
|
1324
1424
|
self._values["accelerators"] = accelerators
|
|
1425
|
+
if container_registry_map is not None:
|
|
1426
|
+
self._values["container_registry_map"] = container_registry_map
|
|
1427
|
+
if container_registry_map_uri is not None:
|
|
1428
|
+
self._values["container_registry_map_uri"] = container_registry_map_uri
|
|
1429
|
+
if definition_repository is not None:
|
|
1430
|
+
self._values["definition_repository"] = definition_repository
|
|
1325
1431
|
if definition_uri is not None:
|
|
1326
1432
|
self._values["definition_uri"] = definition_uri
|
|
1327
1433
|
if description is not None:
|
|
@@ -1332,6 +1438,14 @@ class CfnWorkflowVersionProps:
|
|
|
1332
1438
|
self._values["main"] = main
|
|
1333
1439
|
if parameter_template is not None:
|
|
1334
1440
|
self._values["parameter_template"] = parameter_template
|
|
1441
|
+
if parameter_template_path is not None:
|
|
1442
|
+
self._values["parameter_template_path"] = parameter_template_path
|
|
1443
|
+
if readme_markdown is not None:
|
|
1444
|
+
self._values["readme_markdown"] = readme_markdown
|
|
1445
|
+
if readme_path is not None:
|
|
1446
|
+
self._values["readme_path"] = readme_path
|
|
1447
|
+
if readme_uri is not None:
|
|
1448
|
+
self._values["readme_uri"] = readme_uri
|
|
1335
1449
|
if storage_capacity is not None:
|
|
1336
1450
|
self._values["storage_capacity"] = storage_capacity
|
|
1337
1451
|
if storage_type is not None:
|
|
@@ -1369,6 +1483,38 @@ class CfnWorkflowVersionProps:
|
|
|
1369
1483
|
result = self._values.get("accelerators")
|
|
1370
1484
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1371
1485
|
|
|
1486
|
+
@builtins.property
|
|
1487
|
+
def container_registry_map(
|
|
1488
|
+
self,
|
|
1489
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ContainerRegistryMapProperty"]]:
|
|
1490
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.
|
|
1491
|
+
|
|
1492
|
+
For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
1493
|
+
|
|
1494
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-containerregistrymap
|
|
1495
|
+
'''
|
|
1496
|
+
result = self._values.get("container_registry_map")
|
|
1497
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ContainerRegistryMapProperty"]], result)
|
|
1498
|
+
|
|
1499
|
+
@builtins.property
|
|
1500
|
+
def container_registry_map_uri(self) -> typing.Optional[builtins.str]:
|
|
1501
|
+
'''
|
|
1502
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-containerregistrymapuri
|
|
1503
|
+
'''
|
|
1504
|
+
result = self._values.get("container_registry_map_uri")
|
|
1505
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1506
|
+
|
|
1507
|
+
@builtins.property
|
|
1508
|
+
def definition_repository(
|
|
1509
|
+
self,
|
|
1510
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.DefinitionRepositoryProperty"]]:
|
|
1511
|
+
'''Contains information about a source code repository that hosts the workflow definition files.
|
|
1512
|
+
|
|
1513
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-definitionrepository
|
|
1514
|
+
'''
|
|
1515
|
+
result = self._values.get("definition_repository")
|
|
1516
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.DefinitionRepositoryProperty"]], result)
|
|
1517
|
+
|
|
1372
1518
|
@builtins.property
|
|
1373
1519
|
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
1374
1520
|
'''
|
|
@@ -1412,6 +1558,48 @@ class CfnWorkflowVersionProps:
|
|
|
1412
1558
|
result = self._values.get("parameter_template")
|
|
1413
1559
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]], result)
|
|
1414
1560
|
|
|
1561
|
+
@builtins.property
|
|
1562
|
+
def parameter_template_path(self) -> typing.Optional[builtins.str]:
|
|
1563
|
+
'''Path to the primary workflow parameter template JSON file inside the repository.
|
|
1564
|
+
|
|
1565
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-parametertemplatepath
|
|
1566
|
+
'''
|
|
1567
|
+
result = self._values.get("parameter_template_path")
|
|
1568
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1569
|
+
|
|
1570
|
+
@builtins.property
|
|
1571
|
+
def readme_markdown(self) -> typing.Optional[builtins.str]:
|
|
1572
|
+
'''The markdown content for the workflow's README file.
|
|
1573
|
+
|
|
1574
|
+
This provides documentation and usage information for users of the workflow.
|
|
1575
|
+
|
|
1576
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmemarkdown
|
|
1577
|
+
'''
|
|
1578
|
+
result = self._values.get("readme_markdown")
|
|
1579
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1580
|
+
|
|
1581
|
+
@builtins.property
|
|
1582
|
+
def readme_path(self) -> typing.Optional[builtins.str]:
|
|
1583
|
+
'''The path to the workflow README markdown file within the repository.
|
|
1584
|
+
|
|
1585
|
+
This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
|
|
1586
|
+
|
|
1587
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmepath
|
|
1588
|
+
'''
|
|
1589
|
+
result = self._values.get("readme_path")
|
|
1590
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1591
|
+
|
|
1592
|
+
@builtins.property
|
|
1593
|
+
def readme_uri(self) -> typing.Optional[builtins.str]:
|
|
1594
|
+
'''The S3 URI of the README file for the workflow.
|
|
1595
|
+
|
|
1596
|
+
This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
|
|
1597
|
+
|
|
1598
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmeuri
|
|
1599
|
+
'''
|
|
1600
|
+
result = self._values.get("readme_uri")
|
|
1601
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1602
|
+
|
|
1415
1603
|
@builtins.property
|
|
1416
1604
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
1417
1605
|
'''
|
|
@@ -3996,10 +4184,11 @@ class CfnWorkflow(
|
|
|
3996
4184
|
):
|
|
3997
4185
|
'''Creates a private workflow. Before you create a private workflow, you must create and configure these required resources:.
|
|
3998
4186
|
|
|
3999
|
-
- *Workflow definition
|
|
4000
|
-
-
|
|
4001
|
-
- *
|
|
4002
|
-
-
|
|
4187
|
+
- *Workflow definition file:* A workflow definition file written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements. The workflow definition file must be in ``.zip`` format. For more information, see `Workflow definition files <https://docs.aws.amazon.com/omics/latest/dev/workflow-definition-files.html>`_ in AWS HealthOmics.
|
|
4188
|
+
- You can use Amazon Q CLI to build and validate your workflow definition files in WDL, Nextflow, and CWL. For more information, see `Example prompts for Amazon Q CLI <https://docs.aws.amazon.com/omics/latest/dev/getting-started.html#omics-q-prompts>`_ and the `AWS HealthOmics Agentic generative AI tutorial <https://docs.aws.amazon.com/https://github.com/aws-samples/aws-healthomics-tutorials/tree/main/generative-ai>`_ on GitHub.
|
|
4189
|
+
- *(Optional) Parameter template file:* A parameter template file written in JSON. Create the file to define the run parameters, or AWS HealthOmics generates the parameter template for you. For more information, see `Parameter template files for HealthOmics workflows <https://docs.aws.amazon.com/omics/latest/dev/parameter-templates.html>`_ .
|
|
4190
|
+
- *ECR container images:* Create container images for the workflow in a private ECR repository, or synchronize images from a supported upstream registry with your Amazon ECR private repository.
|
|
4191
|
+
- *(Optional) Sentieon licenses:* Request a Sentieon license to use the Sentieon software in private workflows.
|
|
4003
4192
|
|
|
4004
4193
|
For more information, see `Creating or updating a private workflow in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`_ in the *AWS HealthOmics User Guide* .
|
|
4005
4194
|
|
|
@@ -4015,6 +4204,19 @@ class CfnWorkflow(
|
|
|
4015
4204
|
|
|
4016
4205
|
cfn_workflow = omics.CfnWorkflow(self, "MyCfnWorkflow",
|
|
4017
4206
|
accelerators="accelerators",
|
|
4207
|
+
container_registry_map=omics.CfnWorkflow.ContainerRegistryMapProperty(
|
|
4208
|
+
image_mappings=[omics.CfnWorkflow.ImageMappingProperty(
|
|
4209
|
+
destination_image="destinationImage",
|
|
4210
|
+
source_image="sourceImage"
|
|
4211
|
+
)],
|
|
4212
|
+
registry_mappings=[omics.CfnWorkflow.RegistryMappingProperty(
|
|
4213
|
+
ecr_account_id="ecrAccountId",
|
|
4214
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
4215
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
4216
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
4217
|
+
)]
|
|
4218
|
+
),
|
|
4219
|
+
container_registry_map_uri="containerRegistryMapUri",
|
|
4018
4220
|
definition_repository=omics.CfnWorkflow.DefinitionRepositoryProperty(
|
|
4019
4221
|
connection_arn="connectionArn",
|
|
4020
4222
|
exclude_file_patterns=["excludeFilePatterns"],
|
|
@@ -4054,6 +4256,8 @@ class CfnWorkflow(
|
|
|
4054
4256
|
id: builtins.str,
|
|
4055
4257
|
*,
|
|
4056
4258
|
accelerators: typing.Optional[builtins.str] = None,
|
|
4259
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.ContainerRegistryMapProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4260
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
4057
4261
|
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.DefinitionRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4058
4262
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
4059
4263
|
description: typing.Optional[builtins.str] = None,
|
|
@@ -4074,6 +4278,8 @@ class CfnWorkflow(
|
|
|
4074
4278
|
:param scope: Scope in which this resource is defined.
|
|
4075
4279
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4076
4280
|
:param accelerators:
|
|
4281
|
+
:param container_registry_map: Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
4282
|
+
:param container_registry_map_uri:
|
|
4077
4283
|
:param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
|
|
4078
4284
|
:param definition_uri: The URI of a definition for the workflow.
|
|
4079
4285
|
:param description: The parameter's description.
|
|
@@ -4096,6 +4302,8 @@ class CfnWorkflow(
|
|
|
4096
4302
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
4097
4303
|
props = CfnWorkflowProps(
|
|
4098
4304
|
accelerators=accelerators,
|
|
4305
|
+
container_registry_map=container_registry_map,
|
|
4306
|
+
container_registry_map_uri=container_registry_map_uri,
|
|
4099
4307
|
definition_repository=definition_repository,
|
|
4100
4308
|
definition_uri=definition_uri,
|
|
4101
4309
|
description=description,
|
|
@@ -4227,6 +4435,36 @@ class CfnWorkflow(
|
|
|
4227
4435
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4228
4436
|
jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
|
|
4229
4437
|
|
|
4438
|
+
@builtins.property
|
|
4439
|
+
@jsii.member(jsii_name="containerRegistryMap")
|
|
4440
|
+
def container_registry_map(
|
|
4441
|
+
self,
|
|
4442
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ContainerRegistryMapProperty"]]:
|
|
4443
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.'''
|
|
4444
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ContainerRegistryMapProperty"]], jsii.get(self, "containerRegistryMap"))
|
|
4445
|
+
|
|
4446
|
+
@container_registry_map.setter
|
|
4447
|
+
def container_registry_map(
|
|
4448
|
+
self,
|
|
4449
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ContainerRegistryMapProperty"]],
|
|
4450
|
+
) -> None:
|
|
4451
|
+
if __debug__:
|
|
4452
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d61321fc4a694dded60b8fceeeafd83e9ae3f79a0329bdba98cd03787f3daa3c)
|
|
4453
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4454
|
+
jsii.set(self, "containerRegistryMap", value) # pyright: ignore[reportArgumentType]
|
|
4455
|
+
|
|
4456
|
+
@builtins.property
|
|
4457
|
+
@jsii.member(jsii_name="containerRegistryMapUri")
|
|
4458
|
+
def container_registry_map_uri(self) -> typing.Optional[builtins.str]:
|
|
4459
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "containerRegistryMapUri"))
|
|
4460
|
+
|
|
4461
|
+
@container_registry_map_uri.setter
|
|
4462
|
+
def container_registry_map_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
4463
|
+
if __debug__:
|
|
4464
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1466a9fdbdff03b1c7b3fd5e72f7386ca160db487d501609519ca1c35a987aca)
|
|
4465
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4466
|
+
jsii.set(self, "containerRegistryMapUri", value) # pyright: ignore[reportArgumentType]
|
|
4467
|
+
|
|
4230
4468
|
@builtins.property
|
|
4231
4469
|
@jsii.member(jsii_name="definitionRepository")
|
|
4232
4470
|
def definition_repository(
|
|
@@ -4434,6 +4672,93 @@ class CfnWorkflow(
|
|
|
4434
4672
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4435
4673
|
jsii.set(self, "workflowBucketOwnerId", value) # pyright: ignore[reportArgumentType]
|
|
4436
4674
|
|
|
4675
|
+
@jsii.data_type(
|
|
4676
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.ContainerRegistryMapProperty",
|
|
4677
|
+
jsii_struct_bases=[],
|
|
4678
|
+
name_mapping={
|
|
4679
|
+
"image_mappings": "imageMappings",
|
|
4680
|
+
"registry_mappings": "registryMappings",
|
|
4681
|
+
},
|
|
4682
|
+
)
|
|
4683
|
+
class ContainerRegistryMapProperty:
|
|
4684
|
+
def __init__(
|
|
4685
|
+
self,
|
|
4686
|
+
*,
|
|
4687
|
+
image_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.ImageMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4688
|
+
registry_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.RegistryMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
4689
|
+
) -> None:
|
|
4690
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.
|
|
4691
|
+
|
|
4692
|
+
For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
4693
|
+
|
|
4694
|
+
:param image_mappings: Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
|
|
4695
|
+
:param registry_mappings: Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
|
|
4696
|
+
|
|
4697
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html
|
|
4698
|
+
:exampleMetadata: fixture=_generated
|
|
4699
|
+
|
|
4700
|
+
Example::
|
|
4701
|
+
|
|
4702
|
+
# The code below shows an example of how to instantiate this type.
|
|
4703
|
+
# The values are placeholders you should change.
|
|
4704
|
+
from aws_cdk import aws_omics as omics
|
|
4705
|
+
|
|
4706
|
+
container_registry_map_property = omics.CfnWorkflow.ContainerRegistryMapProperty(
|
|
4707
|
+
image_mappings=[omics.CfnWorkflow.ImageMappingProperty(
|
|
4708
|
+
destination_image="destinationImage",
|
|
4709
|
+
source_image="sourceImage"
|
|
4710
|
+
)],
|
|
4711
|
+
registry_mappings=[omics.CfnWorkflow.RegistryMappingProperty(
|
|
4712
|
+
ecr_account_id="ecrAccountId",
|
|
4713
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
4714
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
4715
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
4716
|
+
)]
|
|
4717
|
+
)
|
|
4718
|
+
'''
|
|
4719
|
+
if __debug__:
|
|
4720
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b93208b886c42793f6b22971c79ed50b456a125a28fedf2949548b0a03f82c3e)
|
|
4721
|
+
check_type(argname="argument image_mappings", value=image_mappings, expected_type=type_hints["image_mappings"])
|
|
4722
|
+
check_type(argname="argument registry_mappings", value=registry_mappings, expected_type=type_hints["registry_mappings"])
|
|
4723
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4724
|
+
if image_mappings is not None:
|
|
4725
|
+
self._values["image_mappings"] = image_mappings
|
|
4726
|
+
if registry_mappings is not None:
|
|
4727
|
+
self._values["registry_mappings"] = registry_mappings
|
|
4728
|
+
|
|
4729
|
+
@builtins.property
|
|
4730
|
+
def image_mappings(
|
|
4731
|
+
self,
|
|
4732
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ImageMappingProperty"]]]]:
|
|
4733
|
+
'''Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
|
|
4734
|
+
|
|
4735
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html#cfn-omics-workflow-containerregistrymap-imagemappings
|
|
4736
|
+
'''
|
|
4737
|
+
result = self._values.get("image_mappings")
|
|
4738
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.ImageMappingProperty"]]]], result)
|
|
4739
|
+
|
|
4740
|
+
@builtins.property
|
|
4741
|
+
def registry_mappings(
|
|
4742
|
+
self,
|
|
4743
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.RegistryMappingProperty"]]]]:
|
|
4744
|
+
'''Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
|
|
4745
|
+
|
|
4746
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html#cfn-omics-workflow-containerregistrymap-registrymappings
|
|
4747
|
+
'''
|
|
4748
|
+
result = self._values.get("registry_mappings")
|
|
4749
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.RegistryMappingProperty"]]]], result)
|
|
4750
|
+
|
|
4751
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4752
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4753
|
+
|
|
4754
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
4755
|
+
return not (rhs == self)
|
|
4756
|
+
|
|
4757
|
+
def __repr__(self) -> str:
|
|
4758
|
+
return "ContainerRegistryMapProperty(%s)" % ", ".join(
|
|
4759
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
4760
|
+
)
|
|
4761
|
+
|
|
4437
4762
|
@jsii.data_type(
|
|
4438
4763
|
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.DefinitionRepositoryProperty",
|
|
4439
4764
|
jsii_struct_bases=[],
|
|
@@ -4547,23 +4872,28 @@ class CfnWorkflow(
|
|
|
4547
4872
|
)
|
|
4548
4873
|
|
|
4549
4874
|
@jsii.data_type(
|
|
4550
|
-
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.
|
|
4875
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.ImageMappingProperty",
|
|
4551
4876
|
jsii_struct_bases=[],
|
|
4552
|
-
name_mapping={
|
|
4877
|
+
name_mapping={
|
|
4878
|
+
"destination_image": "destinationImage",
|
|
4879
|
+
"source_image": "sourceImage",
|
|
4880
|
+
},
|
|
4553
4881
|
)
|
|
4554
|
-
class
|
|
4882
|
+
class ImageMappingProperty:
|
|
4555
4883
|
def __init__(
|
|
4556
4884
|
self,
|
|
4557
4885
|
*,
|
|
4558
|
-
|
|
4559
|
-
|
|
4886
|
+
destination_image: typing.Optional[builtins.str] = None,
|
|
4887
|
+
source_image: typing.Optional[builtins.str] = None,
|
|
4560
4888
|
) -> None:
|
|
4561
|
-
'''
|
|
4889
|
+
'''Specifies image mappings that workflow tasks can use.
|
|
4562
4890
|
|
|
4563
|
-
|
|
4564
|
-
:param value: The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
4891
|
+
For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.
|
|
4565
4892
|
|
|
4566
|
-
:
|
|
4893
|
+
:param destination_image: Specifies the URI of the corresponding image in the private ECR registry.
|
|
4894
|
+
:param source_image: Specifies the URI of the source image in the upstream registry.
|
|
4895
|
+
|
|
4896
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html
|
|
4567
4897
|
:exampleMetadata: fixture=_generated
|
|
4568
4898
|
|
|
4569
4899
|
Example::
|
|
@@ -4572,37 +4902,37 @@ class CfnWorkflow(
|
|
|
4572
4902
|
# The values are placeholders you should change.
|
|
4573
4903
|
from aws_cdk import aws_omics as omics
|
|
4574
4904
|
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4905
|
+
image_mapping_property = omics.CfnWorkflow.ImageMappingProperty(
|
|
4906
|
+
destination_image="destinationImage",
|
|
4907
|
+
source_image="sourceImage"
|
|
4578
4908
|
)
|
|
4579
4909
|
'''
|
|
4580
4910
|
if __debug__:
|
|
4581
|
-
type_hints = typing.get_type_hints(
|
|
4582
|
-
check_type(argname="argument
|
|
4583
|
-
check_type(argname="argument
|
|
4911
|
+
type_hints = typing.get_type_hints(_typecheckingstub__98f85817eb366199f668581daf61aabd43de777e1bd4110572941bbd0bb03687)
|
|
4912
|
+
check_type(argname="argument destination_image", value=destination_image, expected_type=type_hints["destination_image"])
|
|
4913
|
+
check_type(argname="argument source_image", value=source_image, expected_type=type_hints["source_image"])
|
|
4584
4914
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4585
|
-
if
|
|
4586
|
-
self._values["
|
|
4587
|
-
if
|
|
4588
|
-
self._values["
|
|
4915
|
+
if destination_image is not None:
|
|
4916
|
+
self._values["destination_image"] = destination_image
|
|
4917
|
+
if source_image is not None:
|
|
4918
|
+
self._values["source_image"] = source_image
|
|
4589
4919
|
|
|
4590
4920
|
@builtins.property
|
|
4591
|
-
def
|
|
4592
|
-
'''
|
|
4921
|
+
def destination_image(self) -> typing.Optional[builtins.str]:
|
|
4922
|
+
'''Specifies the URI of the corresponding image in the private ECR registry.
|
|
4593
4923
|
|
|
4594
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-
|
|
4924
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html#cfn-omics-workflow-imagemapping-destinationimage
|
|
4595
4925
|
'''
|
|
4596
|
-
result = self._values.get("
|
|
4926
|
+
result = self._values.get("destination_image")
|
|
4597
4927
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4598
4928
|
|
|
4599
4929
|
@builtins.property
|
|
4600
|
-
def
|
|
4601
|
-
'''
|
|
4930
|
+
def source_image(self) -> typing.Optional[builtins.str]:
|
|
4931
|
+
'''Specifies the URI of the source image in the upstream registry.
|
|
4602
4932
|
|
|
4603
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-
|
|
4933
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html#cfn-omics-workflow-imagemapping-sourceimage
|
|
4604
4934
|
'''
|
|
4605
|
-
result = self._values.get("
|
|
4935
|
+
result = self._values.get("source_image")
|
|
4606
4936
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4607
4937
|
|
|
4608
4938
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
@@ -4612,28 +4942,37 @@ class CfnWorkflow(
|
|
|
4612
4942
|
return not (rhs == self)
|
|
4613
4943
|
|
|
4614
4944
|
def __repr__(self) -> str:
|
|
4615
|
-
return "
|
|
4945
|
+
return "ImageMappingProperty(%s)" % ", ".join(
|
|
4616
4946
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4617
4947
|
)
|
|
4618
4948
|
|
|
4619
4949
|
@jsii.data_type(
|
|
4620
|
-
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.
|
|
4950
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.RegistryMappingProperty",
|
|
4621
4951
|
jsii_struct_bases=[],
|
|
4622
|
-
name_mapping={
|
|
4952
|
+
name_mapping={
|
|
4953
|
+
"ecr_account_id": "ecrAccountId",
|
|
4954
|
+
"ecr_repository_prefix": "ecrRepositoryPrefix",
|
|
4955
|
+
"upstream_registry_url": "upstreamRegistryUrl",
|
|
4956
|
+
"upstream_repository_prefix": "upstreamRepositoryPrefix",
|
|
4957
|
+
},
|
|
4623
4958
|
)
|
|
4624
|
-
class
|
|
4959
|
+
class RegistryMappingProperty:
|
|
4625
4960
|
def __init__(
|
|
4626
4961
|
self,
|
|
4627
4962
|
*,
|
|
4628
|
-
|
|
4629
|
-
|
|
4963
|
+
ecr_account_id: typing.Optional[builtins.str] = None,
|
|
4964
|
+
ecr_repository_prefix: typing.Optional[builtins.str] = None,
|
|
4965
|
+
upstream_registry_url: typing.Optional[builtins.str] = None,
|
|
4966
|
+
upstream_repository_prefix: typing.Optional[builtins.str] = None,
|
|
4630
4967
|
) -> None:
|
|
4631
|
-
'''
|
|
4968
|
+
'''If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.
|
|
4632
4969
|
|
|
4633
|
-
:param
|
|
4634
|
-
:param
|
|
4970
|
+
:param ecr_account_id: Account ID of the account that owns the upstream container image.
|
|
4971
|
+
:param ecr_repository_prefix: The repository prefix to use in the ECR private repository.
|
|
4972
|
+
:param upstream_registry_url: The URI of the upstream registry.
|
|
4973
|
+
:param upstream_repository_prefix: The repository prefix of the corresponding repository in the upstream registry.
|
|
4635
4974
|
|
|
4636
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-
|
|
4975
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html
|
|
4637
4976
|
:exampleMetadata: fixture=_generated
|
|
4638
4977
|
|
|
4639
4978
|
Example::
|
|
@@ -4642,40 +4981,64 @@ class CfnWorkflow(
|
|
|
4642
4981
|
# The values are placeholders you should change.
|
|
4643
4982
|
from aws_cdk import aws_omics as omics
|
|
4644
4983
|
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4984
|
+
registry_mapping_property = omics.CfnWorkflow.RegistryMappingProperty(
|
|
4985
|
+
ecr_account_id="ecrAccountId",
|
|
4986
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
4987
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
4988
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
4648
4989
|
)
|
|
4649
4990
|
'''
|
|
4650
4991
|
if __debug__:
|
|
4651
|
-
type_hints = typing.get_type_hints(
|
|
4652
|
-
check_type(argname="argument
|
|
4653
|
-
check_type(argname="argument
|
|
4992
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bf8725b8e4b50a33568267e8b0666f0c8b9e8a47c56098879cb0cdba27310fbf)
|
|
4993
|
+
check_type(argname="argument ecr_account_id", value=ecr_account_id, expected_type=type_hints["ecr_account_id"])
|
|
4994
|
+
check_type(argname="argument ecr_repository_prefix", value=ecr_repository_prefix, expected_type=type_hints["ecr_repository_prefix"])
|
|
4995
|
+
check_type(argname="argument upstream_registry_url", value=upstream_registry_url, expected_type=type_hints["upstream_registry_url"])
|
|
4996
|
+
check_type(argname="argument upstream_repository_prefix", value=upstream_repository_prefix, expected_type=type_hints["upstream_repository_prefix"])
|
|
4654
4997
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4655
|
-
if
|
|
4656
|
-
self._values["
|
|
4657
|
-
if
|
|
4658
|
-
self._values["
|
|
4998
|
+
if ecr_account_id is not None:
|
|
4999
|
+
self._values["ecr_account_id"] = ecr_account_id
|
|
5000
|
+
if ecr_repository_prefix is not None:
|
|
5001
|
+
self._values["ecr_repository_prefix"] = ecr_repository_prefix
|
|
5002
|
+
if upstream_registry_url is not None:
|
|
5003
|
+
self._values["upstream_registry_url"] = upstream_registry_url
|
|
5004
|
+
if upstream_repository_prefix is not None:
|
|
5005
|
+
self._values["upstream_repository_prefix"] = upstream_repository_prefix
|
|
4659
5006
|
|
|
4660
5007
|
@builtins.property
|
|
4661
|
-
def
|
|
4662
|
-
'''
|
|
5008
|
+
def ecr_account_id(self) -> typing.Optional[builtins.str]:
|
|
5009
|
+
'''Account ID of the account that owns the upstream container image.
|
|
4663
5010
|
|
|
4664
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-
|
|
5011
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-ecraccountid
|
|
4665
5012
|
'''
|
|
4666
|
-
result = self._values.get("
|
|
5013
|
+
result = self._values.get("ecr_account_id")
|
|
4667
5014
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
4668
5015
|
|
|
4669
5016
|
@builtins.property
|
|
4670
|
-
def
|
|
4671
|
-
|
|
4672
|
-
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
4673
|
-
'''Whether the parameter is optional.
|
|
5017
|
+
def ecr_repository_prefix(self) -> typing.Optional[builtins.str]:
|
|
5018
|
+
'''The repository prefix to use in the ECR private repository.
|
|
4674
5019
|
|
|
4675
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-
|
|
5020
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-ecrrepositoryprefix
|
|
4676
5021
|
'''
|
|
4677
|
-
result = self._values.get("
|
|
4678
|
-
return typing.cast(typing.Optional[
|
|
5022
|
+
result = self._values.get("ecr_repository_prefix")
|
|
5023
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5024
|
+
|
|
5025
|
+
@builtins.property
|
|
5026
|
+
def upstream_registry_url(self) -> typing.Optional[builtins.str]:
|
|
5027
|
+
'''The URI of the upstream registry.
|
|
5028
|
+
|
|
5029
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-upstreamregistryurl
|
|
5030
|
+
'''
|
|
5031
|
+
result = self._values.get("upstream_registry_url")
|
|
5032
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5033
|
+
|
|
5034
|
+
@builtins.property
|
|
5035
|
+
def upstream_repository_prefix(self) -> typing.Optional[builtins.str]:
|
|
5036
|
+
'''The repository prefix of the corresponding repository in the upstream registry.
|
|
5037
|
+
|
|
5038
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html#cfn-omics-workflow-registrymapping-upstreamrepositoryprefix
|
|
5039
|
+
'''
|
|
5040
|
+
result = self._values.get("upstream_repository_prefix")
|
|
5041
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4679
5042
|
|
|
4680
5043
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4681
5044
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -4684,22 +5047,164 @@ class CfnWorkflow(
|
|
|
4684
5047
|
return not (rhs == self)
|
|
4685
5048
|
|
|
4686
5049
|
def __repr__(self) -> str:
|
|
4687
|
-
return "
|
|
5050
|
+
return "RegistryMappingProperty(%s)" % ", ".join(
|
|
4688
5051
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
4689
5052
|
)
|
|
4690
5053
|
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
5054
|
+
@jsii.data_type(
|
|
5055
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.SourceReferenceProperty",
|
|
5056
|
+
jsii_struct_bases=[],
|
|
5057
|
+
name_mapping={"type": "type", "value": "value"},
|
|
5058
|
+
)
|
|
5059
|
+
class SourceReferenceProperty:
|
|
5060
|
+
def __init__(
|
|
5061
|
+
self,
|
|
5062
|
+
*,
|
|
5063
|
+
type: typing.Optional[builtins.str] = None,
|
|
5064
|
+
value: typing.Optional[builtins.str] = None,
|
|
5065
|
+
) -> None:
|
|
5066
|
+
'''Contains information about the source reference in a code repository, such as a branch, tag, or commit.
|
|
5067
|
+
|
|
5068
|
+
:param type: The type of source reference, such as branch, tag, or commit.
|
|
5069
|
+
:param value: The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
5070
|
+
|
|
5071
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html
|
|
5072
|
+
:exampleMetadata: fixture=_generated
|
|
5073
|
+
|
|
5074
|
+
Example::
|
|
5075
|
+
|
|
5076
|
+
# The code below shows an example of how to instantiate this type.
|
|
5077
|
+
# The values are placeholders you should change.
|
|
5078
|
+
from aws_cdk import aws_omics as omics
|
|
5079
|
+
|
|
5080
|
+
source_reference_property = omics.CfnWorkflow.SourceReferenceProperty(
|
|
5081
|
+
type="type",
|
|
5082
|
+
value="value"
|
|
5083
|
+
)
|
|
5084
|
+
'''
|
|
5085
|
+
if __debug__:
|
|
5086
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f4e57d9f64919c2d451cd965846e1f5ee2aa3404611459632e4dd2699b4654d1)
|
|
5087
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
5088
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5089
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5090
|
+
if type is not None:
|
|
5091
|
+
self._values["type"] = type
|
|
5092
|
+
if value is not None:
|
|
5093
|
+
self._values["value"] = value
|
|
5094
|
+
|
|
5095
|
+
@builtins.property
|
|
5096
|
+
def type(self) -> typing.Optional[builtins.str]:
|
|
5097
|
+
'''The type of source reference, such as branch, tag, or commit.
|
|
5098
|
+
|
|
5099
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-type
|
|
5100
|
+
'''
|
|
5101
|
+
result = self._values.get("type")
|
|
5102
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5103
|
+
|
|
5104
|
+
@builtins.property
|
|
5105
|
+
def value(self) -> typing.Optional[builtins.str]:
|
|
5106
|
+
'''The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
5107
|
+
|
|
5108
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-value
|
|
5109
|
+
'''
|
|
5110
|
+
result = self._values.get("value")
|
|
5111
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5112
|
+
|
|
5113
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5114
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5115
|
+
|
|
5116
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5117
|
+
return not (rhs == self)
|
|
5118
|
+
|
|
5119
|
+
def __repr__(self) -> str:
|
|
5120
|
+
return "SourceReferenceProperty(%s)" % ", ".join(
|
|
5121
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5122
|
+
)
|
|
5123
|
+
|
|
5124
|
+
@jsii.data_type(
|
|
5125
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.WorkflowParameterProperty",
|
|
5126
|
+
jsii_struct_bases=[],
|
|
5127
|
+
name_mapping={"description": "description", "optional": "optional"},
|
|
5128
|
+
)
|
|
5129
|
+
class WorkflowParameterProperty:
|
|
5130
|
+
def __init__(
|
|
5131
|
+
self,
|
|
5132
|
+
*,
|
|
5133
|
+
description: typing.Optional[builtins.str] = None,
|
|
5134
|
+
optional: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5135
|
+
) -> None:
|
|
5136
|
+
'''A workflow parameter.
|
|
5137
|
+
|
|
5138
|
+
:param description: The parameter's description.
|
|
5139
|
+
:param optional: Whether the parameter is optional.
|
|
5140
|
+
|
|
5141
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html
|
|
5142
|
+
:exampleMetadata: fixture=_generated
|
|
5143
|
+
|
|
5144
|
+
Example::
|
|
5145
|
+
|
|
5146
|
+
# The code below shows an example of how to instantiate this type.
|
|
5147
|
+
# The values are placeholders you should change.
|
|
5148
|
+
from aws_cdk import aws_omics as omics
|
|
5149
|
+
|
|
5150
|
+
workflow_parameter_property = omics.CfnWorkflow.WorkflowParameterProperty(
|
|
5151
|
+
description="description",
|
|
5152
|
+
optional=False
|
|
5153
|
+
)
|
|
5154
|
+
'''
|
|
5155
|
+
if __debug__:
|
|
5156
|
+
type_hints = typing.get_type_hints(_typecheckingstub__beb0e924d2102ff644fd2da920cdd60f013b66e8285db8ffc0ce774a694580a5)
|
|
5157
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
5158
|
+
check_type(argname="argument optional", value=optional, expected_type=type_hints["optional"])
|
|
5159
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5160
|
+
if description is not None:
|
|
5161
|
+
self._values["description"] = description
|
|
5162
|
+
if optional is not None:
|
|
5163
|
+
self._values["optional"] = optional
|
|
5164
|
+
|
|
5165
|
+
@builtins.property
|
|
5166
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
5167
|
+
'''The parameter's description.
|
|
5168
|
+
|
|
5169
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-description
|
|
5170
|
+
'''
|
|
5171
|
+
result = self._values.get("description")
|
|
5172
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5173
|
+
|
|
5174
|
+
@builtins.property
|
|
5175
|
+
def optional(
|
|
5176
|
+
self,
|
|
5177
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
5178
|
+
'''Whether the parameter is optional.
|
|
5179
|
+
|
|
5180
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-optional
|
|
5181
|
+
'''
|
|
5182
|
+
result = self._values.get("optional")
|
|
5183
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
5184
|
+
|
|
5185
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5186
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5187
|
+
|
|
5188
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5189
|
+
return not (rhs == self)
|
|
5190
|
+
|
|
5191
|
+
def __repr__(self) -> str:
|
|
5192
|
+
return "WorkflowParameterProperty(%s)" % ", ".join(
|
|
5193
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5194
|
+
)
|
|
5195
|
+
|
|
5196
|
+
|
|
5197
|
+
@jsii.implements(_IInspectable_c2943556, IWorkflowVersionRef, _ITaggableV2_4e6798f8)
|
|
5198
|
+
class CfnWorkflowVersion(
|
|
5199
|
+
_CfnResource_9df397a6,
|
|
5200
|
+
metaclass=jsii.JSIIMeta,
|
|
5201
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion",
|
|
5202
|
+
):
|
|
5203
|
+
'''Creates a new workflow version for the workflow that you specify with the ``workflowId`` parameter.
|
|
5204
|
+
|
|
5205
|
+
When you create a new version of a workflow, you need to specify the configuration for the new version. It doesn't inherit any configuration values from the workflow.
|
|
5206
|
+
|
|
5207
|
+
Provide a version name that is unique for this workflow. You cannot change the name after HealthOmics creates the version.
|
|
4703
5208
|
.. epigraph::
|
|
4704
5209
|
|
|
4705
5210
|
Don't include any personally identifiable information (PII) in the version name. Version names appear in the workflow version ARN.
|
|
@@ -4722,6 +5227,28 @@ class CfnWorkflowVersion(
|
|
|
4722
5227
|
|
|
4723
5228
|
# the properties below are optional
|
|
4724
5229
|
accelerators="accelerators",
|
|
5230
|
+
container_registry_map=omics.CfnWorkflowVersion.ContainerRegistryMapProperty(
|
|
5231
|
+
image_mappings=[omics.CfnWorkflowVersion.ImageMappingProperty(
|
|
5232
|
+
destination_image="destinationImage",
|
|
5233
|
+
source_image="sourceImage"
|
|
5234
|
+
)],
|
|
5235
|
+
registry_mappings=[omics.CfnWorkflowVersion.RegistryMappingProperty(
|
|
5236
|
+
ecr_account_id="ecrAccountId",
|
|
5237
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
5238
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
5239
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
5240
|
+
)]
|
|
5241
|
+
),
|
|
5242
|
+
container_registry_map_uri="containerRegistryMapUri",
|
|
5243
|
+
definition_repository=omics.CfnWorkflowVersion.DefinitionRepositoryProperty(
|
|
5244
|
+
connection_arn="connectionArn",
|
|
5245
|
+
exclude_file_patterns=["excludeFilePatterns"],
|
|
5246
|
+
full_repository_id="fullRepositoryId",
|
|
5247
|
+
source_reference=omics.CfnWorkflowVersion.SourceReferenceProperty(
|
|
5248
|
+
type="type",
|
|
5249
|
+
value="value"
|
|
5250
|
+
)
|
|
5251
|
+
),
|
|
4725
5252
|
definition_uri="definitionUri",
|
|
4726
5253
|
description="description",
|
|
4727
5254
|
engine="engine",
|
|
@@ -4732,6 +5259,10 @@ class CfnWorkflowVersion(
|
|
|
4732
5259
|
optional=False
|
|
4733
5260
|
)
|
|
4734
5261
|
},
|
|
5262
|
+
parameter_template_path="parameterTemplatePath",
|
|
5263
|
+
readme_markdown="readmeMarkdown",
|
|
5264
|
+
readme_path="readmePath",
|
|
5265
|
+
readme_uri="readmeUri",
|
|
4735
5266
|
storage_capacity=123,
|
|
4736
5267
|
storage_type="storageType",
|
|
4737
5268
|
tags={
|
|
@@ -4749,11 +5280,18 @@ class CfnWorkflowVersion(
|
|
|
4749
5280
|
version_name: builtins.str,
|
|
4750
5281
|
workflow_id: builtins.str,
|
|
4751
5282
|
accelerators: typing.Optional[builtins.str] = None,
|
|
5283
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.ContainerRegistryMapProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5284
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
5285
|
+
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.DefinitionRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4752
5286
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
4753
5287
|
description: typing.Optional[builtins.str] = None,
|
|
4754
5288
|
engine: typing.Optional[builtins.str] = None,
|
|
4755
5289
|
main: typing.Optional[builtins.str] = None,
|
|
4756
5290
|
parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.WorkflowParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5291
|
+
parameter_template_path: typing.Optional[builtins.str] = None,
|
|
5292
|
+
readme_markdown: typing.Optional[builtins.str] = None,
|
|
5293
|
+
readme_path: typing.Optional[builtins.str] = None,
|
|
5294
|
+
readme_uri: typing.Optional[builtins.str] = None,
|
|
4757
5295
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4758
5296
|
storage_type: typing.Optional[builtins.str] = None,
|
|
4759
5297
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -4765,11 +5303,18 @@ class CfnWorkflowVersion(
|
|
|
4765
5303
|
:param version_name: The name of the workflow version.
|
|
4766
5304
|
:param workflow_id: The workflow's ID.
|
|
4767
5305
|
:param accelerators:
|
|
5306
|
+
:param container_registry_map: Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries. For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
5307
|
+
:param container_registry_map_uri:
|
|
5308
|
+
:param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
|
|
4768
5309
|
:param definition_uri:
|
|
4769
5310
|
:param description: The description of the workflow version.
|
|
4770
5311
|
:param engine:
|
|
4771
5312
|
:param main:
|
|
4772
5313
|
:param parameter_template:
|
|
5314
|
+
:param parameter_template_path: Path to the primary workflow parameter template JSON file inside the repository.
|
|
5315
|
+
:param readme_markdown: The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.
|
|
5316
|
+
:param readme_path: The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
|
|
5317
|
+
:param readme_uri: The S3 URI of the README file for the workflow. This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
|
|
4773
5318
|
:param storage_capacity:
|
|
4774
5319
|
:param storage_type:
|
|
4775
5320
|
:param tags: A map of resource tags.
|
|
@@ -4783,11 +5328,18 @@ class CfnWorkflowVersion(
|
|
|
4783
5328
|
version_name=version_name,
|
|
4784
5329
|
workflow_id=workflow_id,
|
|
4785
5330
|
accelerators=accelerators,
|
|
5331
|
+
container_registry_map=container_registry_map,
|
|
5332
|
+
container_registry_map_uri=container_registry_map_uri,
|
|
5333
|
+
definition_repository=definition_repository,
|
|
4786
5334
|
definition_uri=definition_uri,
|
|
4787
5335
|
description=description,
|
|
4788
5336
|
engine=engine,
|
|
4789
5337
|
main=main,
|
|
4790
5338
|
parameter_template=parameter_template,
|
|
5339
|
+
parameter_template_path=parameter_template_path,
|
|
5340
|
+
readme_markdown=readme_markdown,
|
|
5341
|
+
readme_path=readme_path,
|
|
5342
|
+
readme_uri=readme_uri,
|
|
4791
5343
|
storage_capacity=storage_capacity,
|
|
4792
5344
|
storage_type=storage_type,
|
|
4793
5345
|
tags=tags,
|
|
@@ -4925,123 +5477,672 @@ class CfnWorkflowVersion(
|
|
|
4925
5477
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4926
5478
|
jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
|
|
4927
5479
|
|
|
5480
|
+
@builtins.property
|
|
5481
|
+
@jsii.member(jsii_name="containerRegistryMap")
|
|
5482
|
+
def container_registry_map(
|
|
5483
|
+
self,
|
|
5484
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ContainerRegistryMapProperty"]]:
|
|
5485
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.'''
|
|
5486
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ContainerRegistryMapProperty"]], jsii.get(self, "containerRegistryMap"))
|
|
5487
|
+
|
|
5488
|
+
@container_registry_map.setter
|
|
5489
|
+
def container_registry_map(
|
|
5490
|
+
self,
|
|
5491
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ContainerRegistryMapProperty"]],
|
|
5492
|
+
) -> None:
|
|
5493
|
+
if __debug__:
|
|
5494
|
+
type_hints = typing.get_type_hints(_typecheckingstub__46a9bb90d987260f113e2b2c7bfe0d00e76229ce25afbfccf1a386b82f85e224)
|
|
5495
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5496
|
+
jsii.set(self, "containerRegistryMap", value) # pyright: ignore[reportArgumentType]
|
|
5497
|
+
|
|
5498
|
+
@builtins.property
|
|
5499
|
+
@jsii.member(jsii_name="containerRegistryMapUri")
|
|
5500
|
+
def container_registry_map_uri(self) -> typing.Optional[builtins.str]:
|
|
5501
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "containerRegistryMapUri"))
|
|
5502
|
+
|
|
5503
|
+
@container_registry_map_uri.setter
|
|
5504
|
+
def container_registry_map_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
5505
|
+
if __debug__:
|
|
5506
|
+
type_hints = typing.get_type_hints(_typecheckingstub__65acb20ad98b8b631169a3db99c88bd3662a7e2bd947577b5265d087e4b8362d)
|
|
5507
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5508
|
+
jsii.set(self, "containerRegistryMapUri", value) # pyright: ignore[reportArgumentType]
|
|
5509
|
+
|
|
5510
|
+
@builtins.property
|
|
5511
|
+
@jsii.member(jsii_name="definitionRepository")
|
|
5512
|
+
def definition_repository(
|
|
5513
|
+
self,
|
|
5514
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.DefinitionRepositoryProperty"]]:
|
|
5515
|
+
'''Contains information about a source code repository that hosts the workflow definition files.'''
|
|
5516
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.DefinitionRepositoryProperty"]], jsii.get(self, "definitionRepository"))
|
|
5517
|
+
|
|
5518
|
+
@definition_repository.setter
|
|
5519
|
+
def definition_repository(
|
|
5520
|
+
self,
|
|
5521
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.DefinitionRepositoryProperty"]],
|
|
5522
|
+
) -> None:
|
|
5523
|
+
if __debug__:
|
|
5524
|
+
type_hints = typing.get_type_hints(_typecheckingstub__76f88fb7dbfba72f92fec4a64878a9e7fdd595353c2e76e5f675a9f318a5b5e6)
|
|
5525
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5526
|
+
jsii.set(self, "definitionRepository", value) # pyright: ignore[reportArgumentType]
|
|
5527
|
+
|
|
4928
5528
|
@builtins.property
|
|
4929
5529
|
@jsii.member(jsii_name="definitionUri")
|
|
4930
5530
|
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
4931
5531
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "definitionUri"))
|
|
4932
5532
|
|
|
4933
|
-
@definition_uri.setter
|
|
4934
|
-
def definition_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
4935
|
-
if __debug__:
|
|
4936
|
-
type_hints = typing.get_type_hints(_typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978)
|
|
4937
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4938
|
-
jsii.set(self, "definitionUri", value) # pyright: ignore[reportArgumentType]
|
|
5533
|
+
@definition_uri.setter
|
|
5534
|
+
def definition_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
5535
|
+
if __debug__:
|
|
5536
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978)
|
|
5537
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5538
|
+
jsii.set(self, "definitionUri", value) # pyright: ignore[reportArgumentType]
|
|
5539
|
+
|
|
5540
|
+
@builtins.property
|
|
5541
|
+
@jsii.member(jsii_name="description")
|
|
5542
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
5543
|
+
'''The description of the workflow version.'''
|
|
5544
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
5545
|
+
|
|
5546
|
+
@description.setter
|
|
5547
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
5548
|
+
if __debug__:
|
|
5549
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d26e61de900859028fd4b5aff7eb7fefa87386da043d620b3407bc69ef3f950b)
|
|
5550
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5551
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
5552
|
+
|
|
5553
|
+
@builtins.property
|
|
5554
|
+
@jsii.member(jsii_name="engine")
|
|
5555
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
5556
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
5557
|
+
|
|
5558
|
+
@engine.setter
|
|
5559
|
+
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
5560
|
+
if __debug__:
|
|
5561
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc)
|
|
5562
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5563
|
+
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
5564
|
+
|
|
5565
|
+
@builtins.property
|
|
5566
|
+
@jsii.member(jsii_name="main")
|
|
5567
|
+
def main(self) -> typing.Optional[builtins.str]:
|
|
5568
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "main"))
|
|
5569
|
+
|
|
5570
|
+
@main.setter
|
|
5571
|
+
def main(self, value: typing.Optional[builtins.str]) -> None:
|
|
5572
|
+
if __debug__:
|
|
5573
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb201e46965fe4b385e0e52f84a505023c34c0c16c33aea7e75a09209c34d1af)
|
|
5574
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5575
|
+
jsii.set(self, "main", value) # pyright: ignore[reportArgumentType]
|
|
5576
|
+
|
|
5577
|
+
@builtins.property
|
|
5578
|
+
@jsii.member(jsii_name="parameterTemplate")
|
|
5579
|
+
def parameter_template(
|
|
5580
|
+
self,
|
|
5581
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]]:
|
|
5582
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
5583
|
+
|
|
5584
|
+
@parameter_template.setter
|
|
5585
|
+
def parameter_template(
|
|
5586
|
+
self,
|
|
5587
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]],
|
|
5588
|
+
) -> None:
|
|
5589
|
+
if __debug__:
|
|
5590
|
+
type_hints = typing.get_type_hints(_typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9)
|
|
5591
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5592
|
+
jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
|
|
5593
|
+
|
|
5594
|
+
@builtins.property
|
|
5595
|
+
@jsii.member(jsii_name="parameterTemplatePath")
|
|
5596
|
+
def parameter_template_path(self) -> typing.Optional[builtins.str]:
|
|
5597
|
+
'''Path to the primary workflow parameter template JSON file inside the repository.'''
|
|
5598
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "parameterTemplatePath"))
|
|
5599
|
+
|
|
5600
|
+
@parameter_template_path.setter
|
|
5601
|
+
def parameter_template_path(self, value: typing.Optional[builtins.str]) -> None:
|
|
5602
|
+
if __debug__:
|
|
5603
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1012e58717a3baf054312a40aba36847bbd98b702310ea8aff265f26caeab471)
|
|
5604
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5605
|
+
jsii.set(self, "parameterTemplatePath", value) # pyright: ignore[reportArgumentType]
|
|
5606
|
+
|
|
5607
|
+
@builtins.property
|
|
5608
|
+
@jsii.member(jsii_name="readmeMarkdown")
|
|
5609
|
+
def readme_markdown(self) -> typing.Optional[builtins.str]:
|
|
5610
|
+
'''The markdown content for the workflow's README file.'''
|
|
5611
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmeMarkdown"))
|
|
5612
|
+
|
|
5613
|
+
@readme_markdown.setter
|
|
5614
|
+
def readme_markdown(self, value: typing.Optional[builtins.str]) -> None:
|
|
5615
|
+
if __debug__:
|
|
5616
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3cea66896cfd0dfa12a8b3d0b44794207352c9c78eb70c50e46466b4eea34898)
|
|
5617
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5618
|
+
jsii.set(self, "readmeMarkdown", value) # pyright: ignore[reportArgumentType]
|
|
5619
|
+
|
|
5620
|
+
@builtins.property
|
|
5621
|
+
@jsii.member(jsii_name="readmePath")
|
|
5622
|
+
def readme_path(self) -> typing.Optional[builtins.str]:
|
|
5623
|
+
'''The path to the workflow README markdown file within the repository.'''
|
|
5624
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmePath"))
|
|
5625
|
+
|
|
5626
|
+
@readme_path.setter
|
|
5627
|
+
def readme_path(self, value: typing.Optional[builtins.str]) -> None:
|
|
5628
|
+
if __debug__:
|
|
5629
|
+
type_hints = typing.get_type_hints(_typecheckingstub__40cad564b15c28b2c112ad54de257f81d4d31fdfe311871657ae5bd714eb9ee6)
|
|
5630
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5631
|
+
jsii.set(self, "readmePath", value) # pyright: ignore[reportArgumentType]
|
|
5632
|
+
|
|
5633
|
+
@builtins.property
|
|
5634
|
+
@jsii.member(jsii_name="readmeUri")
|
|
5635
|
+
def readme_uri(self) -> typing.Optional[builtins.str]:
|
|
5636
|
+
'''The S3 URI of the README file for the workflow.'''
|
|
5637
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmeUri"))
|
|
5638
|
+
|
|
5639
|
+
@readme_uri.setter
|
|
5640
|
+
def readme_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
5641
|
+
if __debug__:
|
|
5642
|
+
type_hints = typing.get_type_hints(_typecheckingstub__abe09bb1e32d84773aaf309a744224900a63bf483fa24970e875c0b0a2f1b1cb)
|
|
5643
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5644
|
+
jsii.set(self, "readmeUri", value) # pyright: ignore[reportArgumentType]
|
|
5645
|
+
|
|
5646
|
+
@builtins.property
|
|
5647
|
+
@jsii.member(jsii_name="storageCapacity")
|
|
5648
|
+
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
5649
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
5650
|
+
|
|
5651
|
+
@storage_capacity.setter
|
|
5652
|
+
def storage_capacity(self, value: typing.Optional[jsii.Number]) -> None:
|
|
5653
|
+
if __debug__:
|
|
5654
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7)
|
|
5655
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5656
|
+
jsii.set(self, "storageCapacity", value) # pyright: ignore[reportArgumentType]
|
|
5657
|
+
|
|
5658
|
+
@builtins.property
|
|
5659
|
+
@jsii.member(jsii_name="storageType")
|
|
5660
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
5661
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "storageType"))
|
|
5662
|
+
|
|
5663
|
+
@storage_type.setter
|
|
5664
|
+
def storage_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
5665
|
+
if __debug__:
|
|
5666
|
+
type_hints = typing.get_type_hints(_typecheckingstub__50ce9715f4efa14e458d6207fae79f6b0ebc36a3bf74435e024116d9f8060ca2)
|
|
5667
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5668
|
+
jsii.set(self, "storageType", value) # pyright: ignore[reportArgumentType]
|
|
5669
|
+
|
|
5670
|
+
@builtins.property
|
|
5671
|
+
@jsii.member(jsii_name="tags")
|
|
5672
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
5673
|
+
'''A map of resource tags.'''
|
|
5674
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
5675
|
+
|
|
5676
|
+
@tags.setter
|
|
5677
|
+
def tags(
|
|
5678
|
+
self,
|
|
5679
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
5680
|
+
) -> None:
|
|
5681
|
+
if __debug__:
|
|
5682
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8)
|
|
5683
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5684
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
5685
|
+
|
|
5686
|
+
@builtins.property
|
|
5687
|
+
@jsii.member(jsii_name="workflowBucketOwnerId")
|
|
5688
|
+
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
5689
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "workflowBucketOwnerId"))
|
|
5690
|
+
|
|
5691
|
+
@workflow_bucket_owner_id.setter
|
|
5692
|
+
def workflow_bucket_owner_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
5693
|
+
if __debug__:
|
|
5694
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220c18775d)
|
|
5695
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5696
|
+
jsii.set(self, "workflowBucketOwnerId", value) # pyright: ignore[reportArgumentType]
|
|
5697
|
+
|
|
5698
|
+
@jsii.data_type(
|
|
5699
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.ContainerRegistryMapProperty",
|
|
5700
|
+
jsii_struct_bases=[],
|
|
5701
|
+
name_mapping={
|
|
5702
|
+
"image_mappings": "imageMappings",
|
|
5703
|
+
"registry_mappings": "registryMappings",
|
|
5704
|
+
},
|
|
5705
|
+
)
|
|
5706
|
+
class ContainerRegistryMapProperty:
|
|
5707
|
+
def __init__(
|
|
5708
|
+
self,
|
|
5709
|
+
*,
|
|
5710
|
+
image_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.ImageMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5711
|
+
registry_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.RegistryMappingProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
5712
|
+
) -> None:
|
|
5713
|
+
'''Use a container registry map to specify mappings between the ECR private repository and one or more upstream registries.
|
|
5714
|
+
|
|
5715
|
+
For more information, see `Container images <https://docs.aws.amazon.com/omics/latest/dev/workflows-ecr.html>`_ in the *AWS HealthOmics User Guide* .
|
|
5716
|
+
|
|
5717
|
+
:param image_mappings: Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
|
|
5718
|
+
:param registry_mappings: Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
|
|
5719
|
+
|
|
5720
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html
|
|
5721
|
+
:exampleMetadata: fixture=_generated
|
|
5722
|
+
|
|
5723
|
+
Example::
|
|
5724
|
+
|
|
5725
|
+
# The code below shows an example of how to instantiate this type.
|
|
5726
|
+
# The values are placeholders you should change.
|
|
5727
|
+
from aws_cdk import aws_omics as omics
|
|
5728
|
+
|
|
5729
|
+
container_registry_map_property = omics.CfnWorkflowVersion.ContainerRegistryMapProperty(
|
|
5730
|
+
image_mappings=[omics.CfnWorkflowVersion.ImageMappingProperty(
|
|
5731
|
+
destination_image="destinationImage",
|
|
5732
|
+
source_image="sourceImage"
|
|
5733
|
+
)],
|
|
5734
|
+
registry_mappings=[omics.CfnWorkflowVersion.RegistryMappingProperty(
|
|
5735
|
+
ecr_account_id="ecrAccountId",
|
|
5736
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
5737
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
5738
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
5739
|
+
)]
|
|
5740
|
+
)
|
|
5741
|
+
'''
|
|
5742
|
+
if __debug__:
|
|
5743
|
+
type_hints = typing.get_type_hints(_typecheckingstub__32eb3bf30b3d01f44e56bdf643f62609b8cbc84d473cb19e3564543b645033d4)
|
|
5744
|
+
check_type(argname="argument image_mappings", value=image_mappings, expected_type=type_hints["image_mappings"])
|
|
5745
|
+
check_type(argname="argument registry_mappings", value=registry_mappings, expected_type=type_hints["registry_mappings"])
|
|
5746
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5747
|
+
if image_mappings is not None:
|
|
5748
|
+
self._values["image_mappings"] = image_mappings
|
|
5749
|
+
if registry_mappings is not None:
|
|
5750
|
+
self._values["registry_mappings"] = registry_mappings
|
|
5751
|
+
|
|
5752
|
+
@builtins.property
|
|
5753
|
+
def image_mappings(
|
|
5754
|
+
self,
|
|
5755
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ImageMappingProperty"]]]]:
|
|
5756
|
+
'''Image mappings specify path mappings between the ECR private repository and their corresponding external repositories.
|
|
5757
|
+
|
|
5758
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html#cfn-omics-workflowversion-containerregistrymap-imagemappings
|
|
5759
|
+
'''
|
|
5760
|
+
result = self._values.get("image_mappings")
|
|
5761
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.ImageMappingProperty"]]]], result)
|
|
5762
|
+
|
|
5763
|
+
@builtins.property
|
|
5764
|
+
def registry_mappings(
|
|
5765
|
+
self,
|
|
5766
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.RegistryMappingProperty"]]]]:
|
|
5767
|
+
'''Mapping that provides the ECR repository path where upstream container images are pulled and synchronized.
|
|
5768
|
+
|
|
5769
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html#cfn-omics-workflowversion-containerregistrymap-registrymappings
|
|
5770
|
+
'''
|
|
5771
|
+
result = self._values.get("registry_mappings")
|
|
5772
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.RegistryMappingProperty"]]]], result)
|
|
5773
|
+
|
|
5774
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5775
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5776
|
+
|
|
5777
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5778
|
+
return not (rhs == self)
|
|
5779
|
+
|
|
5780
|
+
def __repr__(self) -> str:
|
|
5781
|
+
return "ContainerRegistryMapProperty(%s)" % ", ".join(
|
|
5782
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5783
|
+
)
|
|
5784
|
+
|
|
5785
|
+
@jsii.data_type(
|
|
5786
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.DefinitionRepositoryProperty",
|
|
5787
|
+
jsii_struct_bases=[],
|
|
5788
|
+
name_mapping={
|
|
5789
|
+
"connection_arn": "connectionArn",
|
|
5790
|
+
"exclude_file_patterns": "excludeFilePatterns",
|
|
5791
|
+
"full_repository_id": "fullRepositoryId",
|
|
5792
|
+
"source_reference": "sourceReference",
|
|
5793
|
+
},
|
|
5794
|
+
)
|
|
5795
|
+
class DefinitionRepositoryProperty:
|
|
5796
|
+
def __init__(
|
|
5797
|
+
self,
|
|
5798
|
+
*,
|
|
5799
|
+
connection_arn: typing.Optional[builtins.str] = None,
|
|
5800
|
+
exclude_file_patterns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5801
|
+
full_repository_id: typing.Optional[builtins.str] = None,
|
|
5802
|
+
source_reference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflowVersion.SourceReferenceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5803
|
+
) -> None:
|
|
5804
|
+
'''Contains information about a source code repository that hosts the workflow definition files.
|
|
5805
|
+
|
|
5806
|
+
:param connection_arn: The Amazon Resource Name (ARN) of the connection to the source code repository.
|
|
5807
|
+
:param exclude_file_patterns: A list of file patterns to exclude when retrieving the workflow definition from the repository.
|
|
5808
|
+
:param full_repository_id: The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.
|
|
5809
|
+
:param source_reference: The source reference for the repository, such as a branch name, tag, or commit ID.
|
|
5810
|
+
|
|
5811
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html
|
|
5812
|
+
:exampleMetadata: fixture=_generated
|
|
5813
|
+
|
|
5814
|
+
Example::
|
|
5815
|
+
|
|
5816
|
+
# The code below shows an example of how to instantiate this type.
|
|
5817
|
+
# The values are placeholders you should change.
|
|
5818
|
+
from aws_cdk import aws_omics as omics
|
|
5819
|
+
|
|
5820
|
+
definition_repository_property = omics.CfnWorkflowVersion.DefinitionRepositoryProperty(
|
|
5821
|
+
connection_arn="connectionArn",
|
|
5822
|
+
exclude_file_patterns=["excludeFilePatterns"],
|
|
5823
|
+
full_repository_id="fullRepositoryId",
|
|
5824
|
+
source_reference=omics.CfnWorkflowVersion.SourceReferenceProperty(
|
|
5825
|
+
type="type",
|
|
5826
|
+
value="value"
|
|
5827
|
+
)
|
|
5828
|
+
)
|
|
5829
|
+
'''
|
|
5830
|
+
if __debug__:
|
|
5831
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e0748aa0fb5a9a9d624696b0fc54ab2faf0941992918eb234ba6c3bb4a47aef5)
|
|
5832
|
+
check_type(argname="argument connection_arn", value=connection_arn, expected_type=type_hints["connection_arn"])
|
|
5833
|
+
check_type(argname="argument exclude_file_patterns", value=exclude_file_patterns, expected_type=type_hints["exclude_file_patterns"])
|
|
5834
|
+
check_type(argname="argument full_repository_id", value=full_repository_id, expected_type=type_hints["full_repository_id"])
|
|
5835
|
+
check_type(argname="argument source_reference", value=source_reference, expected_type=type_hints["source_reference"])
|
|
5836
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5837
|
+
if connection_arn is not None:
|
|
5838
|
+
self._values["connection_arn"] = connection_arn
|
|
5839
|
+
if exclude_file_patterns is not None:
|
|
5840
|
+
self._values["exclude_file_patterns"] = exclude_file_patterns
|
|
5841
|
+
if full_repository_id is not None:
|
|
5842
|
+
self._values["full_repository_id"] = full_repository_id
|
|
5843
|
+
if source_reference is not None:
|
|
5844
|
+
self._values["source_reference"] = source_reference
|
|
5845
|
+
|
|
5846
|
+
@builtins.property
|
|
5847
|
+
def connection_arn(self) -> typing.Optional[builtins.str]:
|
|
5848
|
+
'''The Amazon Resource Name (ARN) of the connection to the source code repository.
|
|
5849
|
+
|
|
5850
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-connectionarn
|
|
5851
|
+
'''
|
|
5852
|
+
result = self._values.get("connection_arn")
|
|
5853
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5854
|
+
|
|
5855
|
+
@builtins.property
|
|
5856
|
+
def exclude_file_patterns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
5857
|
+
'''A list of file patterns to exclude when retrieving the workflow definition from the repository.
|
|
5858
|
+
|
|
5859
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-excludefilepatterns
|
|
5860
|
+
'''
|
|
5861
|
+
result = self._values.get("exclude_file_patterns")
|
|
5862
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
5863
|
+
|
|
5864
|
+
@builtins.property
|
|
5865
|
+
def full_repository_id(self) -> typing.Optional[builtins.str]:
|
|
5866
|
+
'''The full repository identifier, including the repository owner and name.
|
|
5867
|
+
|
|
5868
|
+
For example, 'repository-owner/repository-name'.
|
|
5869
|
+
|
|
5870
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-fullrepositoryid
|
|
5871
|
+
'''
|
|
5872
|
+
result = self._values.get("full_repository_id")
|
|
5873
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5874
|
+
|
|
5875
|
+
@builtins.property
|
|
5876
|
+
def source_reference(
|
|
5877
|
+
self,
|
|
5878
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.SourceReferenceProperty"]]:
|
|
5879
|
+
'''The source reference for the repository, such as a branch name, tag, or commit ID.
|
|
5880
|
+
|
|
5881
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-sourcereference
|
|
5882
|
+
'''
|
|
5883
|
+
result = self._values.get("source_reference")
|
|
5884
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.SourceReferenceProperty"]], result)
|
|
5885
|
+
|
|
5886
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5887
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5888
|
+
|
|
5889
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5890
|
+
return not (rhs == self)
|
|
5891
|
+
|
|
5892
|
+
def __repr__(self) -> str:
|
|
5893
|
+
return "DefinitionRepositoryProperty(%s)" % ", ".join(
|
|
5894
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5895
|
+
)
|
|
5896
|
+
|
|
5897
|
+
@jsii.data_type(
|
|
5898
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.ImageMappingProperty",
|
|
5899
|
+
jsii_struct_bases=[],
|
|
5900
|
+
name_mapping={
|
|
5901
|
+
"destination_image": "destinationImage",
|
|
5902
|
+
"source_image": "sourceImage",
|
|
5903
|
+
},
|
|
5904
|
+
)
|
|
5905
|
+
class ImageMappingProperty:
|
|
5906
|
+
def __init__(
|
|
5907
|
+
self,
|
|
5908
|
+
*,
|
|
5909
|
+
destination_image: typing.Optional[builtins.str] = None,
|
|
5910
|
+
source_image: typing.Optional[builtins.str] = None,
|
|
5911
|
+
) -> None:
|
|
5912
|
+
'''Specifies image mappings that workflow tasks can use.
|
|
5913
|
+
|
|
5914
|
+
For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository.
|
|
5915
|
+
|
|
5916
|
+
:param destination_image: Specifies the URI of the corresponding image in the private ECR registry.
|
|
5917
|
+
:param source_image: Specifies the URI of the source image in the upstream registry.
|
|
5918
|
+
|
|
5919
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html
|
|
5920
|
+
:exampleMetadata: fixture=_generated
|
|
5921
|
+
|
|
5922
|
+
Example::
|
|
5923
|
+
|
|
5924
|
+
# The code below shows an example of how to instantiate this type.
|
|
5925
|
+
# The values are placeholders you should change.
|
|
5926
|
+
from aws_cdk import aws_omics as omics
|
|
5927
|
+
|
|
5928
|
+
image_mapping_property = omics.CfnWorkflowVersion.ImageMappingProperty(
|
|
5929
|
+
destination_image="destinationImage",
|
|
5930
|
+
source_image="sourceImage"
|
|
5931
|
+
)
|
|
5932
|
+
'''
|
|
5933
|
+
if __debug__:
|
|
5934
|
+
type_hints = typing.get_type_hints(_typecheckingstub__421f9ca400f5d5d6c3aa9a53dbe35757f3408b2b30be15794288deb51c48b293)
|
|
5935
|
+
check_type(argname="argument destination_image", value=destination_image, expected_type=type_hints["destination_image"])
|
|
5936
|
+
check_type(argname="argument source_image", value=source_image, expected_type=type_hints["source_image"])
|
|
5937
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
5938
|
+
if destination_image is not None:
|
|
5939
|
+
self._values["destination_image"] = destination_image
|
|
5940
|
+
if source_image is not None:
|
|
5941
|
+
self._values["source_image"] = source_image
|
|
5942
|
+
|
|
5943
|
+
@builtins.property
|
|
5944
|
+
def destination_image(self) -> typing.Optional[builtins.str]:
|
|
5945
|
+
'''Specifies the URI of the corresponding image in the private ECR registry.
|
|
5946
|
+
|
|
5947
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html#cfn-omics-workflowversion-imagemapping-destinationimage
|
|
5948
|
+
'''
|
|
5949
|
+
result = self._values.get("destination_image")
|
|
5950
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5951
|
+
|
|
5952
|
+
@builtins.property
|
|
5953
|
+
def source_image(self) -> typing.Optional[builtins.str]:
|
|
5954
|
+
'''Specifies the URI of the source image in the upstream registry.
|
|
5955
|
+
|
|
5956
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html#cfn-omics-workflowversion-imagemapping-sourceimage
|
|
5957
|
+
'''
|
|
5958
|
+
result = self._values.get("source_image")
|
|
5959
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5960
|
+
|
|
5961
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
5962
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5963
|
+
|
|
5964
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
5965
|
+
return not (rhs == self)
|
|
5966
|
+
|
|
5967
|
+
def __repr__(self) -> str:
|
|
5968
|
+
return "ImageMappingProperty(%s)" % ", ".join(
|
|
5969
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
5970
|
+
)
|
|
5971
|
+
|
|
5972
|
+
@jsii.data_type(
|
|
5973
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.RegistryMappingProperty",
|
|
5974
|
+
jsii_struct_bases=[],
|
|
5975
|
+
name_mapping={
|
|
5976
|
+
"ecr_account_id": "ecrAccountId",
|
|
5977
|
+
"ecr_repository_prefix": "ecrRepositoryPrefix",
|
|
5978
|
+
"upstream_registry_url": "upstreamRegistryUrl",
|
|
5979
|
+
"upstream_repository_prefix": "upstreamRepositoryPrefix",
|
|
5980
|
+
},
|
|
5981
|
+
)
|
|
5982
|
+
class RegistryMappingProperty:
|
|
5983
|
+
def __init__(
|
|
5984
|
+
self,
|
|
5985
|
+
*,
|
|
5986
|
+
ecr_account_id: typing.Optional[builtins.str] = None,
|
|
5987
|
+
ecr_repository_prefix: typing.Optional[builtins.str] = None,
|
|
5988
|
+
upstream_registry_url: typing.Optional[builtins.str] = None,
|
|
5989
|
+
upstream_repository_prefix: typing.Optional[builtins.str] = None,
|
|
5990
|
+
) -> None:
|
|
5991
|
+
'''If you are using the ECR pull through cache feature, the registry mapping maps between the ECR repository and the upstream registry where container images are pulled and synchronized.
|
|
5992
|
+
|
|
5993
|
+
:param ecr_account_id: Account ID of the account that owns the upstream container image.
|
|
5994
|
+
:param ecr_repository_prefix: The repository prefix to use in the ECR private repository.
|
|
5995
|
+
:param upstream_registry_url: The URI of the upstream registry.
|
|
5996
|
+
:param upstream_repository_prefix: The repository prefix of the corresponding repository in the upstream registry.
|
|
5997
|
+
|
|
5998
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html
|
|
5999
|
+
:exampleMetadata: fixture=_generated
|
|
6000
|
+
|
|
6001
|
+
Example::
|
|
6002
|
+
|
|
6003
|
+
# The code below shows an example of how to instantiate this type.
|
|
6004
|
+
# The values are placeholders you should change.
|
|
6005
|
+
from aws_cdk import aws_omics as omics
|
|
6006
|
+
|
|
6007
|
+
registry_mapping_property = omics.CfnWorkflowVersion.RegistryMappingProperty(
|
|
6008
|
+
ecr_account_id="ecrAccountId",
|
|
6009
|
+
ecr_repository_prefix="ecrRepositoryPrefix",
|
|
6010
|
+
upstream_registry_url="upstreamRegistryUrl",
|
|
6011
|
+
upstream_repository_prefix="upstreamRepositoryPrefix"
|
|
6012
|
+
)
|
|
6013
|
+
'''
|
|
6014
|
+
if __debug__:
|
|
6015
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9eab95380e8258bf7a10a1ed8080d039134ac7daf1f5f0c979d28cb4f5c4f426)
|
|
6016
|
+
check_type(argname="argument ecr_account_id", value=ecr_account_id, expected_type=type_hints["ecr_account_id"])
|
|
6017
|
+
check_type(argname="argument ecr_repository_prefix", value=ecr_repository_prefix, expected_type=type_hints["ecr_repository_prefix"])
|
|
6018
|
+
check_type(argname="argument upstream_registry_url", value=upstream_registry_url, expected_type=type_hints["upstream_registry_url"])
|
|
6019
|
+
check_type(argname="argument upstream_repository_prefix", value=upstream_repository_prefix, expected_type=type_hints["upstream_repository_prefix"])
|
|
6020
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6021
|
+
if ecr_account_id is not None:
|
|
6022
|
+
self._values["ecr_account_id"] = ecr_account_id
|
|
6023
|
+
if ecr_repository_prefix is not None:
|
|
6024
|
+
self._values["ecr_repository_prefix"] = ecr_repository_prefix
|
|
6025
|
+
if upstream_registry_url is not None:
|
|
6026
|
+
self._values["upstream_registry_url"] = upstream_registry_url
|
|
6027
|
+
if upstream_repository_prefix is not None:
|
|
6028
|
+
self._values["upstream_repository_prefix"] = upstream_repository_prefix
|
|
6029
|
+
|
|
6030
|
+
@builtins.property
|
|
6031
|
+
def ecr_account_id(self) -> typing.Optional[builtins.str]:
|
|
6032
|
+
'''Account ID of the account that owns the upstream container image.
|
|
6033
|
+
|
|
6034
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-ecraccountid
|
|
6035
|
+
'''
|
|
6036
|
+
result = self._values.get("ecr_account_id")
|
|
6037
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6038
|
+
|
|
6039
|
+
@builtins.property
|
|
6040
|
+
def ecr_repository_prefix(self) -> typing.Optional[builtins.str]:
|
|
6041
|
+
'''The repository prefix to use in the ECR private repository.
|
|
6042
|
+
|
|
6043
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-ecrrepositoryprefix
|
|
6044
|
+
'''
|
|
6045
|
+
result = self._values.get("ecr_repository_prefix")
|
|
6046
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6047
|
+
|
|
6048
|
+
@builtins.property
|
|
6049
|
+
def upstream_registry_url(self) -> typing.Optional[builtins.str]:
|
|
6050
|
+
'''The URI of the upstream registry.
|
|
6051
|
+
|
|
6052
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-upstreamregistryurl
|
|
6053
|
+
'''
|
|
6054
|
+
result = self._values.get("upstream_registry_url")
|
|
6055
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4939
6056
|
|
|
4940
|
-
|
|
4941
|
-
|
|
4942
|
-
|
|
4943
|
-
'''The description of the workflow version.'''
|
|
4944
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
6057
|
+
@builtins.property
|
|
6058
|
+
def upstream_repository_prefix(self) -> typing.Optional[builtins.str]:
|
|
6059
|
+
'''The repository prefix of the corresponding repository in the upstream registry.
|
|
4945
6060
|
|
|
4946
|
-
|
|
4947
|
-
|
|
4948
|
-
|
|
4949
|
-
|
|
4950
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4951
|
-
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
6061
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html#cfn-omics-workflowversion-registrymapping-upstreamrepositoryprefix
|
|
6062
|
+
'''
|
|
6063
|
+
result = self._values.get("upstream_repository_prefix")
|
|
6064
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4952
6065
|
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
def engine(self) -> typing.Optional[builtins.str]:
|
|
4956
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
6066
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6067
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4957
6068
|
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
if __debug__:
|
|
4961
|
-
type_hints = typing.get_type_hints(_typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc)
|
|
4962
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4963
|
-
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
6069
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6070
|
+
return not (rhs == self)
|
|
4964
6071
|
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
|
-
|
|
4968
|
-
|
|
6072
|
+
def __repr__(self) -> str:
|
|
6073
|
+
return "RegistryMappingProperty(%s)" % ", ".join(
|
|
6074
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6075
|
+
)
|
|
4969
6076
|
|
|
4970
|
-
@
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
6077
|
+
@jsii.data_type(
|
|
6078
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.SourceReferenceProperty",
|
|
6079
|
+
jsii_struct_bases=[],
|
|
6080
|
+
name_mapping={"type": "type", "value": "value"},
|
|
6081
|
+
)
|
|
6082
|
+
class SourceReferenceProperty:
|
|
6083
|
+
def __init__(
|
|
6084
|
+
self,
|
|
6085
|
+
*,
|
|
6086
|
+
type: typing.Optional[builtins.str] = None,
|
|
6087
|
+
value: typing.Optional[builtins.str] = None,
|
|
6088
|
+
) -> None:
|
|
6089
|
+
'''Contains information about the source reference in a code repository, such as a branch, tag, or commit.
|
|
4976
6090
|
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
def parameter_template(
|
|
4980
|
-
self,
|
|
4981
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]]:
|
|
4982
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
6091
|
+
:param type: The type of source reference, such as branch, tag, or commit.
|
|
6092
|
+
:param value: The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
4983
6093
|
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
self,
|
|
4987
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]],
|
|
4988
|
-
) -> None:
|
|
4989
|
-
if __debug__:
|
|
4990
|
-
type_hints = typing.get_type_hints(_typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9)
|
|
4991
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
4992
|
-
jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
|
|
6094
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html
|
|
6095
|
+
:exampleMetadata: fixture=_generated
|
|
4993
6096
|
|
|
4994
|
-
|
|
4995
|
-
@jsii.member(jsii_name="storageCapacity")
|
|
4996
|
-
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
4997
|
-
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
6097
|
+
Example::
|
|
4998
6098
|
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
|
|
6099
|
+
# The code below shows an example of how to instantiate this type.
|
|
6100
|
+
# The values are placeholders you should change.
|
|
6101
|
+
from aws_cdk import aws_omics as omics
|
|
6102
|
+
|
|
6103
|
+
source_reference_property = omics.CfnWorkflowVersion.SourceReferenceProperty(
|
|
6104
|
+
type="type",
|
|
6105
|
+
value="value"
|
|
6106
|
+
)
|
|
6107
|
+
'''
|
|
6108
|
+
if __debug__:
|
|
6109
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bd0032779911f1051b3896f001118256f2cbf0d060b22c10b5fdeb3b3e488c73)
|
|
6110
|
+
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
6111
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
6112
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6113
|
+
if type is not None:
|
|
6114
|
+
self._values["type"] = type
|
|
6115
|
+
if value is not None:
|
|
6116
|
+
self._values["value"] = value
|
|
5005
6117
|
|
|
5006
|
-
|
|
5007
|
-
|
|
5008
|
-
|
|
5009
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "storageType"))
|
|
6118
|
+
@builtins.property
|
|
6119
|
+
def type(self) -> typing.Optional[builtins.str]:
|
|
6120
|
+
'''The type of source reference, such as branch, tag, or commit.
|
|
5010
6121
|
|
|
5011
|
-
|
|
5012
|
-
|
|
5013
|
-
|
|
5014
|
-
|
|
5015
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5016
|
-
jsii.set(self, "storageType", value) # pyright: ignore[reportArgumentType]
|
|
6122
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html#cfn-omics-workflowversion-sourcereference-type
|
|
6123
|
+
'''
|
|
6124
|
+
result = self._values.get("type")
|
|
6125
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5017
6126
|
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
|
|
5021
|
-
'''A map of resource tags.'''
|
|
5022
|
-
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
6127
|
+
@builtins.property
|
|
6128
|
+
def value(self) -> typing.Optional[builtins.str]:
|
|
6129
|
+
'''The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
5023
6130
|
|
|
5024
|
-
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
) -> None:
|
|
5029
|
-
if __debug__:
|
|
5030
|
-
type_hints = typing.get_type_hints(_typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8)
|
|
5031
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5032
|
-
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
6131
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html#cfn-omics-workflowversion-sourcereference-value
|
|
6132
|
+
'''
|
|
6133
|
+
result = self._values.get("value")
|
|
6134
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
5033
6135
|
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
5037
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "workflowBucketOwnerId"))
|
|
6136
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
6137
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
5038
6138
|
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
6139
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
6140
|
+
return not (rhs == self)
|
|
6141
|
+
|
|
6142
|
+
def __repr__(self) -> str:
|
|
6143
|
+
return "SourceReferenceProperty(%s)" % ", ".join(
|
|
6144
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
6145
|
+
)
|
|
5045
6146
|
|
|
5046
6147
|
@jsii.data_type(
|
|
5047
6148
|
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.WorkflowParameterProperty",
|
|
@@ -5220,6 +6321,8 @@ def _typecheckingstub__9cee3839b5919ab156aab54490277c559d790311fd9ea2b761f99373f
|
|
|
5220
6321
|
def _typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8205f173(
|
|
5221
6322
|
*,
|
|
5222
6323
|
accelerators: typing.Optional[builtins.str] = None,
|
|
6324
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.ContainerRegistryMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6325
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
5223
6326
|
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5224
6327
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
5225
6328
|
description: typing.Optional[builtins.str] = None,
|
|
@@ -5244,11 +6347,18 @@ def _typecheckingstub__32259ddc7b7d888918efaf09deb63ba780f3721ec1da9ea606ed8100a
|
|
|
5244
6347
|
version_name: builtins.str,
|
|
5245
6348
|
workflow_id: builtins.str,
|
|
5246
6349
|
accelerators: typing.Optional[builtins.str] = None,
|
|
6350
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.ContainerRegistryMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6351
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
6352
|
+
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5247
6353
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
5248
6354
|
description: typing.Optional[builtins.str] = None,
|
|
5249
6355
|
engine: typing.Optional[builtins.str] = None,
|
|
5250
6356
|
main: typing.Optional[builtins.str] = None,
|
|
5251
6357
|
parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6358
|
+
parameter_template_path: typing.Optional[builtins.str] = None,
|
|
6359
|
+
readme_markdown: typing.Optional[builtins.str] = None,
|
|
6360
|
+
readme_path: typing.Optional[builtins.str] = None,
|
|
6361
|
+
readme_uri: typing.Optional[builtins.str] = None,
|
|
5252
6362
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
5253
6363
|
storage_type: typing.Optional[builtins.str] = None,
|
|
5254
6364
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -5687,6 +6797,8 @@ def _typecheckingstub__b2d05cb293836959a925b22dbe1861bc4457d2d510bd3a480ae858ea9
|
|
|
5687
6797
|
id: builtins.str,
|
|
5688
6798
|
*,
|
|
5689
6799
|
accelerators: typing.Optional[builtins.str] = None,
|
|
6800
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.ContainerRegistryMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6801
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
5690
6802
|
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5691
6803
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
5692
6804
|
description: typing.Optional[builtins.str] = None,
|
|
@@ -5724,6 +6836,18 @@ def _typecheckingstub__286f71b00d1993ebc792c6e260606dac95cf17ec599b45b4cb2111b4c
|
|
|
5724
6836
|
"""Type checking stubs"""
|
|
5725
6837
|
pass
|
|
5726
6838
|
|
|
6839
|
+
def _typecheckingstub__d61321fc4a694dded60b8fceeeafd83e9ae3f79a0329bdba98cd03787f3daa3c(
|
|
6840
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflow.ContainerRegistryMapProperty]],
|
|
6841
|
+
) -> None:
|
|
6842
|
+
"""Type checking stubs"""
|
|
6843
|
+
pass
|
|
6844
|
+
|
|
6845
|
+
def _typecheckingstub__1466a9fdbdff03b1c7b3fd5e72f7386ca160db487d501609519ca1c35a987aca(
|
|
6846
|
+
value: typing.Optional[builtins.str],
|
|
6847
|
+
) -> None:
|
|
6848
|
+
"""Type checking stubs"""
|
|
6849
|
+
pass
|
|
6850
|
+
|
|
5727
6851
|
def _typecheckingstub__6b6e4242f1457a50b9f5b17595e8985df9311b3b5ec98f525f390f9387770415(
|
|
5728
6852
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflow.DefinitionRepositoryProperty]],
|
|
5729
6853
|
) -> None:
|
|
@@ -5814,6 +6938,14 @@ def _typecheckingstub__fec2ca5e32cee87eaac65d878c60669f18bb90724ac13ab05f21221eb
|
|
|
5814
6938
|
"""Type checking stubs"""
|
|
5815
6939
|
pass
|
|
5816
6940
|
|
|
6941
|
+
def _typecheckingstub__b93208b886c42793f6b22971c79ed50b456a125a28fedf2949548b0a03f82c3e(
|
|
6942
|
+
*,
|
|
6943
|
+
image_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.ImageMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6944
|
+
registry_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.RegistryMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
6945
|
+
) -> None:
|
|
6946
|
+
"""Type checking stubs"""
|
|
6947
|
+
pass
|
|
6948
|
+
|
|
5817
6949
|
def _typecheckingstub__a3c23b09e8f18584c69d282b6816697f2992e22dbf81773246b66875fbb0c0c8(
|
|
5818
6950
|
*,
|
|
5819
6951
|
connection_arn: typing.Optional[builtins.str] = None,
|
|
@@ -5824,6 +6956,24 @@ def _typecheckingstub__a3c23b09e8f18584c69d282b6816697f2992e22dbf81773246b66875f
|
|
|
5824
6956
|
"""Type checking stubs"""
|
|
5825
6957
|
pass
|
|
5826
6958
|
|
|
6959
|
+
def _typecheckingstub__98f85817eb366199f668581daf61aabd43de777e1bd4110572941bbd0bb03687(
|
|
6960
|
+
*,
|
|
6961
|
+
destination_image: typing.Optional[builtins.str] = None,
|
|
6962
|
+
source_image: typing.Optional[builtins.str] = None,
|
|
6963
|
+
) -> None:
|
|
6964
|
+
"""Type checking stubs"""
|
|
6965
|
+
pass
|
|
6966
|
+
|
|
6967
|
+
def _typecheckingstub__bf8725b8e4b50a33568267e8b0666f0c8b9e8a47c56098879cb0cdba27310fbf(
|
|
6968
|
+
*,
|
|
6969
|
+
ecr_account_id: typing.Optional[builtins.str] = None,
|
|
6970
|
+
ecr_repository_prefix: typing.Optional[builtins.str] = None,
|
|
6971
|
+
upstream_registry_url: typing.Optional[builtins.str] = None,
|
|
6972
|
+
upstream_repository_prefix: typing.Optional[builtins.str] = None,
|
|
6973
|
+
) -> None:
|
|
6974
|
+
"""Type checking stubs"""
|
|
6975
|
+
pass
|
|
6976
|
+
|
|
5827
6977
|
def _typecheckingstub__f4e57d9f64919c2d451cd965846e1f5ee2aa3404611459632e4dd2699b4654d1(
|
|
5828
6978
|
*,
|
|
5829
6979
|
type: typing.Optional[builtins.str] = None,
|
|
@@ -5847,11 +6997,18 @@ def _typecheckingstub__f9bbd83c3821b6d01e1b0445c2a66c0e7c312d81583ae6cf8dbe78c8d
|
|
|
5847
6997
|
version_name: builtins.str,
|
|
5848
6998
|
workflow_id: builtins.str,
|
|
5849
6999
|
accelerators: typing.Optional[builtins.str] = None,
|
|
7000
|
+
container_registry_map: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.ContainerRegistryMapProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7001
|
+
container_registry_map_uri: typing.Optional[builtins.str] = None,
|
|
7002
|
+
definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
5850
7003
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
5851
7004
|
description: typing.Optional[builtins.str] = None,
|
|
5852
7005
|
engine: typing.Optional[builtins.str] = None,
|
|
5853
7006
|
main: typing.Optional[builtins.str] = None,
|
|
5854
7007
|
parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7008
|
+
parameter_template_path: typing.Optional[builtins.str] = None,
|
|
7009
|
+
readme_markdown: typing.Optional[builtins.str] = None,
|
|
7010
|
+
readme_path: typing.Optional[builtins.str] = None,
|
|
7011
|
+
readme_uri: typing.Optional[builtins.str] = None,
|
|
5855
7012
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
5856
7013
|
storage_type: typing.Optional[builtins.str] = None,
|
|
5857
7014
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
@@ -5890,6 +7047,24 @@ def _typecheckingstub__b69952a53a68976751566fbcf17774d0dfa2d7ede106cb440b751f76c
|
|
|
5890
7047
|
"""Type checking stubs"""
|
|
5891
7048
|
pass
|
|
5892
7049
|
|
|
7050
|
+
def _typecheckingstub__46a9bb90d987260f113e2b2c7bfe0d00e76229ce25afbfccf1a386b82f85e224(
|
|
7051
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.ContainerRegistryMapProperty]],
|
|
7052
|
+
) -> None:
|
|
7053
|
+
"""Type checking stubs"""
|
|
7054
|
+
pass
|
|
7055
|
+
|
|
7056
|
+
def _typecheckingstub__65acb20ad98b8b631169a3db99c88bd3662a7e2bd947577b5265d087e4b8362d(
|
|
7057
|
+
value: typing.Optional[builtins.str],
|
|
7058
|
+
) -> None:
|
|
7059
|
+
"""Type checking stubs"""
|
|
7060
|
+
pass
|
|
7061
|
+
|
|
7062
|
+
def _typecheckingstub__76f88fb7dbfba72f92fec4a64878a9e7fdd595353c2e76e5f675a9f318a5b5e6(
|
|
7063
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.DefinitionRepositoryProperty]],
|
|
7064
|
+
) -> None:
|
|
7065
|
+
"""Type checking stubs"""
|
|
7066
|
+
pass
|
|
7067
|
+
|
|
5893
7068
|
def _typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978(
|
|
5894
7069
|
value: typing.Optional[builtins.str],
|
|
5895
7070
|
) -> None:
|
|
@@ -5920,6 +7095,30 @@ def _typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4
|
|
|
5920
7095
|
"""Type checking stubs"""
|
|
5921
7096
|
pass
|
|
5922
7097
|
|
|
7098
|
+
def _typecheckingstub__1012e58717a3baf054312a40aba36847bbd98b702310ea8aff265f26caeab471(
|
|
7099
|
+
value: typing.Optional[builtins.str],
|
|
7100
|
+
) -> None:
|
|
7101
|
+
"""Type checking stubs"""
|
|
7102
|
+
pass
|
|
7103
|
+
|
|
7104
|
+
def _typecheckingstub__3cea66896cfd0dfa12a8b3d0b44794207352c9c78eb70c50e46466b4eea34898(
|
|
7105
|
+
value: typing.Optional[builtins.str],
|
|
7106
|
+
) -> None:
|
|
7107
|
+
"""Type checking stubs"""
|
|
7108
|
+
pass
|
|
7109
|
+
|
|
7110
|
+
def _typecheckingstub__40cad564b15c28b2c112ad54de257f81d4d31fdfe311871657ae5bd714eb9ee6(
|
|
7111
|
+
value: typing.Optional[builtins.str],
|
|
7112
|
+
) -> None:
|
|
7113
|
+
"""Type checking stubs"""
|
|
7114
|
+
pass
|
|
7115
|
+
|
|
7116
|
+
def _typecheckingstub__abe09bb1e32d84773aaf309a744224900a63bf483fa24970e875c0b0a2f1b1cb(
|
|
7117
|
+
value: typing.Optional[builtins.str],
|
|
7118
|
+
) -> None:
|
|
7119
|
+
"""Type checking stubs"""
|
|
7120
|
+
pass
|
|
7121
|
+
|
|
5923
7122
|
def _typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7(
|
|
5924
7123
|
value: typing.Optional[jsii.Number],
|
|
5925
7124
|
) -> None:
|
|
@@ -5944,6 +7143,50 @@ def _typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220
|
|
|
5944
7143
|
"""Type checking stubs"""
|
|
5945
7144
|
pass
|
|
5946
7145
|
|
|
7146
|
+
def _typecheckingstub__32eb3bf30b3d01f44e56bdf643f62609b8cbc84d473cb19e3564543b645033d4(
|
|
7147
|
+
*,
|
|
7148
|
+
image_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.ImageMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7149
|
+
registry_mappings: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.RegistryMappingProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
7150
|
+
) -> None:
|
|
7151
|
+
"""Type checking stubs"""
|
|
7152
|
+
pass
|
|
7153
|
+
|
|
7154
|
+
def _typecheckingstub__e0748aa0fb5a9a9d624696b0fc54ab2faf0941992918eb234ba6c3bb4a47aef5(
|
|
7155
|
+
*,
|
|
7156
|
+
connection_arn: typing.Optional[builtins.str] = None,
|
|
7157
|
+
exclude_file_patterns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7158
|
+
full_repository_id: typing.Optional[builtins.str] = None,
|
|
7159
|
+
source_reference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflowVersion.SourceReferenceProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
7160
|
+
) -> None:
|
|
7161
|
+
"""Type checking stubs"""
|
|
7162
|
+
pass
|
|
7163
|
+
|
|
7164
|
+
def _typecheckingstub__421f9ca400f5d5d6c3aa9a53dbe35757f3408b2b30be15794288deb51c48b293(
|
|
7165
|
+
*,
|
|
7166
|
+
destination_image: typing.Optional[builtins.str] = None,
|
|
7167
|
+
source_image: typing.Optional[builtins.str] = None,
|
|
7168
|
+
) -> None:
|
|
7169
|
+
"""Type checking stubs"""
|
|
7170
|
+
pass
|
|
7171
|
+
|
|
7172
|
+
def _typecheckingstub__9eab95380e8258bf7a10a1ed8080d039134ac7daf1f5f0c979d28cb4f5c4f426(
|
|
7173
|
+
*,
|
|
7174
|
+
ecr_account_id: typing.Optional[builtins.str] = None,
|
|
7175
|
+
ecr_repository_prefix: typing.Optional[builtins.str] = None,
|
|
7176
|
+
upstream_registry_url: typing.Optional[builtins.str] = None,
|
|
7177
|
+
upstream_repository_prefix: typing.Optional[builtins.str] = None,
|
|
7178
|
+
) -> None:
|
|
7179
|
+
"""Type checking stubs"""
|
|
7180
|
+
pass
|
|
7181
|
+
|
|
7182
|
+
def _typecheckingstub__bd0032779911f1051b3896f001118256f2cbf0d060b22c10b5fdeb3b3e488c73(
|
|
7183
|
+
*,
|
|
7184
|
+
type: typing.Optional[builtins.str] = None,
|
|
7185
|
+
value: typing.Optional[builtins.str] = None,
|
|
7186
|
+
) -> None:
|
|
7187
|
+
"""Type checking stubs"""
|
|
7188
|
+
pass
|
|
7189
|
+
|
|
5947
7190
|
def _typecheckingstub__3d434101b6df92e22ac3acf923cd7bb4105c1a82dad119b383839a4f14189485(
|
|
5948
7191
|
*,
|
|
5949
7192
|
description: typing.Optional[builtins.str] = None,
|