aws-cdk-lib 2.213.0__py3-none-any.whl → 2.214.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.

Files changed (65) hide show
  1. aws_cdk/__init__.py +23 -3
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.213.0.jsii.tgz → aws-cdk-lib@2.214.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_appconfig/__init__.py +18 -6
  5. aws_cdk/aws_appintegrations/__init__.py +4 -4
  6. aws_cdk/aws_apprunner/__init__.py +5 -8
  7. aws_cdk/aws_aps/__init__.py +243 -10
  8. aws_cdk/aws_b2bi/__init__.py +1015 -128
  9. aws_cdk/aws_batch/__init__.py +33 -11
  10. aws_cdk/aws_bedrock/__init__.py +22 -216
  11. aws_cdk/aws_budgets/__init__.py +18 -0
  12. aws_cdk/aws_certificatemanager/__init__.py +96 -15
  13. aws_cdk/aws_cloudformation/__init__.py +3 -3
  14. aws_cdk/aws_cloudwatch/__init__.py +80 -49
  15. aws_cdk/aws_cognito/__init__.py +76 -5
  16. aws_cdk/aws_connect/__init__.py +188 -2
  17. aws_cdk/aws_datazone/__init__.py +2267 -0
  18. aws_cdk/aws_deadline/__init__.py +6 -5
  19. aws_cdk/aws_dynamodb/__init__.py +27 -16
  20. aws_cdk/aws_ec2/__init__.py +51 -10
  21. aws_cdk/aws_ecs/__init__.py +288 -25
  22. aws_cdk/aws_ecs_patterns/__init__.py +2 -0
  23. aws_cdk/aws_eks/__init__.py +124 -0
  24. aws_cdk/aws_elasticloadbalancingv2/__init__.py +6 -2
  25. aws_cdk/aws_entityresolution/__init__.py +107 -0
  26. aws_cdk/aws_events/__init__.py +153 -55
  27. aws_cdk/aws_events_targets/__init__.py +87 -36
  28. aws_cdk/aws_fsx/__init__.py +62 -0
  29. aws_cdk/aws_gameliftstreams/__init__.py +1 -1
  30. aws_cdk/aws_glue/__init__.py +205 -23
  31. aws_cdk/aws_guardduty/__init__.py +205 -100
  32. aws_cdk/aws_iam/__init__.py +24 -21
  33. aws_cdk/aws_inspectorv2/__init__.py +125 -80
  34. aws_cdk/aws_iot/__init__.py +37 -19
  35. aws_cdk/aws_iotsitewise/__init__.py +111 -75
  36. aws_cdk/aws_ivs/__init__.py +17 -17
  37. aws_cdk/aws_kinesisanalytics/__init__.py +122 -3
  38. aws_cdk/aws_kinesisanalyticsv2/__init__.py +122 -3
  39. aws_cdk/aws_lambda/__init__.py +23 -2
  40. aws_cdk/aws_logs/__init__.py +20 -15
  41. aws_cdk/aws_mediapackagev2/__init__.py +2 -2
  42. aws_cdk/aws_networkfirewall/__init__.py +6 -6
  43. aws_cdk/aws_omics/__init__.py +477 -2
  44. aws_cdk/aws_qbusiness/__init__.py +4 -2
  45. aws_cdk/aws_rds/__init__.py +132 -4
  46. aws_cdk/aws_route53/__init__.py +18 -11
  47. aws_cdk/aws_s3/__init__.py +4 -4
  48. aws_cdk/aws_s3_deployment/__init__.py +45 -0
  49. aws_cdk/aws_sagemaker/__init__.py +653 -0
  50. aws_cdk/aws_servicediscovery/__init__.py +22 -37
  51. aws_cdk/aws_sns/__init__.py +12 -2
  52. aws_cdk/aws_sns_subscriptions/__init__.py +3 -1
  53. aws_cdk/aws_sqs/__init__.py +5 -5
  54. aws_cdk/aws_ssm/__init__.py +8 -3
  55. aws_cdk/aws_ssmquicksetup/__init__.py +2 -2
  56. aws_cdk/aws_synthetics/__init__.py +222 -12
  57. aws_cdk/aws_transfer/__init__.py +15 -2
  58. aws_cdk/aws_vpclattice/__init__.py +41 -0
  59. aws_cdk/aws_workspacesweb/__init__.py +71 -41
  60. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/METADATA +2 -2
  61. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/RECORD +65 -65
  62. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/LICENSE +0 -0
  63. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/NOTICE +0 -0
  64. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/WHEEL +0 -0
  65. {aws_cdk_lib-2.213.0.dist-info → aws_cdk_lib-2.214.0.dist-info}/top_level.txt +0 -0
