aws-cdk-lib 2.196.1__py3-none-any.whl → 2.198.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 +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.196.1.jsii.tgz → aws-cdk-lib@2.198.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
- aws_cdk/aws_appsync/__init__.py +31 -21
- aws_cdk/aws_autoscaling/__init__.py +2 -1
- aws_cdk/aws_bedrock/__init__.py +32 -26
- aws_cdk/aws_cloudfront/__init__.py +9 -3
- aws_cdk/aws_cloudwatch/__init__.py +756 -29
- aws_cdk/aws_codebuild/__init__.py +19 -0
- aws_cdk/aws_codepipeline/__init__.py +44 -7
- aws_cdk/aws_datasync/__init__.py +850 -833
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +162 -4
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +291 -7
- aws_cdk/aws_ecs/__init__.py +38 -19
- aws_cdk/aws_ecs_patterns/__init__.py +15 -9
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
- aws_cdk/aws_gamelift/__init__.py +103 -17
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_lex/__init__.py +1245 -172
- aws_cdk/aws_mediapackagev2/__init__.py +11 -10
- aws_cdk/aws_omics/__init__.py +939 -100
- aws_cdk/aws_pcs/__init__.py +126 -0
- aws_cdk/aws_rds/__init__.py +42 -15
- aws_cdk/aws_rolesanywhere/__init__.py +14 -13
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_sagemaker/__init__.py +38 -12
- aws_cdk/aws_ses/__init__.py +192 -4
- aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
- aws_cdk/aws_synthetics/__init__.py +137 -3
- aws_cdk/aws_wafv2/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +41 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +43 -43
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -63,6 +63,7 @@ from .. import (
|
|
|
63
63
|
IInspectable as _IInspectable_c2943556,
|
|
64
64
|
IResolvable as _IResolvable_da3f097b,
|
|
65
65
|
ITaggable as _ITaggable_36806126,
|
|
66
|
+
ITaggableV2 as _ITaggableV2_4e6798f8,
|
|
66
67
|
TagManager as _TagManager_0a598cb3,
|
|
67
68
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
68
69
|
)
|
|
@@ -2741,6 +2742,7 @@ class CfnWorkflow(
|
|
|
2741
2742
|
)
|
|
2742
2743
|
},
|
|
2743
2744
|
storage_capacity=123,
|
|
2745
|
+
storage_type="storageType",
|
|
2744
2746
|
tags={
|
|
2745
2747
|
"tags_key": "tags"
|
|
2746
2748
|
}
|
|
@@ -2760,6 +2762,7 @@ class CfnWorkflow(
|
|
|
2760
2762
|
name: typing.Optional[builtins.str] = None,
|
|
2761
2763
|
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,
|
|
2762
2764
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
2765
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
2763
2766
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
2764
2767
|
) -> None:
|
|
2765
2768
|
'''
|
|
@@ -2773,6 +2776,7 @@ class CfnWorkflow(
|
|
|
2773
2776
|
:param name: The workflow's name.
|
|
2774
2777
|
:param parameter_template: The workflow's parameter template.
|
|
2775
2778
|
:param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
2779
|
+
:param storage_type:
|
|
2776
2780
|
:param tags: Tags for the workflow.
|
|
2777
2781
|
'''
|
|
2778
2782
|
if __debug__:
|
|
@@ -2788,6 +2792,7 @@ class CfnWorkflow(
|
|
|
2788
2792
|
name=name,
|
|
2789
2793
|
parameter_template=parameter_template,
|
|
2790
2794
|
storage_capacity=storage_capacity,
|
|
2795
|
+
storage_type=storage_type,
|
|
2791
2796
|
tags=tags,
|
|
2792
2797
|
)
|
|
2793
2798
|
|
|
@@ -2868,6 +2873,14 @@ class CfnWorkflow(
|
|
|
2868
2873
|
'''
|
|
2869
2874
|
return typing.cast(builtins.str, jsii.get(self, "attrType"))
|
|
2870
2875
|
|
|
2876
|
+
@builtins.property
|
|
2877
|
+
@jsii.member(jsii_name="attrUuid")
|
|
2878
|
+
def attr_uuid(self) -> builtins.str:
|
|
2879
|
+
'''
|
|
2880
|
+
:cloudformationAttribute: Uuid
|
|
2881
|
+
'''
|
|
2882
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUuid"))
|
|
2883
|
+
|
|
2871
2884
|
@builtins.property
|
|
2872
2885
|
@jsii.member(jsii_name="cfnProperties")
|
|
2873
2886
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -2887,124 +2900,766 @@ class CfnWorkflow(
|
|
|
2887
2900
|
@accelerators.setter
|
|
2888
2901
|
def accelerators(self, value: typing.Optional[builtins.str]) -> None:
|
|
2889
2902
|
if __debug__:
|
|
2890
|
-
type_hints = typing.get_type_hints(_typecheckingstub__286f71b00d1993ebc792c6e260606dac95cf17ec599b45b4cb2111b4ca57a0fe)
|
|
2903
|
+
type_hints = typing.get_type_hints(_typecheckingstub__286f71b00d1993ebc792c6e260606dac95cf17ec599b45b4cb2111b4ca57a0fe)
|
|
2904
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2905
|
+
jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
|
|
2906
|
+
|
|
2907
|
+
@builtins.property
|
|
2908
|
+
@jsii.member(jsii_name="definitionUri")
|
|
2909
|
+
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
2910
|
+
'''The URI of a definition for the workflow.'''
|
|
2911
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "definitionUri"))
|
|
2912
|
+
|
|
2913
|
+
@definition_uri.setter
|
|
2914
|
+
def definition_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
2915
|
+
if __debug__:
|
|
2916
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cc102140c3b77bda25eda4edac3ddf245628b20791c9053f2a901ded02c9b780)
|
|
2917
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2918
|
+
jsii.set(self, "definitionUri", value) # pyright: ignore[reportArgumentType]
|
|
2919
|
+
|
|
2920
|
+
@builtins.property
|
|
2921
|
+
@jsii.member(jsii_name="description")
|
|
2922
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
2923
|
+
'''The parameter's description.'''
|
|
2924
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
2925
|
+
|
|
2926
|
+
@description.setter
|
|
2927
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
2928
|
+
if __debug__:
|
|
2929
|
+
type_hints = typing.get_type_hints(_typecheckingstub__73c565083430765eb26563b0a57061f931b2ec1240d0b6c03b6bdad1003055c2)
|
|
2930
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2931
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
2932
|
+
|
|
2933
|
+
@builtins.property
|
|
2934
|
+
@jsii.member(jsii_name="engine")
|
|
2935
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
2936
|
+
'''An engine for the workflow.'''
|
|
2937
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
2938
|
+
|
|
2939
|
+
@engine.setter
|
|
2940
|
+
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
2941
|
+
if __debug__:
|
|
2942
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2edee5dfbe37830cd0e2e70344c7e33e9cf08c5c243438272da4a5634eae529f)
|
|
2943
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2944
|
+
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
2945
|
+
|
|
2946
|
+
@builtins.property
|
|
2947
|
+
@jsii.member(jsii_name="main")
|
|
2948
|
+
def main(self) -> typing.Optional[builtins.str]:
|
|
2949
|
+
'''The path of the main definition file for the workflow.'''
|
|
2950
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "main"))
|
|
2951
|
+
|
|
2952
|
+
@main.setter
|
|
2953
|
+
def main(self, value: typing.Optional[builtins.str]) -> None:
|
|
2954
|
+
if __debug__:
|
|
2955
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f791067dcd2f7a992bf37cf0c6c81e381b2e0344e60cf85051d19bb08c69bf13)
|
|
2956
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2957
|
+
jsii.set(self, "main", value) # pyright: ignore[reportArgumentType]
|
|
2958
|
+
|
|
2959
|
+
@builtins.property
|
|
2960
|
+
@jsii.member(jsii_name="name")
|
|
2961
|
+
def name(self) -> typing.Optional[builtins.str]:
|
|
2962
|
+
'''The workflow's name.'''
|
|
2963
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
2964
|
+
|
|
2965
|
+
@name.setter
|
|
2966
|
+
def name(self, value: typing.Optional[builtins.str]) -> None:
|
|
2967
|
+
if __debug__:
|
|
2968
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b6845f053d191fb8caa10b651afe2128f50703f821981813813ed0bb9862dad7)
|
|
2969
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2970
|
+
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2971
|
+
|
|
2972
|
+
@builtins.property
|
|
2973
|
+
@jsii.member(jsii_name="parameterTemplate")
|
|
2974
|
+
def parameter_template(
|
|
2975
|
+
self,
|
|
2976
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflow.WorkflowParameterProperty"]]]]:
|
|
2977
|
+
'''The workflow's parameter template.'''
|
|
2978
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflow.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
2979
|
+
|
|
2980
|
+
@parameter_template.setter
|
|
2981
|
+
def parameter_template(
|
|
2982
|
+
self,
|
|
2983
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflow.WorkflowParameterProperty"]]]],
|
|
2984
|
+
) -> None:
|
|
2985
|
+
if __debug__:
|
|
2986
|
+
type_hints = typing.get_type_hints(_typecheckingstub__cd71f853b8475a5b472d76bce0cd20afc1269357412bdaa83e29ea355af8f64b)
|
|
2987
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2988
|
+
jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
|
|
2989
|
+
|
|
2990
|
+
@builtins.property
|
|
2991
|
+
@jsii.member(jsii_name="storageCapacity")
|
|
2992
|
+
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2993
|
+
'''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.'''
|
|
2994
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2995
|
+
|
|
2996
|
+
@storage_capacity.setter
|
|
2997
|
+
def storage_capacity(self, value: typing.Optional[jsii.Number]) -> None:
|
|
2998
|
+
if __debug__:
|
|
2999
|
+
type_hints = typing.get_type_hints(_typecheckingstub__37c3d929054386cb4ebdbc60c2c3558d7cd34bed65861db5661f96d5d75ce7df)
|
|
3000
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3001
|
+
jsii.set(self, "storageCapacity", value) # pyright: ignore[reportArgumentType]
|
|
3002
|
+
|
|
3003
|
+
@builtins.property
|
|
3004
|
+
@jsii.member(jsii_name="storageType")
|
|
3005
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3006
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "storageType"))
|
|
3007
|
+
|
|
3008
|
+
@storage_type.setter
|
|
3009
|
+
def storage_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
3010
|
+
if __debug__:
|
|
3011
|
+
type_hints = typing.get_type_hints(_typecheckingstub__82b78c9fdaf5e3e15a75209f5d891cf1513f47077977c45c2d020ffe13e990ac)
|
|
3012
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3013
|
+
jsii.set(self, "storageType", value) # pyright: ignore[reportArgumentType]
|
|
3014
|
+
|
|
3015
|
+
@builtins.property
|
|
3016
|
+
@jsii.member(jsii_name="tagsRaw")
|
|
3017
|
+
def tags_raw(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3018
|
+
'''Tags for the workflow.'''
|
|
3019
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tagsRaw"))
|
|
3020
|
+
|
|
3021
|
+
@tags_raw.setter
|
|
3022
|
+
def tags_raw(
|
|
3023
|
+
self,
|
|
3024
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3025
|
+
) -> None:
|
|
3026
|
+
if __debug__:
|
|
3027
|
+
type_hints = typing.get_type_hints(_typecheckingstub__651d8f1caf8b2c987665acfeae50e19a5626bb723832dae7067c423aab3ac2b5)
|
|
3028
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3029
|
+
jsii.set(self, "tagsRaw", value) # pyright: ignore[reportArgumentType]
|
|
3030
|
+
|
|
3031
|
+
@jsii.data_type(
|
|
3032
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflow.WorkflowParameterProperty",
|
|
3033
|
+
jsii_struct_bases=[],
|
|
3034
|
+
name_mapping={"description": "description", "optional": "optional"},
|
|
3035
|
+
)
|
|
3036
|
+
class WorkflowParameterProperty:
|
|
3037
|
+
def __init__(
|
|
3038
|
+
self,
|
|
3039
|
+
*,
|
|
3040
|
+
description: typing.Optional[builtins.str] = None,
|
|
3041
|
+
optional: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3042
|
+
) -> None:
|
|
3043
|
+
'''A workflow parameter.
|
|
3044
|
+
|
|
3045
|
+
:param description: The parameter's description.
|
|
3046
|
+
:param optional: Whether the parameter is optional.
|
|
3047
|
+
|
|
3048
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html
|
|
3049
|
+
:exampleMetadata: fixture=_generated
|
|
3050
|
+
|
|
3051
|
+
Example::
|
|
3052
|
+
|
|
3053
|
+
# The code below shows an example of how to instantiate this type.
|
|
3054
|
+
# The values are placeholders you should change.
|
|
3055
|
+
from aws_cdk import aws_omics as omics
|
|
3056
|
+
|
|
3057
|
+
workflow_parameter_property = omics.CfnWorkflow.WorkflowParameterProperty(
|
|
3058
|
+
description="description",
|
|
3059
|
+
optional=False
|
|
3060
|
+
)
|
|
3061
|
+
'''
|
|
3062
|
+
if __debug__:
|
|
3063
|
+
type_hints = typing.get_type_hints(_typecheckingstub__beb0e924d2102ff644fd2da920cdd60f013b66e8285db8ffc0ce774a694580a5)
|
|
3064
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3065
|
+
check_type(argname="argument optional", value=optional, expected_type=type_hints["optional"])
|
|
3066
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3067
|
+
if description is not None:
|
|
3068
|
+
self._values["description"] = description
|
|
3069
|
+
if optional is not None:
|
|
3070
|
+
self._values["optional"] = optional
|
|
3071
|
+
|
|
3072
|
+
@builtins.property
|
|
3073
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3074
|
+
'''The parameter's description.
|
|
3075
|
+
|
|
3076
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-description
|
|
3077
|
+
'''
|
|
3078
|
+
result = self._values.get("description")
|
|
3079
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3080
|
+
|
|
3081
|
+
@builtins.property
|
|
3082
|
+
def optional(
|
|
3083
|
+
self,
|
|
3084
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3085
|
+
'''Whether the parameter is optional.
|
|
3086
|
+
|
|
3087
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-optional
|
|
3088
|
+
'''
|
|
3089
|
+
result = self._values.get("optional")
|
|
3090
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
3091
|
+
|
|
3092
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3093
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3094
|
+
|
|
3095
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3096
|
+
return not (rhs == self)
|
|
3097
|
+
|
|
3098
|
+
def __repr__(self) -> str:
|
|
3099
|
+
return "WorkflowParameterProperty(%s)" % ", ".join(
|
|
3100
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3101
|
+
)
|
|
3102
|
+
|
|
3103
|
+
|
|
3104
|
+
@jsii.data_type(
|
|
3105
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowProps",
|
|
3106
|
+
jsii_struct_bases=[],
|
|
3107
|
+
name_mapping={
|
|
3108
|
+
"accelerators": "accelerators",
|
|
3109
|
+
"definition_uri": "definitionUri",
|
|
3110
|
+
"description": "description",
|
|
3111
|
+
"engine": "engine",
|
|
3112
|
+
"main": "main",
|
|
3113
|
+
"name": "name",
|
|
3114
|
+
"parameter_template": "parameterTemplate",
|
|
3115
|
+
"storage_capacity": "storageCapacity",
|
|
3116
|
+
"storage_type": "storageType",
|
|
3117
|
+
"tags": "tags",
|
|
3118
|
+
},
|
|
3119
|
+
)
|
|
3120
|
+
class CfnWorkflowProps:
|
|
3121
|
+
def __init__(
|
|
3122
|
+
self,
|
|
3123
|
+
*,
|
|
3124
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
3125
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
3126
|
+
description: typing.Optional[builtins.str] = None,
|
|
3127
|
+
engine: typing.Optional[builtins.str] = None,
|
|
3128
|
+
main: typing.Optional[builtins.str] = None,
|
|
3129
|
+
name: typing.Optional[builtins.str] = None,
|
|
3130
|
+
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,
|
|
3131
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
3132
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3133
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3134
|
+
) -> None:
|
|
3135
|
+
'''Properties for defining a ``CfnWorkflow``.
|
|
3136
|
+
|
|
3137
|
+
:param accelerators:
|
|
3138
|
+
:param definition_uri: The URI of a definition for the workflow.
|
|
3139
|
+
:param description: The parameter's description.
|
|
3140
|
+
:param engine: An engine for the workflow.
|
|
3141
|
+
:param main: The path of the main definition file for the workflow.
|
|
3142
|
+
:param name: The workflow's name.
|
|
3143
|
+
:param parameter_template: The workflow's parameter template.
|
|
3144
|
+
:param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
3145
|
+
:param storage_type:
|
|
3146
|
+
:param tags: Tags for the workflow.
|
|
3147
|
+
|
|
3148
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
3149
|
+
:exampleMetadata: fixture=_generated
|
|
3150
|
+
|
|
3151
|
+
Example::
|
|
3152
|
+
|
|
3153
|
+
# The code below shows an example of how to instantiate this type.
|
|
3154
|
+
# The values are placeholders you should change.
|
|
3155
|
+
from aws_cdk import aws_omics as omics
|
|
3156
|
+
|
|
3157
|
+
cfn_workflow_props = omics.CfnWorkflowProps(
|
|
3158
|
+
accelerators="accelerators",
|
|
3159
|
+
definition_uri="definitionUri",
|
|
3160
|
+
description="description",
|
|
3161
|
+
engine="engine",
|
|
3162
|
+
main="main",
|
|
3163
|
+
name="name",
|
|
3164
|
+
parameter_template={
|
|
3165
|
+
"parameter_template_key": omics.CfnWorkflow.WorkflowParameterProperty(
|
|
3166
|
+
description="description",
|
|
3167
|
+
optional=False
|
|
3168
|
+
)
|
|
3169
|
+
},
|
|
3170
|
+
storage_capacity=123,
|
|
3171
|
+
storage_type="storageType",
|
|
3172
|
+
tags={
|
|
3173
|
+
"tags_key": "tags"
|
|
3174
|
+
}
|
|
3175
|
+
)
|
|
3176
|
+
'''
|
|
3177
|
+
if __debug__:
|
|
3178
|
+
type_hints = typing.get_type_hints(_typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8205f173)
|
|
3179
|
+
check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
|
|
3180
|
+
check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
|
|
3181
|
+
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3182
|
+
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
3183
|
+
check_type(argname="argument main", value=main, expected_type=type_hints["main"])
|
|
3184
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3185
|
+
check_type(argname="argument parameter_template", value=parameter_template, expected_type=type_hints["parameter_template"])
|
|
3186
|
+
check_type(argname="argument storage_capacity", value=storage_capacity, expected_type=type_hints["storage_capacity"])
|
|
3187
|
+
check_type(argname="argument storage_type", value=storage_type, expected_type=type_hints["storage_type"])
|
|
3188
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3189
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3190
|
+
if accelerators is not None:
|
|
3191
|
+
self._values["accelerators"] = accelerators
|
|
3192
|
+
if definition_uri is not None:
|
|
3193
|
+
self._values["definition_uri"] = definition_uri
|
|
3194
|
+
if description is not None:
|
|
3195
|
+
self._values["description"] = description
|
|
3196
|
+
if engine is not None:
|
|
3197
|
+
self._values["engine"] = engine
|
|
3198
|
+
if main is not None:
|
|
3199
|
+
self._values["main"] = main
|
|
3200
|
+
if name is not None:
|
|
3201
|
+
self._values["name"] = name
|
|
3202
|
+
if parameter_template is not None:
|
|
3203
|
+
self._values["parameter_template"] = parameter_template
|
|
3204
|
+
if storage_capacity is not None:
|
|
3205
|
+
self._values["storage_capacity"] = storage_capacity
|
|
3206
|
+
if storage_type is not None:
|
|
3207
|
+
self._values["storage_type"] = storage_type
|
|
3208
|
+
if tags is not None:
|
|
3209
|
+
self._values["tags"] = tags
|
|
3210
|
+
|
|
3211
|
+
@builtins.property
|
|
3212
|
+
def accelerators(self) -> typing.Optional[builtins.str]:
|
|
3213
|
+
'''
|
|
3214
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-accelerators
|
|
3215
|
+
'''
|
|
3216
|
+
result = self._values.get("accelerators")
|
|
3217
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3218
|
+
|
|
3219
|
+
@builtins.property
|
|
3220
|
+
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
3221
|
+
'''The URI of a definition for the workflow.
|
|
3222
|
+
|
|
3223
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-definitionuri
|
|
3224
|
+
'''
|
|
3225
|
+
result = self._values.get("definition_uri")
|
|
3226
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3227
|
+
|
|
3228
|
+
@builtins.property
|
|
3229
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3230
|
+
'''The parameter's description.
|
|
3231
|
+
|
|
3232
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-description
|
|
3233
|
+
'''
|
|
3234
|
+
result = self._values.get("description")
|
|
3235
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3236
|
+
|
|
3237
|
+
@builtins.property
|
|
3238
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
3239
|
+
'''An engine for the workflow.
|
|
3240
|
+
|
|
3241
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-engine
|
|
3242
|
+
'''
|
|
3243
|
+
result = self._values.get("engine")
|
|
3244
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3245
|
+
|
|
3246
|
+
@builtins.property
|
|
3247
|
+
def main(self) -> typing.Optional[builtins.str]:
|
|
3248
|
+
'''The path of the main definition file for the workflow.
|
|
3249
|
+
|
|
3250
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-main
|
|
3251
|
+
'''
|
|
3252
|
+
result = self._values.get("main")
|
|
3253
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3254
|
+
|
|
3255
|
+
@builtins.property
|
|
3256
|
+
def name(self) -> typing.Optional[builtins.str]:
|
|
3257
|
+
'''The workflow's name.
|
|
3258
|
+
|
|
3259
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-name
|
|
3260
|
+
'''
|
|
3261
|
+
result = self._values.get("name")
|
|
3262
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3263
|
+
|
|
3264
|
+
@builtins.property
|
|
3265
|
+
def parameter_template(
|
|
3266
|
+
self,
|
|
3267
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflow.WorkflowParameterProperty]]]]:
|
|
3268
|
+
'''The workflow's parameter template.
|
|
3269
|
+
|
|
3270
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-parametertemplate
|
|
3271
|
+
'''
|
|
3272
|
+
result = self._values.get("parameter_template")
|
|
3273
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflow.WorkflowParameterProperty]]]], result)
|
|
3274
|
+
|
|
3275
|
+
@builtins.property
|
|
3276
|
+
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
3277
|
+
'''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
3278
|
+
|
|
3279
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
|
|
3280
|
+
'''
|
|
3281
|
+
result = self._values.get("storage_capacity")
|
|
3282
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3283
|
+
|
|
3284
|
+
@builtins.property
|
|
3285
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3286
|
+
'''
|
|
3287
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagetype
|
|
3288
|
+
'''
|
|
3289
|
+
result = self._values.get("storage_type")
|
|
3290
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3291
|
+
|
|
3292
|
+
@builtins.property
|
|
3293
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3294
|
+
'''Tags for the workflow.
|
|
3295
|
+
|
|
3296
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-tags
|
|
3297
|
+
'''
|
|
3298
|
+
result = self._values.get("tags")
|
|
3299
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
3300
|
+
|
|
3301
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3302
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3303
|
+
|
|
3304
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3305
|
+
return not (rhs == self)
|
|
3306
|
+
|
|
3307
|
+
def __repr__(self) -> str:
|
|
3308
|
+
return "CfnWorkflowProps(%s)" % ", ".join(
|
|
3309
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3310
|
+
)
|
|
3311
|
+
|
|
3312
|
+
|
|
3313
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
3314
|
+
class CfnWorkflowVersion(
|
|
3315
|
+
_CfnResource_9df397a6,
|
|
3316
|
+
metaclass=jsii.JSIIMeta,
|
|
3317
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion",
|
|
3318
|
+
):
|
|
3319
|
+
'''Creates a new workflow version for the workflow that you specify with the ``workflowId`` parameter.
|
|
3320
|
+
|
|
3321
|
+
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.
|
|
3322
|
+
|
|
3323
|
+
Provide a version name that is unique for this workflow. You cannot change the name after HealthOmics creates the version.
|
|
3324
|
+
.. epigraph::
|
|
3325
|
+
|
|
3326
|
+
Don’t include any personally identifiable information (PII) in the version name. Version names appear in the workflow version ARN.
|
|
3327
|
+
|
|
3328
|
+
For more information, see `Workflow versioning in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html>`_ in the AWS HealthOmics User Guide.
|
|
3329
|
+
|
|
3330
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html
|
|
3331
|
+
:cloudformationResource: AWS::Omics::WorkflowVersion
|
|
3332
|
+
:exampleMetadata: fixture=_generated
|
|
3333
|
+
|
|
3334
|
+
Example::
|
|
3335
|
+
|
|
3336
|
+
# The code below shows an example of how to instantiate this type.
|
|
3337
|
+
# The values are placeholders you should change.
|
|
3338
|
+
from aws_cdk import aws_omics as omics
|
|
3339
|
+
|
|
3340
|
+
cfn_workflow_version = omics.CfnWorkflowVersion(self, "MyCfnWorkflowVersion",
|
|
3341
|
+
version_name="versionName",
|
|
3342
|
+
workflow_id="workflowId",
|
|
3343
|
+
|
|
3344
|
+
# the properties below are optional
|
|
3345
|
+
accelerators="accelerators",
|
|
3346
|
+
definition_uri="definitionUri",
|
|
3347
|
+
description="description",
|
|
3348
|
+
engine="engine",
|
|
3349
|
+
main="main",
|
|
3350
|
+
parameter_template={
|
|
3351
|
+
"parameter_template_key": omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3352
|
+
description="description",
|
|
3353
|
+
optional=False
|
|
3354
|
+
)
|
|
3355
|
+
},
|
|
3356
|
+
storage_capacity=123,
|
|
3357
|
+
storage_type="storageType",
|
|
3358
|
+
tags={
|
|
3359
|
+
"tags_key": "tags"
|
|
3360
|
+
},
|
|
3361
|
+
workflow_bucket_owner_id="workflowBucketOwnerId"
|
|
3362
|
+
)
|
|
3363
|
+
'''
|
|
3364
|
+
|
|
3365
|
+
def __init__(
|
|
3366
|
+
self,
|
|
3367
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
3368
|
+
id: builtins.str,
|
|
3369
|
+
*,
|
|
3370
|
+
version_name: builtins.str,
|
|
3371
|
+
workflow_id: builtins.str,
|
|
3372
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
3373
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
3374
|
+
description: typing.Optional[builtins.str] = None,
|
|
3375
|
+
engine: typing.Optional[builtins.str] = None,
|
|
3376
|
+
main: typing.Optional[builtins.str] = None,
|
|
3377
|
+
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,
|
|
3378
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
3379
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3380
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3381
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3382
|
+
) -> None:
|
|
3383
|
+
'''
|
|
3384
|
+
:param scope: Scope in which this resource is defined.
|
|
3385
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
3386
|
+
:param version_name: The name of the workflow version.
|
|
3387
|
+
:param workflow_id: The workflow's ID.
|
|
3388
|
+
:param accelerators:
|
|
3389
|
+
:param definition_uri:
|
|
3390
|
+
:param description: The description of the workflow version.
|
|
3391
|
+
:param engine:
|
|
3392
|
+
:param main:
|
|
3393
|
+
:param parameter_template:
|
|
3394
|
+
:param storage_capacity:
|
|
3395
|
+
:param storage_type:
|
|
3396
|
+
:param tags: A map of resource tags.
|
|
3397
|
+
:param workflow_bucket_owner_id:
|
|
3398
|
+
'''
|
|
3399
|
+
if __debug__:
|
|
3400
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f9bbd83c3821b6d01e1b0445c2a66c0e7c312d81583ae6cf8dbe78c8d6a4bf99)
|
|
3401
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3402
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3403
|
+
props = CfnWorkflowVersionProps(
|
|
3404
|
+
version_name=version_name,
|
|
3405
|
+
workflow_id=workflow_id,
|
|
3406
|
+
accelerators=accelerators,
|
|
3407
|
+
definition_uri=definition_uri,
|
|
3408
|
+
description=description,
|
|
3409
|
+
engine=engine,
|
|
3410
|
+
main=main,
|
|
3411
|
+
parameter_template=parameter_template,
|
|
3412
|
+
storage_capacity=storage_capacity,
|
|
3413
|
+
storage_type=storage_type,
|
|
3414
|
+
tags=tags,
|
|
3415
|
+
workflow_bucket_owner_id=workflow_bucket_owner_id,
|
|
3416
|
+
)
|
|
3417
|
+
|
|
3418
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
3419
|
+
|
|
3420
|
+
@jsii.member(jsii_name="inspect")
|
|
3421
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3422
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
3423
|
+
|
|
3424
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
3425
|
+
'''
|
|
3426
|
+
if __debug__:
|
|
3427
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1a7de38e00c231b3afd92bbb59cad40657b334333096dde12413f391ade16867)
|
|
3428
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
3429
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
3430
|
+
|
|
3431
|
+
@jsii.member(jsii_name="renderProperties")
|
|
3432
|
+
def _render_properties(
|
|
3433
|
+
self,
|
|
3434
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
3435
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3436
|
+
'''
|
|
3437
|
+
:param props: -
|
|
3438
|
+
'''
|
|
3439
|
+
if __debug__:
|
|
3440
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e1461fce0dec6c9339e6bbc0df050886fb1f30852661c80911b28268bdee03c9)
|
|
3441
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
3442
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
3443
|
+
|
|
3444
|
+
@jsii.python.classproperty
|
|
3445
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
3446
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
3447
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
3448
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3449
|
+
|
|
3450
|
+
@builtins.property
|
|
3451
|
+
@jsii.member(jsii_name="attrArn")
|
|
3452
|
+
def attr_arn(self) -> builtins.str:
|
|
3453
|
+
'''ARN of the workflow version.
|
|
3454
|
+
|
|
3455
|
+
:cloudformationAttribute: Arn
|
|
3456
|
+
'''
|
|
3457
|
+
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
3458
|
+
|
|
3459
|
+
@builtins.property
|
|
3460
|
+
@jsii.member(jsii_name="attrCreationTime")
|
|
3461
|
+
def attr_creation_time(self) -> builtins.str:
|
|
3462
|
+
'''The creation time of the workflow version.
|
|
3463
|
+
|
|
3464
|
+
:cloudformationAttribute: CreationTime
|
|
3465
|
+
'''
|
|
3466
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
3467
|
+
|
|
3468
|
+
@builtins.property
|
|
3469
|
+
@jsii.member(jsii_name="attrStatus")
|
|
3470
|
+
def attr_status(self) -> builtins.str:
|
|
3471
|
+
'''The status of the workflow version.
|
|
3472
|
+
|
|
3473
|
+
:cloudformationAttribute: Status
|
|
3474
|
+
'''
|
|
3475
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
3476
|
+
|
|
3477
|
+
@builtins.property
|
|
3478
|
+
@jsii.member(jsii_name="attrType")
|
|
3479
|
+
def attr_type(self) -> builtins.str:
|
|
3480
|
+
'''The type of the workflow version.
|
|
3481
|
+
|
|
3482
|
+
:cloudformationAttribute: Type
|
|
3483
|
+
'''
|
|
3484
|
+
return typing.cast(builtins.str, jsii.get(self, "attrType"))
|
|
3485
|
+
|
|
3486
|
+
@builtins.property
|
|
3487
|
+
@jsii.member(jsii_name="attrUuid")
|
|
3488
|
+
def attr_uuid(self) -> builtins.str:
|
|
3489
|
+
'''
|
|
3490
|
+
:cloudformationAttribute: Uuid
|
|
3491
|
+
'''
|
|
3492
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUuid"))
|
|
3493
|
+
|
|
3494
|
+
@builtins.property
|
|
3495
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
3496
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
3497
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
3498
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
3499
|
+
|
|
3500
|
+
@builtins.property
|
|
3501
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
3502
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3503
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3504
|
+
|
|
3505
|
+
@builtins.property
|
|
3506
|
+
@jsii.member(jsii_name="versionName")
|
|
3507
|
+
def version_name(self) -> builtins.str:
|
|
3508
|
+
'''The name of the workflow version.'''
|
|
3509
|
+
return typing.cast(builtins.str, jsii.get(self, "versionName"))
|
|
3510
|
+
|
|
3511
|
+
@version_name.setter
|
|
3512
|
+
def version_name(self, value: builtins.str) -> None:
|
|
3513
|
+
if __debug__:
|
|
3514
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4a9f5bdcc4a225102f171d30f4738ab832792497c08ecb206114ad57125adf01)
|
|
3515
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3516
|
+
jsii.set(self, "versionName", value) # pyright: ignore[reportArgumentType]
|
|
3517
|
+
|
|
3518
|
+
@builtins.property
|
|
3519
|
+
@jsii.member(jsii_name="workflowId")
|
|
3520
|
+
def workflow_id(self) -> builtins.str:
|
|
3521
|
+
'''The workflow's ID.'''
|
|
3522
|
+
return typing.cast(builtins.str, jsii.get(self, "workflowId"))
|
|
3523
|
+
|
|
3524
|
+
@workflow_id.setter
|
|
3525
|
+
def workflow_id(self, value: builtins.str) -> None:
|
|
3526
|
+
if __debug__:
|
|
3527
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5def0afb0cd8ab9471e48b541cd9dceaeb6826bfe7a8a24d0c36614c73b1a6d6)
|
|
3528
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3529
|
+
jsii.set(self, "workflowId", value) # pyright: ignore[reportArgumentType]
|
|
3530
|
+
|
|
3531
|
+
@builtins.property
|
|
3532
|
+
@jsii.member(jsii_name="accelerators")
|
|
3533
|
+
def accelerators(self) -> typing.Optional[builtins.str]:
|
|
3534
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "accelerators"))
|
|
3535
|
+
|
|
3536
|
+
@accelerators.setter
|
|
3537
|
+
def accelerators(self, value: typing.Optional[builtins.str]) -> None:
|
|
3538
|
+
if __debug__:
|
|
3539
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b69952a53a68976751566fbcf17774d0dfa2d7ede106cb440b751f76c7eb99ef)
|
|
2891
3540
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2892
3541
|
jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
|
|
2893
3542
|
|
|
2894
3543
|
@builtins.property
|
|
2895
3544
|
@jsii.member(jsii_name="definitionUri")
|
|
2896
3545
|
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
2897
|
-
'''The URI of a definition for the workflow.'''
|
|
2898
3546
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "definitionUri"))
|
|
2899
3547
|
|
|
2900
3548
|
@definition_uri.setter
|
|
2901
3549
|
def definition_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
2902
3550
|
if __debug__:
|
|
2903
|
-
type_hints = typing.get_type_hints(
|
|
3551
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978)
|
|
2904
3552
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2905
3553
|
jsii.set(self, "definitionUri", value) # pyright: ignore[reportArgumentType]
|
|
2906
3554
|
|
|
2907
3555
|
@builtins.property
|
|
2908
3556
|
@jsii.member(jsii_name="description")
|
|
2909
3557
|
def description(self) -> typing.Optional[builtins.str]:
|
|
2910
|
-
'''The
|
|
3558
|
+
'''The description of the workflow version.'''
|
|
2911
3559
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
2912
3560
|
|
|
2913
3561
|
@description.setter
|
|
2914
3562
|
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
2915
3563
|
if __debug__:
|
|
2916
|
-
type_hints = typing.get_type_hints(
|
|
3564
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d26e61de900859028fd4b5aff7eb7fefa87386da043d620b3407bc69ef3f950b)
|
|
2917
3565
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2918
3566
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
2919
3567
|
|
|
2920
3568
|
@builtins.property
|
|
2921
3569
|
@jsii.member(jsii_name="engine")
|
|
2922
3570
|
def engine(self) -> typing.Optional[builtins.str]:
|
|
2923
|
-
'''An engine for the workflow.'''
|
|
2924
3571
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
2925
3572
|
|
|
2926
3573
|
@engine.setter
|
|
2927
3574
|
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
2928
3575
|
if __debug__:
|
|
2929
|
-
type_hints = typing.get_type_hints(
|
|
3576
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc)
|
|
2930
3577
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2931
3578
|
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
2932
3579
|
|
|
2933
3580
|
@builtins.property
|
|
2934
3581
|
@jsii.member(jsii_name="main")
|
|
2935
3582
|
def main(self) -> typing.Optional[builtins.str]:
|
|
2936
|
-
'''The path of the main definition file for the workflow.'''
|
|
2937
3583
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "main"))
|
|
2938
3584
|
|
|
2939
3585
|
@main.setter
|
|
2940
3586
|
def main(self, value: typing.Optional[builtins.str]) -> None:
|
|
2941
3587
|
if __debug__:
|
|
2942
|
-
type_hints = typing.get_type_hints(
|
|
3588
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb201e46965fe4b385e0e52f84a505023c34c0c16c33aea7e75a09209c34d1af)
|
|
2943
3589
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2944
3590
|
jsii.set(self, "main", value) # pyright: ignore[reportArgumentType]
|
|
2945
3591
|
|
|
2946
|
-
@builtins.property
|
|
2947
|
-
@jsii.member(jsii_name="name")
|
|
2948
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
2949
|
-
'''The workflow's name.'''
|
|
2950
|
-
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
|
|
2951
|
-
|
|
2952
|
-
@name.setter
|
|
2953
|
-
def name(self, value: typing.Optional[builtins.str]) -> None:
|
|
2954
|
-
if __debug__:
|
|
2955
|
-
type_hints = typing.get_type_hints(_typecheckingstub__b6845f053d191fb8caa10b651afe2128f50703f821981813813ed0bb9862dad7)
|
|
2956
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2957
|
-
jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
|
|
2958
|
-
|
|
2959
3592
|
@builtins.property
|
|
2960
3593
|
@jsii.member(jsii_name="parameterTemplate")
|
|
2961
3594
|
def parameter_template(
|
|
2962
3595
|
self,
|
|
2963
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "
|
|
2964
|
-
|
|
2965
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflow.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
3596
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]]:
|
|
3597
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
2966
3598
|
|
|
2967
3599
|
@parameter_template.setter
|
|
2968
3600
|
def parameter_template(
|
|
2969
3601
|
self,
|
|
2970
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "
|
|
3602
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]],
|
|
2971
3603
|
) -> None:
|
|
2972
3604
|
if __debug__:
|
|
2973
|
-
type_hints = typing.get_type_hints(
|
|
3605
|
+
type_hints = typing.get_type_hints(_typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9)
|
|
2974
3606
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2975
3607
|
jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
|
|
2976
3608
|
|
|
2977
3609
|
@builtins.property
|
|
2978
3610
|
@jsii.member(jsii_name="storageCapacity")
|
|
2979
3611
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2980
|
-
'''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.'''
|
|
2981
3612
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2982
3613
|
|
|
2983
3614
|
@storage_capacity.setter
|
|
2984
3615
|
def storage_capacity(self, value: typing.Optional[jsii.Number]) -> None:
|
|
2985
3616
|
if __debug__:
|
|
2986
|
-
type_hints = typing.get_type_hints(
|
|
3617
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7)
|
|
2987
3618
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2988
3619
|
jsii.set(self, "storageCapacity", value) # pyright: ignore[reportArgumentType]
|
|
2989
3620
|
|
|
2990
3621
|
@builtins.property
|
|
2991
|
-
@jsii.member(jsii_name="
|
|
2992
|
-
def
|
|
2993
|
-
|
|
2994
|
-
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tagsRaw"))
|
|
3622
|
+
@jsii.member(jsii_name="storageType")
|
|
3623
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3624
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "storageType"))
|
|
2995
3625
|
|
|
2996
|
-
@
|
|
2997
|
-
def
|
|
3626
|
+
@storage_type.setter
|
|
3627
|
+
def storage_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
3628
|
+
if __debug__:
|
|
3629
|
+
type_hints = typing.get_type_hints(_typecheckingstub__50ce9715f4efa14e458d6207fae79f6b0ebc36a3bf74435e024116d9f8060ca2)
|
|
3630
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3631
|
+
jsii.set(self, "storageType", value) # pyright: ignore[reportArgumentType]
|
|
3632
|
+
|
|
3633
|
+
@builtins.property
|
|
3634
|
+
@jsii.member(jsii_name="tags")
|
|
3635
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3636
|
+
'''A map of resource tags.'''
|
|
3637
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
3638
|
+
|
|
3639
|
+
@tags.setter
|
|
3640
|
+
def tags(
|
|
2998
3641
|
self,
|
|
2999
3642
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3000
3643
|
) -> None:
|
|
3001
3644
|
if __debug__:
|
|
3002
|
-
type_hints = typing.get_type_hints(
|
|
3645
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8)
|
|
3003
3646
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3004
|
-
jsii.set(self, "
|
|
3647
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
3648
|
+
|
|
3649
|
+
@builtins.property
|
|
3650
|
+
@jsii.member(jsii_name="workflowBucketOwnerId")
|
|
3651
|
+
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
3652
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "workflowBucketOwnerId"))
|
|
3653
|
+
|
|
3654
|
+
@workflow_bucket_owner_id.setter
|
|
3655
|
+
def workflow_bucket_owner_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
3656
|
+
if __debug__:
|
|
3657
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220c18775d)
|
|
3658
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3659
|
+
jsii.set(self, "workflowBucketOwnerId", value) # pyright: ignore[reportArgumentType]
|
|
3005
3660
|
|
|
3006
3661
|
@jsii.data_type(
|
|
3007
|
-
jsii_type="aws-cdk-lib.aws_omics.
|
|
3662
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.WorkflowParameterProperty",
|
|
3008
3663
|
jsii_struct_bases=[],
|
|
3009
3664
|
name_mapping={"description": "description", "optional": "optional"},
|
|
3010
3665
|
)
|
|
@@ -3020,7 +3675,7 @@ class CfnWorkflow(
|
|
|
3020
3675
|
:param description: The parameter's description.
|
|
3021
3676
|
:param optional: Whether the parameter is optional.
|
|
3022
3677
|
|
|
3023
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-
|
|
3678
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html
|
|
3024
3679
|
:exampleMetadata: fixture=_generated
|
|
3025
3680
|
|
|
3026
3681
|
Example::
|
|
@@ -3029,13 +3684,13 @@ class CfnWorkflow(
|
|
|
3029
3684
|
# The values are placeholders you should change.
|
|
3030
3685
|
from aws_cdk import aws_omics as omics
|
|
3031
3686
|
|
|
3032
|
-
workflow_parameter_property = omics.
|
|
3687
|
+
workflow_parameter_property = omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3033
3688
|
description="description",
|
|
3034
3689
|
optional=False
|
|
3035
3690
|
)
|
|
3036
3691
|
'''
|
|
3037
3692
|
if __debug__:
|
|
3038
|
-
type_hints = typing.get_type_hints(
|
|
3693
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3d434101b6df92e22ac3acf923cd7bb4105c1a82dad119b383839a4f14189485)
|
|
3039
3694
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3040
3695
|
check_type(argname="argument optional", value=optional, expected_type=type_hints["optional"])
|
|
3041
3696
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -3048,7 +3703,7 @@ class CfnWorkflow(
|
|
|
3048
3703
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3049
3704
|
'''The parameter's description.
|
|
3050
3705
|
|
|
3051
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-
|
|
3706
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html#cfn-omics-workflowversion-workflowparameter-description
|
|
3052
3707
|
'''
|
|
3053
3708
|
result = self._values.get("description")
|
|
3054
3709
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -3059,7 +3714,7 @@ class CfnWorkflow(
|
|
|
3059
3714
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3060
3715
|
'''Whether the parameter is optional.
|
|
3061
3716
|
|
|
3062
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-
|
|
3717
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html#cfn-omics-workflowversion-workflowparameter-optional
|
|
3063
3718
|
'''
|
|
3064
3719
|
result = self._values.get("optional")
|
|
3065
3720
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
@@ -3077,47 +3732,56 @@ class CfnWorkflow(
|
|
|
3077
3732
|
|
|
3078
3733
|
|
|
3079
3734
|
@jsii.data_type(
|
|
3080
|
-
jsii_type="aws-cdk-lib.aws_omics.
|
|
3735
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersionProps",
|
|
3081
3736
|
jsii_struct_bases=[],
|
|
3082
3737
|
name_mapping={
|
|
3738
|
+
"version_name": "versionName",
|
|
3739
|
+
"workflow_id": "workflowId",
|
|
3083
3740
|
"accelerators": "accelerators",
|
|
3084
3741
|
"definition_uri": "definitionUri",
|
|
3085
3742
|
"description": "description",
|
|
3086
3743
|
"engine": "engine",
|
|
3087
3744
|
"main": "main",
|
|
3088
|
-
"name": "name",
|
|
3089
3745
|
"parameter_template": "parameterTemplate",
|
|
3090
3746
|
"storage_capacity": "storageCapacity",
|
|
3747
|
+
"storage_type": "storageType",
|
|
3091
3748
|
"tags": "tags",
|
|
3749
|
+
"workflow_bucket_owner_id": "workflowBucketOwnerId",
|
|
3092
3750
|
},
|
|
3093
3751
|
)
|
|
3094
|
-
class
|
|
3752
|
+
class CfnWorkflowVersionProps:
|
|
3095
3753
|
def __init__(
|
|
3096
3754
|
self,
|
|
3097
3755
|
*,
|
|
3756
|
+
version_name: builtins.str,
|
|
3757
|
+
workflow_id: builtins.str,
|
|
3098
3758
|
accelerators: typing.Optional[builtins.str] = None,
|
|
3099
3759
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
3100
3760
|
description: typing.Optional[builtins.str] = None,
|
|
3101
3761
|
engine: typing.Optional[builtins.str] = None,
|
|
3102
3762
|
main: typing.Optional[builtins.str] = None,
|
|
3103
|
-
|
|
3104
|
-
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,
|
|
3763
|
+
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,
|
|
3105
3764
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
3765
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3106
3766
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3767
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3107
3768
|
) -> None:
|
|
3108
|
-
'''Properties for defining a ``
|
|
3769
|
+
'''Properties for defining a ``CfnWorkflowVersion``.
|
|
3109
3770
|
|
|
3771
|
+
:param version_name: The name of the workflow version.
|
|
3772
|
+
:param workflow_id: The workflow's ID.
|
|
3110
3773
|
:param accelerators:
|
|
3111
|
-
:param definition_uri:
|
|
3112
|
-
:param description: The
|
|
3113
|
-
:param engine:
|
|
3114
|
-
:param main:
|
|
3115
|
-
:param
|
|
3116
|
-
:param
|
|
3117
|
-
:param
|
|
3118
|
-
:param tags:
|
|
3119
|
-
|
|
3120
|
-
|
|
3774
|
+
:param definition_uri:
|
|
3775
|
+
:param description: The description of the workflow version.
|
|
3776
|
+
:param engine:
|
|
3777
|
+
:param main:
|
|
3778
|
+
:param parameter_template:
|
|
3779
|
+
:param storage_capacity:
|
|
3780
|
+
:param storage_type:
|
|
3781
|
+
:param tags: A map of resource tags.
|
|
3782
|
+
:param workflow_bucket_owner_id:
|
|
3783
|
+
|
|
3784
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html
|
|
3121
3785
|
:exampleMetadata: fixture=_generated
|
|
3122
3786
|
|
|
3123
3787
|
Example::
|
|
@@ -3126,37 +3790,48 @@ class CfnWorkflowProps:
|
|
|
3126
3790
|
# The values are placeholders you should change.
|
|
3127
3791
|
from aws_cdk import aws_omics as omics
|
|
3128
3792
|
|
|
3129
|
-
|
|
3793
|
+
cfn_workflow_version_props = omics.CfnWorkflowVersionProps(
|
|
3794
|
+
version_name="versionName",
|
|
3795
|
+
workflow_id="workflowId",
|
|
3796
|
+
|
|
3797
|
+
# the properties below are optional
|
|
3130
3798
|
accelerators="accelerators",
|
|
3131
3799
|
definition_uri="definitionUri",
|
|
3132
3800
|
description="description",
|
|
3133
3801
|
engine="engine",
|
|
3134
3802
|
main="main",
|
|
3135
|
-
name="name",
|
|
3136
3803
|
parameter_template={
|
|
3137
|
-
"parameter_template_key": omics.
|
|
3804
|
+
"parameter_template_key": omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3138
3805
|
description="description",
|
|
3139
3806
|
optional=False
|
|
3140
3807
|
)
|
|
3141
3808
|
},
|
|
3142
3809
|
storage_capacity=123,
|
|
3810
|
+
storage_type="storageType",
|
|
3143
3811
|
tags={
|
|
3144
3812
|
"tags_key": "tags"
|
|
3145
|
-
}
|
|
3813
|
+
},
|
|
3814
|
+
workflow_bucket_owner_id="workflowBucketOwnerId"
|
|
3146
3815
|
)
|
|
3147
3816
|
'''
|
|
3148
3817
|
if __debug__:
|
|
3149
|
-
type_hints = typing.get_type_hints(
|
|
3818
|
+
type_hints = typing.get_type_hints(_typecheckingstub__32259ddc7b7d888918efaf09deb63ba780f3721ec1da9ea606ed8100a4b9fb3e)
|
|
3819
|
+
check_type(argname="argument version_name", value=version_name, expected_type=type_hints["version_name"])
|
|
3820
|
+
check_type(argname="argument workflow_id", value=workflow_id, expected_type=type_hints["workflow_id"])
|
|
3150
3821
|
check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
|
|
3151
3822
|
check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
|
|
3152
3823
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3153
3824
|
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
3154
3825
|
check_type(argname="argument main", value=main, expected_type=type_hints["main"])
|
|
3155
|
-
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
3156
3826
|
check_type(argname="argument parameter_template", value=parameter_template, expected_type=type_hints["parameter_template"])
|
|
3157
3827
|
check_type(argname="argument storage_capacity", value=storage_capacity, expected_type=type_hints["storage_capacity"])
|
|
3828
|
+
check_type(argname="argument storage_type", value=storage_type, expected_type=type_hints["storage_type"])
|
|
3158
3829
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3159
|
-
|
|
3830
|
+
check_type(argname="argument workflow_bucket_owner_id", value=workflow_bucket_owner_id, expected_type=type_hints["workflow_bucket_owner_id"])
|
|
3831
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3832
|
+
"version_name": version_name,
|
|
3833
|
+
"workflow_id": workflow_id,
|
|
3834
|
+
}
|
|
3160
3835
|
if accelerators is not None:
|
|
3161
3836
|
self._values["accelerators"] = accelerators
|
|
3162
3837
|
if definition_uri is not None:
|
|
@@ -3167,97 +3842,121 @@ class CfnWorkflowProps:
|
|
|
3167
3842
|
self._values["engine"] = engine
|
|
3168
3843
|
if main is not None:
|
|
3169
3844
|
self._values["main"] = main
|
|
3170
|
-
if name is not None:
|
|
3171
|
-
self._values["name"] = name
|
|
3172
3845
|
if parameter_template is not None:
|
|
3173
3846
|
self._values["parameter_template"] = parameter_template
|
|
3174
3847
|
if storage_capacity is not None:
|
|
3175
3848
|
self._values["storage_capacity"] = storage_capacity
|
|
3849
|
+
if storage_type is not None:
|
|
3850
|
+
self._values["storage_type"] = storage_type
|
|
3176
3851
|
if tags is not None:
|
|
3177
3852
|
self._values["tags"] = tags
|
|
3853
|
+
if workflow_bucket_owner_id is not None:
|
|
3854
|
+
self._values["workflow_bucket_owner_id"] = workflow_bucket_owner_id
|
|
3855
|
+
|
|
3856
|
+
@builtins.property
|
|
3857
|
+
def version_name(self) -> builtins.str:
|
|
3858
|
+
'''The name of the workflow version.
|
|
3859
|
+
|
|
3860
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-versionname
|
|
3861
|
+
'''
|
|
3862
|
+
result = self._values.get("version_name")
|
|
3863
|
+
assert result is not None, "Required property 'version_name' is missing"
|
|
3864
|
+
return typing.cast(builtins.str, result)
|
|
3865
|
+
|
|
3866
|
+
@builtins.property
|
|
3867
|
+
def workflow_id(self) -> builtins.str:
|
|
3868
|
+
'''The workflow's ID.
|
|
3869
|
+
|
|
3870
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-workflowid
|
|
3871
|
+
'''
|
|
3872
|
+
result = self._values.get("workflow_id")
|
|
3873
|
+
assert result is not None, "Required property 'workflow_id' is missing"
|
|
3874
|
+
return typing.cast(builtins.str, result)
|
|
3178
3875
|
|
|
3179
3876
|
@builtins.property
|
|
3180
3877
|
def accelerators(self) -> typing.Optional[builtins.str]:
|
|
3181
3878
|
'''
|
|
3182
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-
|
|
3879
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-accelerators
|
|
3183
3880
|
'''
|
|
3184
3881
|
result = self._values.get("accelerators")
|
|
3185
3882
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3186
3883
|
|
|
3187
3884
|
@builtins.property
|
|
3188
3885
|
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
3189
|
-
'''
|
|
3190
|
-
|
|
3191
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-definitionuri
|
|
3886
|
+
'''
|
|
3887
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-definitionuri
|
|
3192
3888
|
'''
|
|
3193
3889
|
result = self._values.get("definition_uri")
|
|
3194
3890
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3195
3891
|
|
|
3196
3892
|
@builtins.property
|
|
3197
3893
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3198
|
-
'''The
|
|
3894
|
+
'''The description of the workflow version.
|
|
3199
3895
|
|
|
3200
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-
|
|
3896
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-description
|
|
3201
3897
|
'''
|
|
3202
3898
|
result = self._values.get("description")
|
|
3203
3899
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3204
3900
|
|
|
3205
3901
|
@builtins.property
|
|
3206
3902
|
def engine(self) -> typing.Optional[builtins.str]:
|
|
3207
|
-
'''
|
|
3208
|
-
|
|
3209
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-engine
|
|
3903
|
+
'''
|
|
3904
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-engine
|
|
3210
3905
|
'''
|
|
3211
3906
|
result = self._values.get("engine")
|
|
3212
3907
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3213
3908
|
|
|
3214
3909
|
@builtins.property
|
|
3215
3910
|
def main(self) -> typing.Optional[builtins.str]:
|
|
3216
|
-
'''The path of the main definition file for the workflow.
|
|
3217
|
-
|
|
3218
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-main
|
|
3219
3911
|
'''
|
|
3220
|
-
|
|
3221
|
-
return typing.cast(typing.Optional[builtins.str], result)
|
|
3222
|
-
|
|
3223
|
-
@builtins.property
|
|
3224
|
-
def name(self) -> typing.Optional[builtins.str]:
|
|
3225
|
-
'''The workflow's name.
|
|
3226
|
-
|
|
3227
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-name
|
|
3912
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-main
|
|
3228
3913
|
'''
|
|
3229
|
-
result = self._values.get("
|
|
3914
|
+
result = self._values.get("main")
|
|
3230
3915
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3231
3916
|
|
|
3232
3917
|
@builtins.property
|
|
3233
3918
|
def parameter_template(
|
|
3234
3919
|
self,
|
|
3235
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b,
|
|
3236
|
-
'''
|
|
3237
|
-
|
|
3238
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-parametertemplate
|
|
3920
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]]:
|
|
3921
|
+
'''
|
|
3922
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-parametertemplate
|
|
3239
3923
|
'''
|
|
3240
3924
|
result = self._values.get("parameter_template")
|
|
3241
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b,
|
|
3925
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]], result)
|
|
3242
3926
|
|
|
3243
3927
|
@builtins.property
|
|
3244
3928
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
3245
|
-
'''
|
|
3246
|
-
|
|
3247
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
|
|
3929
|
+
'''
|
|
3930
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-storagecapacity
|
|
3248
3931
|
'''
|
|
3249
3932
|
result = self._values.get("storage_capacity")
|
|
3250
3933
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3251
3934
|
|
|
3935
|
+
@builtins.property
|
|
3936
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3937
|
+
'''
|
|
3938
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-storagetype
|
|
3939
|
+
'''
|
|
3940
|
+
result = self._values.get("storage_type")
|
|
3941
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3942
|
+
|
|
3252
3943
|
@builtins.property
|
|
3253
3944
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3254
|
-
'''
|
|
3945
|
+
'''A map of resource tags.
|
|
3255
3946
|
|
|
3256
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-
|
|
3947
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-tags
|
|
3257
3948
|
'''
|
|
3258
3949
|
result = self._values.get("tags")
|
|
3259
3950
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
3260
3951
|
|
|
3952
|
+
@builtins.property
|
|
3953
|
+
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
3954
|
+
'''
|
|
3955
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-workflowbucketownerid
|
|
3956
|
+
'''
|
|
3957
|
+
result = self._values.get("workflow_bucket_owner_id")
|
|
3958
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3959
|
+
|
|
3261
3960
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3262
3961
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3263
3962
|
|
|
@@ -3265,7 +3964,7 @@ class CfnWorkflowProps:
|
|
|
3265
3964
|
return not (rhs == self)
|
|
3266
3965
|
|
|
3267
3966
|
def __repr__(self) -> str:
|
|
3268
|
-
return "
|
|
3967
|
+
return "CfnWorkflowVersionProps(%s)" % ", ".join(
|
|
3269
3968
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3270
3969
|
)
|
|
3271
3970
|
|
|
@@ -3283,6 +3982,8 @@ __all__ = [
|
|
|
3283
3982
|
"CfnVariantStoreProps",
|
|
3284
3983
|
"CfnWorkflow",
|
|
3285
3984
|
"CfnWorkflowProps",
|
|
3985
|
+
"CfnWorkflowVersion",
|
|
3986
|
+
"CfnWorkflowVersionProps",
|
|
3286
3987
|
]
|
|
3287
3988
|
|
|
3288
3989
|
publication.publish()
|
|
@@ -3739,6 +4440,7 @@ def _typecheckingstub__b2d05cb293836959a925b22dbe1861bc4457d2d510bd3a480ae858ea9
|
|
|
3739
4440
|
name: typing.Optional[builtins.str] = None,
|
|
3740
4441
|
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,
|
|
3741
4442
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4443
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3742
4444
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3743
4445
|
) -> None:
|
|
3744
4446
|
"""Type checking stubs"""
|
|
@@ -3804,6 +4506,12 @@ def _typecheckingstub__37c3d929054386cb4ebdbc60c2c3558d7cd34bed65861db5661f96d5d
|
|
|
3804
4506
|
"""Type checking stubs"""
|
|
3805
4507
|
pass
|
|
3806
4508
|
|
|
4509
|
+
def _typecheckingstub__82b78c9fdaf5e3e15a75209f5d891cf1513f47077977c45c2d020ffe13e990ac(
|
|
4510
|
+
value: typing.Optional[builtins.str],
|
|
4511
|
+
) -> None:
|
|
4512
|
+
"""Type checking stubs"""
|
|
4513
|
+
pass
|
|
4514
|
+
|
|
3807
4515
|
def _typecheckingstub__651d8f1caf8b2c987665acfeae50e19a5626bb723832dae7067c423aab3ac2b5(
|
|
3808
4516
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3809
4517
|
) -> None:
|
|
@@ -3828,7 +4536,138 @@ def _typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8
|
|
|
3828
4536
|
name: typing.Optional[builtins.str] = None,
|
|
3829
4537
|
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,
|
|
3830
4538
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4539
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
4540
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4541
|
+
) -> None:
|
|
4542
|
+
"""Type checking stubs"""
|
|
4543
|
+
pass
|
|
4544
|
+
|
|
4545
|
+
def _typecheckingstub__f9bbd83c3821b6d01e1b0445c2a66c0e7c312d81583ae6cf8dbe78c8d6a4bf99(
|
|
4546
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4547
|
+
id: builtins.str,
|
|
4548
|
+
*,
|
|
4549
|
+
version_name: builtins.str,
|
|
4550
|
+
workflow_id: builtins.str,
|
|
4551
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
4552
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
4553
|
+
description: typing.Optional[builtins.str] = None,
|
|
4554
|
+
engine: typing.Optional[builtins.str] = None,
|
|
4555
|
+
main: typing.Optional[builtins.str] = None,
|
|
4556
|
+
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,
|
|
4557
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4558
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
4559
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4560
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
4561
|
+
) -> None:
|
|
4562
|
+
"""Type checking stubs"""
|
|
4563
|
+
pass
|
|
4564
|
+
|
|
4565
|
+
def _typecheckingstub__1a7de38e00c231b3afd92bbb59cad40657b334333096dde12413f391ade16867(
|
|
4566
|
+
inspector: _TreeInspector_488e0dd5,
|
|
4567
|
+
) -> None:
|
|
4568
|
+
"""Type checking stubs"""
|
|
4569
|
+
pass
|
|
4570
|
+
|
|
4571
|
+
def _typecheckingstub__e1461fce0dec6c9339e6bbc0df050886fb1f30852661c80911b28268bdee03c9(
|
|
4572
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4573
|
+
) -> None:
|
|
4574
|
+
"""Type checking stubs"""
|
|
4575
|
+
pass
|
|
4576
|
+
|
|
4577
|
+
def _typecheckingstub__4a9f5bdcc4a225102f171d30f4738ab832792497c08ecb206114ad57125adf01(
|
|
4578
|
+
value: builtins.str,
|
|
4579
|
+
) -> None:
|
|
4580
|
+
"""Type checking stubs"""
|
|
4581
|
+
pass
|
|
4582
|
+
|
|
4583
|
+
def _typecheckingstub__5def0afb0cd8ab9471e48b541cd9dceaeb6826bfe7a8a24d0c36614c73b1a6d6(
|
|
4584
|
+
value: builtins.str,
|
|
4585
|
+
) -> None:
|
|
4586
|
+
"""Type checking stubs"""
|
|
4587
|
+
pass
|
|
4588
|
+
|
|
4589
|
+
def _typecheckingstub__b69952a53a68976751566fbcf17774d0dfa2d7ede106cb440b751f76c7eb99ef(
|
|
4590
|
+
value: typing.Optional[builtins.str],
|
|
4591
|
+
) -> None:
|
|
4592
|
+
"""Type checking stubs"""
|
|
4593
|
+
pass
|
|
4594
|
+
|
|
4595
|
+
def _typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978(
|
|
4596
|
+
value: typing.Optional[builtins.str],
|
|
4597
|
+
) -> None:
|
|
4598
|
+
"""Type checking stubs"""
|
|
4599
|
+
pass
|
|
4600
|
+
|
|
4601
|
+
def _typecheckingstub__d26e61de900859028fd4b5aff7eb7fefa87386da043d620b3407bc69ef3f950b(
|
|
4602
|
+
value: typing.Optional[builtins.str],
|
|
4603
|
+
) -> None:
|
|
4604
|
+
"""Type checking stubs"""
|
|
4605
|
+
pass
|
|
4606
|
+
|
|
4607
|
+
def _typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc(
|
|
4608
|
+
value: typing.Optional[builtins.str],
|
|
4609
|
+
) -> None:
|
|
4610
|
+
"""Type checking stubs"""
|
|
4611
|
+
pass
|
|
4612
|
+
|
|
4613
|
+
def _typecheckingstub__bb201e46965fe4b385e0e52f84a505023c34c0c16c33aea7e75a09209c34d1af(
|
|
4614
|
+
value: typing.Optional[builtins.str],
|
|
4615
|
+
) -> None:
|
|
4616
|
+
"""Type checking stubs"""
|
|
4617
|
+
pass
|
|
4618
|
+
|
|
4619
|
+
def _typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9(
|
|
4620
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]],
|
|
4621
|
+
) -> None:
|
|
4622
|
+
"""Type checking stubs"""
|
|
4623
|
+
pass
|
|
4624
|
+
|
|
4625
|
+
def _typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7(
|
|
4626
|
+
value: typing.Optional[jsii.Number],
|
|
4627
|
+
) -> None:
|
|
4628
|
+
"""Type checking stubs"""
|
|
4629
|
+
pass
|
|
4630
|
+
|
|
4631
|
+
def _typecheckingstub__50ce9715f4efa14e458d6207fae79f6b0ebc36a3bf74435e024116d9f8060ca2(
|
|
4632
|
+
value: typing.Optional[builtins.str],
|
|
4633
|
+
) -> None:
|
|
4634
|
+
"""Type checking stubs"""
|
|
4635
|
+
pass
|
|
4636
|
+
|
|
4637
|
+
def _typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8(
|
|
4638
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
4639
|
+
) -> None:
|
|
4640
|
+
"""Type checking stubs"""
|
|
4641
|
+
pass
|
|
4642
|
+
|
|
4643
|
+
def _typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220c18775d(
|
|
4644
|
+
value: typing.Optional[builtins.str],
|
|
4645
|
+
) -> None:
|
|
4646
|
+
"""Type checking stubs"""
|
|
4647
|
+
pass
|
|
4648
|
+
|
|
4649
|
+
def _typecheckingstub__3d434101b6df92e22ac3acf923cd7bb4105c1a82dad119b383839a4f14189485(
|
|
4650
|
+
*,
|
|
4651
|
+
description: typing.Optional[builtins.str] = None,
|
|
4652
|
+
optional: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4653
|
+
) -> None:
|
|
4654
|
+
"""Type checking stubs"""
|
|
4655
|
+
pass
|
|
4656
|
+
|
|
4657
|
+
def _typecheckingstub__32259ddc7b7d888918efaf09deb63ba780f3721ec1da9ea606ed8100a4b9fb3e(
|
|
4658
|
+
*,
|
|
4659
|
+
version_name: builtins.str,
|
|
4660
|
+
workflow_id: builtins.str,
|
|
4661
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
4662
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
4663
|
+
description: typing.Optional[builtins.str] = None,
|
|
4664
|
+
engine: typing.Optional[builtins.str] = None,
|
|
4665
|
+
main: typing.Optional[builtins.str] = None,
|
|
4666
|
+
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,
|
|
4667
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4668
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3831
4669
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4670
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3832
4671
|
) -> None:
|
|
3833
4672
|
"""Type checking stubs"""
|
|
3834
4673
|
pass
|