@@ -2731,6 +2731,15 @@ class CfnWorkflow(
2731
2731
 
2732
2732
  cfn_workflow = omics.CfnWorkflow(self, "MyCfnWorkflow",
2733
2733
  accelerators="accelerators",
2734
+ definition_repository=omics.CfnWorkflow.DefinitionRepositoryProperty(
2735
+ connection_arn="connectionArn",
2736
+ exclude_file_patterns=["excludeFilePatterns"],
2737
+ full_repository_id="fullRepositoryId",
2738
+ source_reference=omics.CfnWorkflow.SourceReferenceProperty(
2739
+ type="type",
2740
+ value="value"
2741
+ )
2742
+ ),
2734
2743
  definition_uri="definitionUri",
2735
2744
  description="description",
2736
2745
  engine="engine",
@@ -2742,11 +2751,16 @@ class CfnWorkflow(
2742
2751
  optional=False
2743
2752
  )
2744
2753
  },
2754
+ parameter_template_path="parameterTemplatePath",
2755
+ readme_markdown="readmeMarkdown",
2756
+ readme_path="readmePath",
2757
+ readme_uri="readmeUri",
2745
2758
  storage_capacity=123,
2746
2759
  storage_type="storageType",
2747
2760
  tags={
2748
2761
  "tags_key": "tags"
2749
- }
2762
+ },
2763
+ workflow_bucket_owner_id="workflowBucketOwnerId"
2750
2764
  )
2751
2765
  '''
2752
2766
 
@@ -2756,29 +2770,41 @@ class CfnWorkflow(
2756
2770
  id: builtins.str,
2757
2771
  *,
2758
2772
  accelerators: typing.Optional[builtins.str] = None,
2773
+ definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.DefinitionRepositoryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2759
2774
  definition_uri: typing.Optional[builtins.str] = None,
2760
2775
  description: typing.Optional[builtins.str] = None,
2761
2776
  engine: typing.Optional[builtins.str] = None,
2762
2777
  main: typing.Optional[builtins.str] = None,
2763
2778
  name: typing.Optional[builtins.str] = None,
2764
2779
  parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.WorkflowParameterProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
2780
+ parameter_template_path: typing.Optional[builtins.str] = None,
2781
+ readme_markdown: typing.Optional[builtins.str] = None,
2782
+ readme_path: typing.Optional[builtins.str] = None,
2783
+ readme_uri: typing.Optional[builtins.str] = None,
2765
2784
  storage_capacity: typing.Optional[jsii.Number] = None,
2766
2785
  storage_type: typing.Optional[builtins.str] = None,
2767
2786
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2787
+ workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
2768
2788
  ) -> None:
2769
2789
  '''
2770
2790
  :param scope: Scope in which this resource is defined.
2771
2791
  :param id: Construct identifier for this resource (unique in its scope).
2772
2792
  :param accelerators:
2793
+ :param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
2773
2794
  :param definition_uri: The URI of a definition for the workflow.
2774
2795
  :param description: The parameter's description.
2775
2796
  :param engine: An engine for the workflow.
2776
2797
  :param main: The path of the main definition file for the workflow.
2777
2798
  :param name: The workflow's name.
2778
2799
  :param parameter_template: The workflow's parameter template.
2800
+ :param parameter_template_path: Path to the primary workflow parameter template JSON file inside the repository.
2801
+ :param readme_markdown: The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.
2802
+ :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.
2803
+ :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.
2779
2804
  :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. The ``storageCapacity`` can be overwritten at run time. The storage capacity is not required for runs with a ``DYNAMIC`` storage type.
2780
2805
  :param storage_type:
2781
2806
  :param tags: Tags for the workflow.
2807
+ :param workflow_bucket_owner_id: Optional workflow bucket owner ID to verify the workflow bucket.
2782
2808
  '''
2783
2809
  if __debug__:
2784
2810
  type_hints = typing.get_type_hints(_typecheckingstub__b2d05cb293836959a925b22dbe1861bc4457d2d510bd3a480ae858ea9f00850d)
@@ -2786,15 +2812,21 @@ class CfnWorkflow(
2786
2812
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
2787
2813
  props = CfnWorkflowProps(
2788
2814
  accelerators=accelerators,
2815
+ definition_repository=definition_repository,
2789
2816
  definition_uri=definition_uri,
2790
2817
  description=description,
2791
2818
  engine=engine,
2792
2819
  main=main,
2793
2820
  name=name,
2794
2821
  parameter_template=parameter_template,
2822
+ parameter_template_path=parameter_template_path,
2823
+ readme_markdown=readme_markdown,
2824
+ readme_path=readme_path,
2825
+ readme_uri=readme_uri,
2795
2826
  storage_capacity=storage_capacity,
2796
2827
  storage_type=storage_type,
2797
2828
  tags=tags,
2829
+ workflow_bucket_owner_id=workflow_bucket_owner_id,
2798
2830
  )
2799
2831
 
2800
2832
  jsii.create(self.__class__, self, [scope, id, props])
@@ -2905,6 +2937,24 @@ class CfnWorkflow(
2905
2937
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2906
2938
  jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
2907
2939
 
2940
+ @builtins.property
2941
+ @jsii.member(jsii_name="definitionRepository")
2942
+ def definition_repository(
2943
+ self,
2944
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.DefinitionRepositoryProperty"]]:
2945
+ '''Contains information about a source code repository that hosts the workflow definition files.'''
2946
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.DefinitionRepositoryProperty"]], jsii.get(self, "definitionRepository"))
2947
+
2948
+ @definition_repository.setter
2949
+ def definition_repository(
2950
+ self,
2951
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.DefinitionRepositoryProperty"]],
2952
+ ) -> None:
2953
+ if __debug__:
2954
+ type_hints = typing.get_type_hints(_typecheckingstub__6b6e4242f1457a50b9f5b17595e8985df9311b3b5ec98f525f390f9387770415)
2955
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2956
+ jsii.set(self, "definitionRepository", value) # pyright: ignore[reportArgumentType]
2957
+
2908
2958
  @builtins.property
2909
2959
  @jsii.member(jsii_name="definitionUri")
2910
2960
  def definition_uri(self) -> typing.Optional[builtins.str]:
@@ -2988,6 +3038,58 @@ class CfnWorkflow(
2988
3038
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2989
3039
  jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
2990
3040
 
3041
+ @builtins.property
3042
+ @jsii.member(jsii_name="parameterTemplatePath")
3043
+ def parameter_template_path(self) -> typing.Optional[builtins.str]:
3044
+ '''Path to the primary workflow parameter template JSON file inside the repository.'''
3045
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "parameterTemplatePath"))
3046
+
3047
+ @parameter_template_path.setter
3048
+ def parameter_template_path(self, value: typing.Optional[builtins.str]) -> None:
3049
+ if __debug__:
3050
+ type_hints = typing.get_type_hints(_typecheckingstub__d41351b64d942ee30b08547c1780197e0df1eca59541df6f21ad720a36cb6716)
3051
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3052
+ jsii.set(self, "parameterTemplatePath", value) # pyright: ignore[reportArgumentType]
3053
+
3054
+ @builtins.property
3055
+ @jsii.member(jsii_name="readmeMarkdown")
3056
+ def readme_markdown(self) -> typing.Optional[builtins.str]:
3057
+ '''The markdown content for the workflow's README file.'''
3058
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmeMarkdown"))
3059
+
3060
+ @readme_markdown.setter
3061
+ def readme_markdown(self, value: typing.Optional[builtins.str]) -> None:
3062
+ if __debug__:
3063
+ type_hints = typing.get_type_hints(_typecheckingstub__ecc1997459356ed8d8ca95f01eab7bd4215d815bf69cff594388b6f7222e0c8a)
3064
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3065
+ jsii.set(self, "readmeMarkdown", value) # pyright: ignore[reportArgumentType]
3066
+
3067
+ @builtins.property
3068
+ @jsii.member(jsii_name="readmePath")
3069
+ def readme_path(self) -> typing.Optional[builtins.str]:
3070
+ '''The path to the workflow README markdown file within the repository.'''
3071
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmePath"))
3072
+
3073
+ @readme_path.setter
3074
+ def readme_path(self, value: typing.Optional[builtins.str]) -> None:
3075
+ if __debug__:
3076
+ type_hints = typing.get_type_hints(_typecheckingstub__16e36c31f82073225a89cc2a0da972aba7908d4ad2dd686757120c7089f99861)
3077
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3078
+ jsii.set(self, "readmePath", value) # pyright: ignore[reportArgumentType]
3079
+
3080
+ @builtins.property
3081
+ @jsii.member(jsii_name="readmeUri")
3082
+ def readme_uri(self) -> typing.Optional[builtins.str]:
3083
+ '''The S3 URI of the README file for the workflow.'''
3084
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "readmeUri"))
3085
+
3086
+ @readme_uri.setter
3087
+ def readme_uri(self, value: typing.Optional[builtins.str]) -> None:
3088
+ if __debug__:
3089
+ type_hints = typing.get_type_hints(_typecheckingstub__28c67e6013e7a108b99f462f48461025e53196240b5182ef0ee813188829ec6a)
3090
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3091
+ jsii.set(self, "readmeUri", value) # pyright: ignore[reportArgumentType]
3092
+
2991
3093
  @builtins.property
2992
3094
  @jsii.member(jsii_name="storageCapacity")
2993
3095
  def storage_capacity(self) -> typing.Optional[jsii.Number]:
@@ -3029,6 +3131,201 @@ class CfnWorkflow(
3029
3131
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3030
3132
  jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
3031
3133
 
3134
+ @builtins.property
3135
+ @jsii.member(jsii_name="workflowBucketOwnerId")
3136
+ def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
3137
+ '''Optional workflow bucket owner ID to verify the workflow bucket.'''
3138
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "workflowBucketOwnerId"))
3139
+
3140
+ @workflow_bucket_owner_id.setter
3141
+ def workflow_bucket_owner_id(self, value: typing.Optional[builtins.str]) -> None:
3142
+ if __debug__:
3143
+ type_hints = typing.get_type_hints(_typecheckingstub__fec2ca5e32cee87eaac65d878c60669f18bb90724ac13ab05f21221ebd80766e)
3144
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3145
+ jsii.set(self, "workflowBucketOwnerId", value) # pyright: ignore[reportArgumentType]
3146
+
3147
+ @jsii.data_type(
3148
+ jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.DefinitionRepositoryProperty",
3149
+ jsii_struct_bases=[],
3150
+ name_mapping={
3151
+ "connection_arn": "connectionArn",
3152
+ "exclude_file_patterns": "excludeFilePatterns",
3153
+ "full_repository_id": "fullRepositoryId",
3154
+ "source_reference": "sourceReference",
3155
+ },
3156
+ )
3157
+ class DefinitionRepositoryProperty:
3158
+ def __init__(
3159
+ self,
3160
+ *,
3161
+ connection_arn: typing.Optional[builtins.str] = None,
3162
+ exclude_file_patterns: typing.Optional[typing.Sequence[builtins.str]] = None,
3163
+ full_repository_id: typing.Optional[builtins.str] = None,
3164
+ source_reference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnWorkflow.SourceReferenceProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
3165
+ ) -> None:
3166
+ '''Contains information about a source code repository that hosts the workflow definition files.
3167
+
3168
+ :param connection_arn: The Amazon Resource Name (ARN) of the connection to the source code repository.
3169
+ :param exclude_file_patterns: A list of file patterns to exclude when retrieving the workflow definition from the repository.
3170
+ :param full_repository_id: The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.
3171
+ :param source_reference: The source reference for the repository, such as a branch name, tag, or commit ID.
3172
+
3173
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html
3174
+ :exampleMetadata: fixture=_generated
3175
+
3176
+ Example::
3177
+
3178
+ # The code below shows an example of how to instantiate this type.
3179
+ # The values are placeholders you should change.
3180
+ from aws_cdk import aws_omics as omics
3181
+
3182
+ definition_repository_property = omics.CfnWorkflow.DefinitionRepositoryProperty(
3183
+ connection_arn="connectionArn",
3184
+ exclude_file_patterns=["excludeFilePatterns"],
3185
+ full_repository_id="fullRepositoryId",
3186
+ source_reference=omics.CfnWorkflow.SourceReferenceProperty(
3187
+ type="type",
3188
+ value="value"
3189
+ )
3190
+ )
3191
+ '''
3192
+ if __debug__:
3193
+ type_hints = typing.get_type_hints(_typecheckingstub__a3c23b09e8f18584c69d282b6816697f2992e22dbf81773246b66875fbb0c0c8)
3194
+ check_type(argname="argument connection_arn", value=connection_arn, expected_type=type_hints["connection_arn"])
3195
+ check_type(argname="argument exclude_file_patterns", value=exclude_file_patterns, expected_type=type_hints["exclude_file_patterns"])
3196
+ check_type(argname="argument full_repository_id", value=full_repository_id, expected_type=type_hints["full_repository_id"])
3197
+ check_type(argname="argument source_reference", value=source_reference, expected_type=type_hints["source_reference"])
3198
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
3199
+ if connection_arn is not None:
3200
+ self._values["connection_arn"] = connection_arn
3201
+ if exclude_file_patterns is not None:
3202
+ self._values["exclude_file_patterns"] = exclude_file_patterns
3203
+ if full_repository_id is not None:
3204
+ self._values["full_repository_id"] = full_repository_id
3205
+ if source_reference is not None:
3206
+ self._values["source_reference"] = source_reference
3207
+
3208
+ @builtins.property
3209
+ def connection_arn(self) -> typing.Optional[builtins.str]:
3210
+ '''The Amazon Resource Name (ARN) of the connection to the source code repository.
3211
+
3212
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html#cfn-omics-workflow-definitionrepository-connectionarn
3213
+ '''
3214
+ result = self._values.get("connection_arn")
3215
+ return typing.cast(typing.Optional[builtins.str], result)
3216
+
3217
+ @builtins.property
3218
+ def exclude_file_patterns(self) -> typing.Optional[typing.List[builtins.str]]:
3219
+ '''A list of file patterns to exclude when retrieving the workflow definition from the repository.
3220
+
3221
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html#cfn-omics-workflow-definitionrepository-excludefilepatterns
3222
+ '''
3223
+ result = self._values.get("exclude_file_patterns")
3224
+ return typing.cast(typing.Optional[typing.List[builtins.str]], result)
3225
+
3226
+ @builtins.property
3227
+ def full_repository_id(self) -> typing.Optional[builtins.str]:
3228
+ '''The full repository identifier, including the repository owner and name.
3229
+
3230
+ For example, 'repository-owner/repository-name'.
3231
+
3232
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html#cfn-omics-workflow-definitionrepository-fullrepositoryid
3233
+ '''
3234
+ result = self._values.get("full_repository_id")
3235
+ return typing.cast(typing.Optional[builtins.str], result)
3236
+
3237
+ @builtins.property
3238
+ def source_reference(
3239
+ self,
3240
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.SourceReferenceProperty"]]:
3241
+ '''The source reference for the repository, such as a branch name, tag, or commit ID.
3242
+
3243
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html#cfn-omics-workflow-definitionrepository-sourcereference
3244
+ '''
3245
+ result = self._values.get("source_reference")
3246
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWorkflow.SourceReferenceProperty"]], result)
3247
+
3248
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3249
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3250
+
3251
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3252
+ return not (rhs == self)
3253
+
3254
+ def __repr__(self) -> str:
3255
+ return "DefinitionRepositoryProperty(%s)" % ", ".join(
3256
+ k + "=" + repr(v) for k, v in self._values.items()
3257
+ )
3258
+
3259
+ @jsii.data_type(
3260
+ jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.SourceReferenceProperty",
3261
+ jsii_struct_bases=[],
3262
+ name_mapping={"type": "type", "value": "value"},
3263
+ )
3264
+ class SourceReferenceProperty:
3265
+ def __init__(
3266
+ self,
3267
+ *,
3268
+ type: typing.Optional[builtins.str] = None,
3269
+ value: typing.Optional[builtins.str] = None,
3270
+ ) -> None:
3271
+ '''Contains information about the source reference in a code repository, such as a branch, tag, or commit.
3272
+
3273
+ :param type: The type of source reference, such as branch, tag, or commit.
3274
+ :param value: The value of the source reference, such as the branch name, tag name, or commit ID.
3275
+
3276
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html
3277
+ :exampleMetadata: fixture=_generated
3278
+
3279
+ Example::
3280
+
3281
+ # The code below shows an example of how to instantiate this type.
3282
+ # The values are placeholders you should change.
3283
+ from aws_cdk import aws_omics as omics
3284
+
3285
+ source_reference_property = omics.CfnWorkflow.SourceReferenceProperty(
3286
+ type="type",
3287
+ value="value"
3288
+ )
3289
+ '''
3290
+ if __debug__:
3291
+ type_hints = typing.get_type_hints(_typecheckingstub__f4e57d9f64919c2d451cd965846e1f5ee2aa3404611459632e4dd2699b4654d1)
3292
+ check_type(argname="argument type", value=type, expected_type=type_hints["type"])
3293
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
3294
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
3295
+ if type is not None:
3296
+ self._values["type"] = type
3297
+ if value is not None:
3298
+ self._values["value"] = value
3299
+
3300
+ @builtins.property
3301
+ def type(self) -> typing.Optional[builtins.str]:
3302
+ '''The type of source reference, such as branch, tag, or commit.
3303
+
3304
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-type
3305
+ '''
3306
+ result = self._values.get("type")
3307
+ return typing.cast(typing.Optional[builtins.str], result)
3308
+
3309
+ @builtins.property
3310
+ def value(self) -> typing.Optional[builtins.str]:
3311
+ '''The value of the source reference, such as the branch name, tag name, or commit ID.
3312
+
3313
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html#cfn-omics-workflow-sourcereference-value
3314
+ '''
3315
+ result = self._values.get("value")
3316
+ return typing.cast(typing.Optional[builtins.str], result)
3317
+
3318
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3319
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3320
+
3321
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3322
+ return not (rhs == self)
3323
+
3324
+ def __repr__(self) -> str:
3325
+ return "SourceReferenceProperty(%s)" % ", ".join(
3326
+ k + "=" + repr(v) for k, v in self._values.items()
3327
+ )
3328
+
3032
3329
  @jsii.data_type(
3033
3330
  jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.WorkflowParameterProperty",
3034
3331
  jsii_struct_bases=[],
@@ -3107,15 +3404,21 @@ class CfnWorkflow(
3107
3404
  jsii_struct_bases=[],
3108
3405
  name_mapping={
3109
3406
  "accelerators": "accelerators",
3407
+ "definition_repository": "definitionRepository",
3110
3408
  "definition_uri": "definitionUri",
3111
3409
  "description": "description",
3112
3410
  "engine": "engine",
3113
3411
  "main": "main",
3114
3412
  "name": "name",
3115
3413
  "parameter_template": "parameterTemplate",
3414
+ "parameter_template_path": "parameterTemplatePath",
3415
+ "readme_markdown": "readmeMarkdown",
3416
+ "readme_path": "readmePath",
3417
+ "readme_uri": "readmeUri",
3116
3418
  "storage_capacity": "storageCapacity",
3117
3419
  "storage_type": "storageType",
3118
3420
  "tags": "tags",
3421
+ "workflow_bucket_owner_id": "workflowBucketOwnerId",
3119
3422
  },
3120
3423
  )
3121
3424
  class CfnWorkflowProps:
@@ -3123,28 +3426,40 @@ class CfnWorkflowProps:
3123
3426
  self,
3124
3427
  *,
3125
3428
  accelerators: typing.Optional[builtins.str] = None,
3429
+ definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
3126
3430
  definition_uri: typing.Optional[builtins.str] = None,
3127
3431
  description: typing.Optional[builtins.str] = None,
3128
3432
  engine: typing.Optional[builtins.str] = None,
3129
3433
  main: typing.Optional[builtins.str] = None,
3130
3434
  name: typing.Optional[builtins.str] = None,
3131
3435
  parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3436
+ parameter_template_path: typing.Optional[builtins.str] = None,
3437
+ readme_markdown: typing.Optional[builtins.str] = None,
3438
+ readme_path: typing.Optional[builtins.str] = None,
3439
+ readme_uri: typing.Optional[builtins.str] = None,
3132
3440
  storage_capacity: typing.Optional[jsii.Number] = None,
3133
3441
  storage_type: typing.Optional[builtins.str] = None,
3134
3442
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3443
+ workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
3135
3444
  ) -> None:
3136
3445
  '''Properties for defining a ``CfnWorkflow``.
3137
3446
 
3138
3447
  :param accelerators:
3448
+ :param definition_repository: Contains information about a source code repository that hosts the workflow definition files.
3139
3449
  :param definition_uri: The URI of a definition for the workflow.
3140
3450
  :param description: The parameter's description.
3141
3451
  :param engine: An engine for the workflow.
3142
3452
  :param main: The path of the main definition file for the workflow.
3143
3453
  :param name: The workflow's name.
3144
3454
  :param parameter_template: The workflow's parameter template.
3455
+ :param parameter_template_path: Path to the primary workflow parameter template JSON file inside the repository.
3456
+ :param readme_markdown: The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.
3457
+ :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.
3458
+ :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.
3145
3459
  :param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. The ``storageCapacity`` can be overwritten at run time. The storage capacity is not required for runs with a ``DYNAMIC`` storage type.
3146
3460
  :param storage_type:
3147
3461
  :param tags: Tags for the workflow.
3462
+ :param workflow_bucket_owner_id: Optional workflow bucket owner ID to verify the workflow bucket.
3148
3463
 
3149
3464
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
3150
3465
  :exampleMetadata: fixture=_generated
@@ -3157,6 +3472,15 @@ class CfnWorkflowProps:
3157
3472
 
3158
3473
  cfn_workflow_props = omics.CfnWorkflowProps(
3159
3474
  accelerators="accelerators",
3475
+ definition_repository=omics.CfnWorkflow.DefinitionRepositoryProperty(
3476
+ connection_arn="connectionArn",
3477
+ exclude_file_patterns=["excludeFilePatterns"],
3478
+ full_repository_id="fullRepositoryId",
3479
+ source_reference=omics.CfnWorkflow.SourceReferenceProperty(
3480
+ type="type",
3481
+ value="value"
3482
+ )
3483
+ ),
3160
3484
  definition_uri="definitionUri",
3161
3485
  description="description",
3162
3486
  engine="engine",
@@ -3168,28 +3492,41 @@ class CfnWorkflowProps:
3168
3492
  optional=False
3169
3493
  )
3170
3494
  },
3495
+ parameter_template_path="parameterTemplatePath",
3496
+ readme_markdown="readmeMarkdown",
3497
+ readme_path="readmePath",
3498
+ readme_uri="readmeUri",
3171
3499
  storage_capacity=123,
3172
3500
  storage_type="storageType",
3173
3501
  tags={
3174
3502
  "tags_key": "tags"
3175
- }
3503
+ },
3504
+ workflow_bucket_owner_id="workflowBucketOwnerId"
3176
3505
  )
3177
3506
  '''
3178
3507
  if __debug__:
3179
3508
  type_hints = typing.get_type_hints(_typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8205f173)
3180
3509
  check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
3510
+ check_type(argname="argument definition_repository", value=definition_repository, expected_type=type_hints["definition_repository"])
3181
3511
  check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
3182
3512
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
3183
3513
  check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
3184
3514
  check_type(argname="argument main", value=main, expected_type=type_hints["main"])
3185
3515
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
3186
3516
  check_type(argname="argument parameter_template", value=parameter_template, expected_type=type_hints["parameter_template"])
3517
+ check_type(argname="argument parameter_template_path", value=parameter_template_path, expected_type=type_hints["parameter_template_path"])
3518
+ check_type(argname="argument readme_markdown", value=readme_markdown, expected_type=type_hints["readme_markdown"])
3519
+ check_type(argname="argument readme_path", value=readme_path, expected_type=type_hints["readme_path"])
3520
+ check_type(argname="argument readme_uri", value=readme_uri, expected_type=type_hints["readme_uri"])
3187
3521
  check_type(argname="argument storage_capacity", value=storage_capacity, expected_type=type_hints["storage_capacity"])
3188
3522
  check_type(argname="argument storage_type", value=storage_type, expected_type=type_hints["storage_type"])
3189
3523
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
3524
+ check_type(argname="argument workflow_bucket_owner_id", value=workflow_bucket_owner_id, expected_type=type_hints["workflow_bucket_owner_id"])
3190
3525
  self._values: typing.Dict[builtins.str, typing.Any] = {}
3191
3526
  if accelerators is not None:
3192
3527
  self._values["accelerators"] = accelerators
3528
+ if definition_repository is not None:
3529
+ self._values["definition_repository"] = definition_repository
3193
3530
  if definition_uri is not None:
3194
3531
  self._values["definition_uri"] = definition_uri
3195
3532
  if description is not None:
@@ -3202,12 +3539,22 @@ class CfnWorkflowProps:
3202
3539
  self._values["name"] = name
3203
3540
  if parameter_template is not None:
3204
3541
  self._values["parameter_template"] = parameter_template
3542
+ if parameter_template_path is not None:
3543
+ self._values["parameter_template_path"] = parameter_template_path
3544
+ if readme_markdown is not None:
3545
+ self._values["readme_markdown"] = readme_markdown
3546
+ if readme_path is not None:
3547
+ self._values["readme_path"] = readme_path
3548
+ if readme_uri is not None:
3549
+ self._values["readme_uri"] = readme_uri
3205
3550
  if storage_capacity is not None:
3206
3551
  self._values["storage_capacity"] = storage_capacity
3207
3552
  if storage_type is not None:
3208
3553
  self._values["storage_type"] = storage_type
3209
3554
  if tags is not None:
3210
3555
  self._values["tags"] = tags
3556
+ if workflow_bucket_owner_id is not None:
3557
+ self._values["workflow_bucket_owner_id"] = workflow_bucket_owner_id
3211
3558
 
3212
3559
  @builtins.property
3213
3560
  def accelerators(self) -> typing.Optional[builtins.str]:
@@ -3217,6 +3564,17 @@ class CfnWorkflowProps:
3217
3564
  result = self._values.get("accelerators")
3218
3565
  return typing.cast(typing.Optional[builtins.str], result)
3219
3566
 
3567
+ @builtins.property
3568
+ def definition_repository(
3569
+ self,
3570
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflow.DefinitionRepositoryProperty]]:
3571
+ '''Contains information about a source code repository that hosts the workflow definition files.
3572
+
3573
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-definitionrepository
3574
+ '''
3575
+ result = self._values.get("definition_repository")
3576
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflow.DefinitionRepositoryProperty]], result)
3577
+
3220
3578
  @builtins.property
3221
3579
  def definition_uri(self) -> typing.Optional[builtins.str]:
3222
3580
  '''The URI of a definition for the workflow.
@@ -3273,6 +3631,48 @@ class CfnWorkflowProps:
3273
3631
  result = self._values.get("parameter_template")
3274
3632
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflow.WorkflowParameterProperty]]]], result)
3275
3633
 
3634
+ @builtins.property
3635
+ def parameter_template_path(self) -> typing.Optional[builtins.str]:
3636
+ '''Path to the primary workflow parameter template JSON file inside the repository.
3637
+
3638
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-parametertemplatepath
3639
+ '''
3640
+ result = self._values.get("parameter_template_path")
3641
+ return typing.cast(typing.Optional[builtins.str], result)
3642
+
3643
+ @builtins.property
3644
+ def readme_markdown(self) -> typing.Optional[builtins.str]:
3645
+ '''The markdown content for the workflow's README file.
3646
+
3647
+ This provides documentation and usage information for users of the workflow.
3648
+
3649
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-readmemarkdown
3650
+ '''
3651
+ result = self._values.get("readme_markdown")
3652
+ return typing.cast(typing.Optional[builtins.str], result)
3653
+
3654
+ @builtins.property
3655
+ def readme_path(self) -> typing.Optional[builtins.str]:
3656
+ '''The path to the workflow README markdown file within the repository.
3657
+
3658
+ 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.
3659
+
3660
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-readmepath
3661
+ '''
3662
+ result = self._values.get("readme_path")
3663
+ return typing.cast(typing.Optional[builtins.str], result)
3664
+
3665
+ @builtins.property
3666
+ def readme_uri(self) -> typing.Optional[builtins.str]:
3667
+ '''The S3 URI of the README file for the workflow.
3668
+
3669
+ 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.
3670
+
3671
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-readmeuri
3672
+ '''
3673
+ result = self._values.get("readme_uri")
3674
+ return typing.cast(typing.Optional[builtins.str], result)
3675
+
3276
3676
  @builtins.property
3277
3677
  def storage_capacity(self) -> typing.Optional[jsii.Number]:
3278
3678
  '''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
@@ -3301,6 +3701,15 @@ class CfnWorkflowProps:
3301
3701
  result = self._values.get("tags")
3302
3702
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
3303
3703
 
3704
+ @builtins.property
3705
+ def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
3706
+ '''Optional workflow bucket owner ID to verify the workflow bucket.
3707
+
3708
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-workflowbucketownerid
3709
+ '''
3710
+ result = self._values.get("workflow_bucket_owner_id")
3711
+ return typing.cast(typing.Optional[builtins.str], result)
3712
+
3304
3713
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
3305
3714
  return isinstance(rhs, self.__class__) and rhs._values == self._values
3306
3715
 
@@ -4436,15 +4845,21 @@ def _typecheckingstub__b2d05cb293836959a925b22dbe1861bc4457d2d510bd3a480ae858ea9
4436
4845
  id: builtins.str,
4437
4846
  *,
4438
4847
  accelerators: typing.Optional[builtins.str] = None,
4848
+ definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4439
4849
  definition_uri: typing.Optional[builtins.str] = None,
4440
4850
  description: typing.Optional[builtins.str] = None,
4441
4851
  engine: typing.Optional[builtins.str] = None,
4442
4852
  main: typing.Optional[builtins.str] = None,
4443
4853
  name: typing.Optional[builtins.str] = None,
4444
4854
  parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
4855
+ parameter_template_path: typing.Optional[builtins.str] = None,
4856
+ readme_markdown: typing.Optional[builtins.str] = None,
4857
+ readme_path: typing.Optional[builtins.str] = None,
4858
+ readme_uri: typing.Optional[builtins.str] = None,
4445
4859
  storage_capacity: typing.Optional[jsii.Number] = None,
4446
4860
  storage_type: typing.Optional[builtins.str] = None,
4447
4861
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
4862
+ workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
4448
4863
  ) -> None:
4449
4864
  """Type checking stubs"""
4450
4865
  pass
@@ -4467,6 +4882,12 @@ def _typecheckingstub__286f71b00d1993ebc792c6e260606dac95cf17ec599b45b4cb2111b4c
4467
4882
  """Type checking stubs"""
4468
4883
  pass
4469
4884
 
4885
+ def _typecheckingstub__6b6e4242f1457a50b9f5b17595e8985df9311b3b5ec98f525f390f9387770415(
4886
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnWorkflow.DefinitionRepositoryProperty]],
4887
+ ) -> None:
4888
+ """Type checking stubs"""
4889
+ pass
4890
+
4470
4891
  def _typecheckingstub__cc102140c3b77bda25eda4edac3ddf245628b20791c9053f2a901ded02c9b780(
4471
4892
  value: typing.Optional[builtins.str],
4472
4893
  ) -> None:
@@ -4503,6 +4924,30 @@ def _typecheckingstub__cd71f853b8475a5b472d76bce0cd20afc1269357412bdaa83e29ea355
4503
4924
  """Type checking stubs"""
4504
4925
  pass
4505
4926
 
4927
+ def _typecheckingstub__d41351b64d942ee30b08547c1780197e0df1eca59541df6f21ad720a36cb6716(
4928
+ value: typing.Optional[builtins.str],
4929
+ ) -> None:
4930
+ """Type checking stubs"""
4931
+ pass
4932
+
4933
+ def _typecheckingstub__ecc1997459356ed8d8ca95f01eab7bd4215d815bf69cff594388b6f7222e0c8a(
4934
+ value: typing.Optional[builtins.str],
4935
+ ) -> None:
4936
+ """Type checking stubs"""
4937
+ pass
4938
+
4939
+ def _typecheckingstub__16e36c31f82073225a89cc2a0da972aba7908d4ad2dd686757120c7089f99861(
4940
+ value: typing.Optional[builtins.str],
4941
+ ) -> None:
4942
+ """Type checking stubs"""
4943
+ pass
4944
+
4945
+ def _typecheckingstub__28c67e6013e7a108b99f462f48461025e53196240b5182ef0ee813188829ec6a(
4946
+ value: typing.Optional[builtins.str],
4947
+ ) -> None:
4948
+ """Type checking stubs"""
4949
+ pass
4950
+
4506
4951
  def _typecheckingstub__37c3d929054386cb4ebdbc60c2c3558d7cd34bed65861db5661f96d5d75ce7df(
4507
4952
  value: typing.Optional[jsii.Number],
4508
4953
  ) -> None:
@@ -4521,6 +4966,30 @@ def _typecheckingstub__651d8f1caf8b2c987665acfeae50e19a5626bb723832dae7067c423aa
4521
4966
  """Type checking stubs"""
4522
4967
  pass
4523
4968
 
4969
+ def _typecheckingstub__fec2ca5e32cee87eaac65d878c60669f18bb90724ac13ab05f21221ebd80766e(
4970
+ value: typing.Optional[builtins.str],
4971
+ ) -> None:
4972
+ """Type checking stubs"""
4973
+ pass
4974
+
4975
+ def _typecheckingstub__a3c23b09e8f18584c69d282b6816697f2992e22dbf81773246b66875fbb0c0c8(
4976
+ *,
4977
+ connection_arn: typing.Optional[builtins.str] = None,
4978
+ exclude_file_patterns: typing.Optional[typing.Sequence[builtins.str]] = None,
4979
+ full_repository_id: typing.Optional[builtins.str] = None,
4980
+ source_reference: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.SourceReferenceProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4981
+ ) -> None:
4982
+ """Type checking stubs"""
4983
+ pass
4984
+
4985
+ def _typecheckingstub__f4e57d9f64919c2d451cd965846e1f5ee2aa3404611459632e4dd2699b4654d1(
4986
+ *,
4987
+ type: typing.Optional[builtins.str] = None,
4988
+ value: typing.Optional[builtins.str] = None,
4989
+ ) -> None:
4990
+ """Type checking stubs"""
4991
+ pass
4992
+
4524
4993
  def _typecheckingstub__beb0e924d2102ff644fd2da920cdd60f013b66e8285db8ffc0ce774a694580a5(
4525
4994
  *,
4526
4995
  description: typing.Optional[builtins.str] = None,
@@ -4532,15 +5001,21 @@ def _typecheckingstub__beb0e924d2102ff644fd2da920cdd60f013b66e8285db8ffc0ce774a6
4532
5001
  def _typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8205f173(
4533
5002
  *,
4534
5003
  accelerators: typing.Optional[builtins.str] = None,
5004
+ definition_repository: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.DefinitionRepositoryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4535
5005
  definition_uri: typing.Optional[builtins.str] = None,
4536
5006
  description: typing.Optional[builtins.str] = None,
4537
5007
  engine: typing.Optional[builtins.str] = None,
4538
5008
  main: typing.Optional[builtins.str] = None,
4539
5009
  name: typing.Optional[builtins.str] = None,
4540
5010
  parameter_template: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, typing.Union[CfnWorkflow.WorkflowParameterProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
5011
+ parameter_template_path: typing.Optional[builtins.str] = None,
5012
+ readme_markdown: typing.Optional[builtins.str] = None,
5013
+ readme_path: typing.Optional[builtins.str] = None,
5014
+ readme_uri: typing.Optional[builtins.str] = None,
4541
5015
  storage_capacity: typing.Optional[jsii.Number] = None,
4542
5016
  storage_type: typing.Optional[builtins.str] = None,
4543
5017
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
5018
+ workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
4544
5019
  ) -> None:
4545
5020
  """Type checking stubs"""
4546
5021
  pass