aws-cdk-lib 2.196.1__py3-none-any.whl → 2.197.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.197.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- 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 +42 -7
- aws_cdk/aws_datasync/__init__.py +43 -72
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +139 -0
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +81 -3
- aws_cdk/aws_ecs/__init__.py +24 -17
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_gamelift/__init__.py +103 -15
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_omics/__init__.py +920 -103
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_ses/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +39 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/RECORD +29 -29
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.197.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]:
|
|
@@ -2926,85 +2939,711 @@ class CfnWorkflow(
|
|
|
2926
2939
|
@engine.setter
|
|
2927
2940
|
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
2928
2941
|
if __debug__:
|
|
2929
|
-
type_hints = typing.get_type_hints(_typecheckingstub__2edee5dfbe37830cd0e2e70344c7e33e9cf08c5c243438272da4a5634eae529f)
|
|
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
|
+
'''Definition of AWS::Omics::WorkflowVersion Resource Type.
|
|
3320
|
+
|
|
3321
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html
|
|
3322
|
+
:cloudformationResource: AWS::Omics::WorkflowVersion
|
|
3323
|
+
:exampleMetadata: fixture=_generated
|
|
3324
|
+
|
|
3325
|
+
Example::
|
|
3326
|
+
|
|
3327
|
+
# The code below shows an example of how to instantiate this type.
|
|
3328
|
+
# The values are placeholders you should change.
|
|
3329
|
+
from aws_cdk import aws_omics as omics
|
|
3330
|
+
|
|
3331
|
+
cfn_workflow_version = omics.CfnWorkflowVersion(self, "MyCfnWorkflowVersion",
|
|
3332
|
+
version_name="versionName",
|
|
3333
|
+
workflow_id="workflowId",
|
|
3334
|
+
|
|
3335
|
+
# the properties below are optional
|
|
3336
|
+
accelerators="accelerators",
|
|
3337
|
+
definition_uri="definitionUri",
|
|
3338
|
+
description="description",
|
|
3339
|
+
engine="engine",
|
|
3340
|
+
main="main",
|
|
3341
|
+
parameter_template={
|
|
3342
|
+
"parameter_template_key": omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3343
|
+
description="description",
|
|
3344
|
+
optional=False
|
|
3345
|
+
)
|
|
3346
|
+
},
|
|
3347
|
+
storage_capacity=123,
|
|
3348
|
+
storage_type="storageType",
|
|
3349
|
+
tags={
|
|
3350
|
+
"tags_key": "tags"
|
|
3351
|
+
},
|
|
3352
|
+
workflow_bucket_owner_id="workflowBucketOwnerId"
|
|
3353
|
+
)
|
|
3354
|
+
'''
|
|
3355
|
+
|
|
3356
|
+
def __init__(
|
|
3357
|
+
self,
|
|
3358
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
3359
|
+
id: builtins.str,
|
|
3360
|
+
*,
|
|
3361
|
+
version_name: builtins.str,
|
|
3362
|
+
workflow_id: builtins.str,
|
|
3363
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
3364
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
3365
|
+
description: typing.Optional[builtins.str] = None,
|
|
3366
|
+
engine: typing.Optional[builtins.str] = None,
|
|
3367
|
+
main: typing.Optional[builtins.str] = None,
|
|
3368
|
+
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,
|
|
3369
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
3370
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3371
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3372
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3373
|
+
) -> None:
|
|
3374
|
+
'''
|
|
3375
|
+
:param scope: Scope in which this resource is defined.
|
|
3376
|
+
:param id: Construct identifier for this resource (unique in its scope).
|
|
3377
|
+
:param version_name:
|
|
3378
|
+
:param workflow_id:
|
|
3379
|
+
:param accelerators:
|
|
3380
|
+
:param definition_uri:
|
|
3381
|
+
:param description:
|
|
3382
|
+
:param engine:
|
|
3383
|
+
:param main:
|
|
3384
|
+
:param parameter_template:
|
|
3385
|
+
:param storage_capacity:
|
|
3386
|
+
:param storage_type:
|
|
3387
|
+
:param tags: A map of resource tags.
|
|
3388
|
+
:param workflow_bucket_owner_id:
|
|
3389
|
+
'''
|
|
3390
|
+
if __debug__:
|
|
3391
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f9bbd83c3821b6d01e1b0445c2a66c0e7c312d81583ae6cf8dbe78c8d6a4bf99)
|
|
3392
|
+
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3393
|
+
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3394
|
+
props = CfnWorkflowVersionProps(
|
|
3395
|
+
version_name=version_name,
|
|
3396
|
+
workflow_id=workflow_id,
|
|
3397
|
+
accelerators=accelerators,
|
|
3398
|
+
definition_uri=definition_uri,
|
|
3399
|
+
description=description,
|
|
3400
|
+
engine=engine,
|
|
3401
|
+
main=main,
|
|
3402
|
+
parameter_template=parameter_template,
|
|
3403
|
+
storage_capacity=storage_capacity,
|
|
3404
|
+
storage_type=storage_type,
|
|
3405
|
+
tags=tags,
|
|
3406
|
+
workflow_bucket_owner_id=workflow_bucket_owner_id,
|
|
3407
|
+
)
|
|
3408
|
+
|
|
3409
|
+
jsii.create(self.__class__, self, [scope, id, props])
|
|
3410
|
+
|
|
3411
|
+
@jsii.member(jsii_name="inspect")
|
|
3412
|
+
def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
|
|
3413
|
+
'''Examines the CloudFormation resource and discloses attributes.
|
|
3414
|
+
|
|
3415
|
+
:param inspector: tree inspector to collect and process attributes.
|
|
3416
|
+
'''
|
|
3417
|
+
if __debug__:
|
|
3418
|
+
type_hints = typing.get_type_hints(_typecheckingstub__1a7de38e00c231b3afd92bbb59cad40657b334333096dde12413f391ade16867)
|
|
3419
|
+
check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
|
|
3420
|
+
return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
|
|
3421
|
+
|
|
3422
|
+
@jsii.member(jsii_name="renderProperties")
|
|
3423
|
+
def _render_properties(
|
|
3424
|
+
self,
|
|
3425
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
3426
|
+
) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3427
|
+
'''
|
|
3428
|
+
:param props: -
|
|
3429
|
+
'''
|
|
3430
|
+
if __debug__:
|
|
3431
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e1461fce0dec6c9339e6bbc0df050886fb1f30852661c80911b28268bdee03c9)
|
|
3432
|
+
check_type(argname="argument props", value=props, expected_type=type_hints["props"])
|
|
3433
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
|
|
3434
|
+
|
|
3435
|
+
@jsii.python.classproperty
|
|
3436
|
+
@jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
|
|
3437
|
+
def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
|
|
3438
|
+
'''The CloudFormation resource type name for this resource class.'''
|
|
3439
|
+
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3440
|
+
|
|
3441
|
+
@builtins.property
|
|
3442
|
+
@jsii.member(jsii_name="attrArn")
|
|
3443
|
+
def attr_arn(self) -> builtins.str:
|
|
3444
|
+
'''
|
|
3445
|
+
:cloudformationAttribute: Arn
|
|
3446
|
+
'''
|
|
3447
|
+
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
3448
|
+
|
|
3449
|
+
@builtins.property
|
|
3450
|
+
@jsii.member(jsii_name="attrCreationTime")
|
|
3451
|
+
def attr_creation_time(self) -> builtins.str:
|
|
3452
|
+
'''
|
|
3453
|
+
:cloudformationAttribute: CreationTime
|
|
3454
|
+
'''
|
|
3455
|
+
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
3456
|
+
|
|
3457
|
+
@builtins.property
|
|
3458
|
+
@jsii.member(jsii_name="attrStatus")
|
|
3459
|
+
def attr_status(self) -> builtins.str:
|
|
3460
|
+
'''
|
|
3461
|
+
:cloudformationAttribute: Status
|
|
3462
|
+
'''
|
|
3463
|
+
return typing.cast(builtins.str, jsii.get(self, "attrStatus"))
|
|
3464
|
+
|
|
3465
|
+
@builtins.property
|
|
3466
|
+
@jsii.member(jsii_name="attrType")
|
|
3467
|
+
def attr_type(self) -> builtins.str:
|
|
3468
|
+
'''
|
|
3469
|
+
:cloudformationAttribute: Type
|
|
3470
|
+
'''
|
|
3471
|
+
return typing.cast(builtins.str, jsii.get(self, "attrType"))
|
|
3472
|
+
|
|
3473
|
+
@builtins.property
|
|
3474
|
+
@jsii.member(jsii_name="attrUuid")
|
|
3475
|
+
def attr_uuid(self) -> builtins.str:
|
|
3476
|
+
'''
|
|
3477
|
+
:cloudformationAttribute: Uuid
|
|
3478
|
+
'''
|
|
3479
|
+
return typing.cast(builtins.str, jsii.get(self, "attrUuid"))
|
|
3480
|
+
|
|
3481
|
+
@builtins.property
|
|
3482
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
3483
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
3484
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
3485
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
3486
|
+
|
|
3487
|
+
@builtins.property
|
|
3488
|
+
@jsii.member(jsii_name="cfnProperties")
|
|
3489
|
+
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
3490
|
+
return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
|
|
3491
|
+
|
|
3492
|
+
@builtins.property
|
|
3493
|
+
@jsii.member(jsii_name="versionName")
|
|
3494
|
+
def version_name(self) -> builtins.str:
|
|
3495
|
+
return typing.cast(builtins.str, jsii.get(self, "versionName"))
|
|
3496
|
+
|
|
3497
|
+
@version_name.setter
|
|
3498
|
+
def version_name(self, value: builtins.str) -> None:
|
|
3499
|
+
if __debug__:
|
|
3500
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4a9f5bdcc4a225102f171d30f4738ab832792497c08ecb206114ad57125adf01)
|
|
3501
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3502
|
+
jsii.set(self, "versionName", value) # pyright: ignore[reportArgumentType]
|
|
3503
|
+
|
|
3504
|
+
@builtins.property
|
|
3505
|
+
@jsii.member(jsii_name="workflowId")
|
|
3506
|
+
def workflow_id(self) -> builtins.str:
|
|
3507
|
+
return typing.cast(builtins.str, jsii.get(self, "workflowId"))
|
|
3508
|
+
|
|
3509
|
+
@workflow_id.setter
|
|
3510
|
+
def workflow_id(self, value: builtins.str) -> None:
|
|
3511
|
+
if __debug__:
|
|
3512
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5def0afb0cd8ab9471e48b541cd9dceaeb6826bfe7a8a24d0c36614c73b1a6d6)
|
|
3513
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3514
|
+
jsii.set(self, "workflowId", value) # pyright: ignore[reportArgumentType]
|
|
3515
|
+
|
|
3516
|
+
@builtins.property
|
|
3517
|
+
@jsii.member(jsii_name="accelerators")
|
|
3518
|
+
def accelerators(self) -> typing.Optional[builtins.str]:
|
|
3519
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "accelerators"))
|
|
3520
|
+
|
|
3521
|
+
@accelerators.setter
|
|
3522
|
+
def accelerators(self, value: typing.Optional[builtins.str]) -> None:
|
|
3523
|
+
if __debug__:
|
|
3524
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b69952a53a68976751566fbcf17774d0dfa2d7ede106cb440b751f76c7eb99ef)
|
|
3525
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3526
|
+
jsii.set(self, "accelerators", value) # pyright: ignore[reportArgumentType]
|
|
3527
|
+
|
|
3528
|
+
@builtins.property
|
|
3529
|
+
@jsii.member(jsii_name="definitionUri")
|
|
3530
|
+
def definition_uri(self) -> typing.Optional[builtins.str]:
|
|
3531
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "definitionUri"))
|
|
3532
|
+
|
|
3533
|
+
@definition_uri.setter
|
|
3534
|
+
def definition_uri(self, value: typing.Optional[builtins.str]) -> None:
|
|
3535
|
+
if __debug__:
|
|
3536
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978)
|
|
3537
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3538
|
+
jsii.set(self, "definitionUri", value) # pyright: ignore[reportArgumentType]
|
|
3539
|
+
|
|
3540
|
+
@builtins.property
|
|
3541
|
+
@jsii.member(jsii_name="description")
|
|
3542
|
+
def description(self) -> typing.Optional[builtins.str]:
|
|
3543
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
3544
|
+
|
|
3545
|
+
@description.setter
|
|
3546
|
+
def description(self, value: typing.Optional[builtins.str]) -> None:
|
|
3547
|
+
if __debug__:
|
|
3548
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d26e61de900859028fd4b5aff7eb7fefa87386da043d620b3407bc69ef3f950b)
|
|
3549
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3550
|
+
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
3551
|
+
|
|
3552
|
+
@builtins.property
|
|
3553
|
+
@jsii.member(jsii_name="engine")
|
|
3554
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
3555
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
3556
|
+
|
|
3557
|
+
@engine.setter
|
|
3558
|
+
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
3559
|
+
if __debug__:
|
|
3560
|
+
type_hints = typing.get_type_hints(_typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc)
|
|
2930
3561
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2931
3562
|
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
2932
3563
|
|
|
2933
3564
|
@builtins.property
|
|
2934
3565
|
@jsii.member(jsii_name="main")
|
|
2935
3566
|
def main(self) -> typing.Optional[builtins.str]:
|
|
2936
|
-
'''The path of the main definition file for the workflow.'''
|
|
2937
3567
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "main"))
|
|
2938
3568
|
|
|
2939
3569
|
@main.setter
|
|
2940
3570
|
def main(self, value: typing.Optional[builtins.str]) -> None:
|
|
2941
3571
|
if __debug__:
|
|
2942
|
-
type_hints = typing.get_type_hints(
|
|
3572
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bb201e46965fe4b385e0e52f84a505023c34c0c16c33aea7e75a09209c34d1af)
|
|
2943
3573
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2944
3574
|
jsii.set(self, "main", value) # pyright: ignore[reportArgumentType]
|
|
2945
3575
|
|
|
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
3576
|
@builtins.property
|
|
2960
3577
|
@jsii.member(jsii_name="parameterTemplate")
|
|
2961
3578
|
def parameter_template(
|
|
2962
3579
|
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"))
|
|
3580
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]]:
|
|
3581
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]], jsii.get(self, "parameterTemplate"))
|
|
2966
3582
|
|
|
2967
3583
|
@parameter_template.setter
|
|
2968
3584
|
def parameter_template(
|
|
2969
3585
|
self,
|
|
2970
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "
|
|
3586
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, "CfnWorkflowVersion.WorkflowParameterProperty"]]]],
|
|
2971
3587
|
) -> None:
|
|
2972
3588
|
if __debug__:
|
|
2973
|
-
type_hints = typing.get_type_hints(
|
|
3589
|
+
type_hints = typing.get_type_hints(_typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9)
|
|
2974
3590
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2975
3591
|
jsii.set(self, "parameterTemplate", value) # pyright: ignore[reportArgumentType]
|
|
2976
3592
|
|
|
2977
3593
|
@builtins.property
|
|
2978
3594
|
@jsii.member(jsii_name="storageCapacity")
|
|
2979
3595
|
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
3596
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2982
3597
|
|
|
2983
3598
|
@storage_capacity.setter
|
|
2984
3599
|
def storage_capacity(self, value: typing.Optional[jsii.Number]) -> None:
|
|
2985
3600
|
if __debug__:
|
|
2986
|
-
type_hints = typing.get_type_hints(
|
|
3601
|
+
type_hints = typing.get_type_hints(_typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7)
|
|
2987
3602
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2988
3603
|
jsii.set(self, "storageCapacity", value) # pyright: ignore[reportArgumentType]
|
|
2989
3604
|
|
|
2990
3605
|
@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"))
|
|
3606
|
+
@jsii.member(jsii_name="storageType")
|
|
3607
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3608
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "storageType"))
|
|
2995
3609
|
|
|
2996
|
-
@
|
|
2997
|
-
def
|
|
3610
|
+
@storage_type.setter
|
|
3611
|
+
def storage_type(self, value: typing.Optional[builtins.str]) -> None:
|
|
3612
|
+
if __debug__:
|
|
3613
|
+
type_hints = typing.get_type_hints(_typecheckingstub__50ce9715f4efa14e458d6207fae79f6b0ebc36a3bf74435e024116d9f8060ca2)
|
|
3614
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3615
|
+
jsii.set(self, "storageType", value) # pyright: ignore[reportArgumentType]
|
|
3616
|
+
|
|
3617
|
+
@builtins.property
|
|
3618
|
+
@jsii.member(jsii_name="tags")
|
|
3619
|
+
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3620
|
+
'''A map of resource tags.'''
|
|
3621
|
+
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
|
|
3622
|
+
|
|
3623
|
+
@tags.setter
|
|
3624
|
+
def tags(
|
|
2998
3625
|
self,
|
|
2999
3626
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3000
3627
|
) -> None:
|
|
3001
3628
|
if __debug__:
|
|
3002
|
-
type_hints = typing.get_type_hints(
|
|
3629
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8)
|
|
3003
3630
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3004
|
-
jsii.set(self, "
|
|
3631
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
3632
|
+
|
|
3633
|
+
@builtins.property
|
|
3634
|
+
@jsii.member(jsii_name="workflowBucketOwnerId")
|
|
3635
|
+
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
3636
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "workflowBucketOwnerId"))
|
|
3637
|
+
|
|
3638
|
+
@workflow_bucket_owner_id.setter
|
|
3639
|
+
def workflow_bucket_owner_id(self, value: typing.Optional[builtins.str]) -> None:
|
|
3640
|
+
if __debug__:
|
|
3641
|
+
type_hints = typing.get_type_hints(_typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220c18775d)
|
|
3642
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3643
|
+
jsii.set(self, "workflowBucketOwnerId", value) # pyright: ignore[reportArgumentType]
|
|
3005
3644
|
|
|
3006
3645
|
@jsii.data_type(
|
|
3007
|
-
jsii_type="aws-cdk-lib.aws_omics.
|
|
3646
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersion.WorkflowParameterProperty",
|
|
3008
3647
|
jsii_struct_bases=[],
|
|
3009
3648
|
name_mapping={"description": "description", "optional": "optional"},
|
|
3010
3649
|
)
|
|
@@ -3015,12 +3654,11 @@ class CfnWorkflow(
|
|
|
3015
3654
|
description: typing.Optional[builtins.str] = None,
|
|
3016
3655
|
optional: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3017
3656
|
) -> None:
|
|
3018
|
-
'''
|
|
3019
|
-
|
|
3020
|
-
:param
|
|
3021
|
-
:param optional: Whether the parameter is optional.
|
|
3657
|
+
'''
|
|
3658
|
+
:param description:
|
|
3659
|
+
:param optional:
|
|
3022
3660
|
|
|
3023
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-
|
|
3661
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html
|
|
3024
3662
|
:exampleMetadata: fixture=_generated
|
|
3025
3663
|
|
|
3026
3664
|
Example::
|
|
@@ -3029,13 +3667,13 @@ class CfnWorkflow(
|
|
|
3029
3667
|
# The values are placeholders you should change.
|
|
3030
3668
|
from aws_cdk import aws_omics as omics
|
|
3031
3669
|
|
|
3032
|
-
workflow_parameter_property = omics.
|
|
3670
|
+
workflow_parameter_property = omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3033
3671
|
description="description",
|
|
3034
3672
|
optional=False
|
|
3035
3673
|
)
|
|
3036
3674
|
'''
|
|
3037
3675
|
if __debug__:
|
|
3038
|
-
type_hints = typing.get_type_hints(
|
|
3676
|
+
type_hints = typing.get_type_hints(_typecheckingstub__3d434101b6df92e22ac3acf923cd7bb4105c1a82dad119b383839a4f14189485)
|
|
3039
3677
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3040
3678
|
check_type(argname="argument optional", value=optional, expected_type=type_hints["optional"])
|
|
3041
3679
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -3046,9 +3684,8 @@ class CfnWorkflow(
|
|
|
3046
3684
|
|
|
3047
3685
|
@builtins.property
|
|
3048
3686
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3049
|
-
'''
|
|
3050
|
-
|
|
3051
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-description
|
|
3687
|
+
'''
|
|
3688
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html#cfn-omics-workflowversion-workflowparameter-description
|
|
3052
3689
|
'''
|
|
3053
3690
|
result = self._values.get("description")
|
|
3054
3691
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -3057,9 +3694,8 @@ class CfnWorkflow(
|
|
|
3057
3694
|
def optional(
|
|
3058
3695
|
self,
|
|
3059
3696
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3060
|
-
'''
|
|
3061
|
-
|
|
3062
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-workflowparameter.html#cfn-omics-workflow-workflowparameter-optional
|
|
3697
|
+
'''
|
|
3698
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html#cfn-omics-workflowversion-workflowparameter-optional
|
|
3063
3699
|
'''
|
|
3064
3700
|
result = self._values.get("optional")
|
|
3065
3701
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
@@ -3077,47 +3713,56 @@ class CfnWorkflow(
|
|
|
3077
3713
|
|
|
3078
3714
|
|
|
3079
3715
|
@jsii.data_type(
|
|
3080
|
-
jsii_type="aws-cdk-lib.aws_omics.
|
|
3716
|
+
jsii_type="aws-cdk-lib.aws_omics.CfnWorkflowVersionProps",
|
|
3081
3717
|
jsii_struct_bases=[],
|
|
3082
3718
|
name_mapping={
|
|
3719
|
+
"version_name": "versionName",
|
|
3720
|
+
"workflow_id": "workflowId",
|
|
3083
3721
|
"accelerators": "accelerators",
|
|
3084
3722
|
"definition_uri": "definitionUri",
|
|
3085
3723
|
"description": "description",
|
|
3086
3724
|
"engine": "engine",
|
|
3087
3725
|
"main": "main",
|
|
3088
|
-
"name": "name",
|
|
3089
3726
|
"parameter_template": "parameterTemplate",
|
|
3090
3727
|
"storage_capacity": "storageCapacity",
|
|
3728
|
+
"storage_type": "storageType",
|
|
3091
3729
|
"tags": "tags",
|
|
3730
|
+
"workflow_bucket_owner_id": "workflowBucketOwnerId",
|
|
3092
3731
|
},
|
|
3093
3732
|
)
|
|
3094
|
-
class
|
|
3733
|
+
class CfnWorkflowVersionProps:
|
|
3095
3734
|
def __init__(
|
|
3096
3735
|
self,
|
|
3097
3736
|
*,
|
|
3737
|
+
version_name: builtins.str,
|
|
3738
|
+
workflow_id: builtins.str,
|
|
3098
3739
|
accelerators: typing.Optional[builtins.str] = None,
|
|
3099
3740
|
definition_uri: typing.Optional[builtins.str] = None,
|
|
3100
3741
|
description: typing.Optional[builtins.str] = None,
|
|
3101
3742
|
engine: typing.Optional[builtins.str] = None,
|
|
3102
3743
|
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,
|
|
3744
|
+
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
3745
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
3746
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3106
3747
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3748
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3107
3749
|
) -> None:
|
|
3108
|
-
'''Properties for defining a ``
|
|
3750
|
+
'''Properties for defining a ``CfnWorkflowVersion``.
|
|
3109
3751
|
|
|
3752
|
+
:param version_name:
|
|
3753
|
+
:param workflow_id:
|
|
3110
3754
|
:param accelerators:
|
|
3111
|
-
:param definition_uri:
|
|
3112
|
-
:param description:
|
|
3113
|
-
:param engine:
|
|
3114
|
-
:param main:
|
|
3115
|
-
:param
|
|
3116
|
-
:param
|
|
3117
|
-
:param
|
|
3118
|
-
:param tags:
|
|
3119
|
-
|
|
3120
|
-
|
|
3755
|
+
:param definition_uri:
|
|
3756
|
+
:param description:
|
|
3757
|
+
:param engine:
|
|
3758
|
+
:param main:
|
|
3759
|
+
:param parameter_template:
|
|
3760
|
+
:param storage_capacity:
|
|
3761
|
+
:param storage_type:
|
|
3762
|
+
:param tags: A map of resource tags.
|
|
3763
|
+
:param workflow_bucket_owner_id:
|
|
3764
|
+
|
|
3765
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html
|
|
3121
3766
|
:exampleMetadata: fixture=_generated
|
|
3122
3767
|
|
|
3123
3768
|
Example::
|
|
@@ -3126,37 +3771,48 @@ class CfnWorkflowProps:
|
|
|
3126
3771
|
# The values are placeholders you should change.
|
|
3127
3772
|
from aws_cdk import aws_omics as omics
|
|
3128
3773
|
|
|
3129
|
-
|
|
3774
|
+
cfn_workflow_version_props = omics.CfnWorkflowVersionProps(
|
|
3775
|
+
version_name="versionName",
|
|
3776
|
+
workflow_id="workflowId",
|
|
3777
|
+
|
|
3778
|
+
# the properties below are optional
|
|
3130
3779
|
accelerators="accelerators",
|
|
3131
3780
|
definition_uri="definitionUri",
|
|
3132
3781
|
description="description",
|
|
3133
3782
|
engine="engine",
|
|
3134
3783
|
main="main",
|
|
3135
|
-
name="name",
|
|
3136
3784
|
parameter_template={
|
|
3137
|
-
"parameter_template_key": omics.
|
|
3785
|
+
"parameter_template_key": omics.CfnWorkflowVersion.WorkflowParameterProperty(
|
|
3138
3786
|
description="description",
|
|
3139
3787
|
optional=False
|
|
3140
3788
|
)
|
|
3141
3789
|
},
|
|
3142
3790
|
storage_capacity=123,
|
|
3791
|
+
storage_type="storageType",
|
|
3143
3792
|
tags={
|
|
3144
3793
|
"tags_key": "tags"
|
|
3145
|
-
}
|
|
3794
|
+
},
|
|
3795
|
+
workflow_bucket_owner_id="workflowBucketOwnerId"
|
|
3146
3796
|
)
|
|
3147
3797
|
'''
|
|
3148
3798
|
if __debug__:
|
|
3149
|
-
type_hints = typing.get_type_hints(
|
|
3799
|
+
type_hints = typing.get_type_hints(_typecheckingstub__32259ddc7b7d888918efaf09deb63ba780f3721ec1da9ea606ed8100a4b9fb3e)
|
|
3800
|
+
check_type(argname="argument version_name", value=version_name, expected_type=type_hints["version_name"])
|
|
3801
|
+
check_type(argname="argument workflow_id", value=workflow_id, expected_type=type_hints["workflow_id"])
|
|
3150
3802
|
check_type(argname="argument accelerators", value=accelerators, expected_type=type_hints["accelerators"])
|
|
3151
3803
|
check_type(argname="argument definition_uri", value=definition_uri, expected_type=type_hints["definition_uri"])
|
|
3152
3804
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
3153
3805
|
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
3154
3806
|
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
3807
|
check_type(argname="argument parameter_template", value=parameter_template, expected_type=type_hints["parameter_template"])
|
|
3157
3808
|
check_type(argname="argument storage_capacity", value=storage_capacity, expected_type=type_hints["storage_capacity"])
|
|
3809
|
+
check_type(argname="argument storage_type", value=storage_type, expected_type=type_hints["storage_type"])
|
|
3158
3810
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3159
|
-
|
|
3811
|
+
check_type(argname="argument workflow_bucket_owner_id", value=workflow_bucket_owner_id, expected_type=type_hints["workflow_bucket_owner_id"])
|
|
3812
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3813
|
+
"version_name": version_name,
|
|
3814
|
+
"workflow_id": workflow_id,
|
|
3815
|
+
}
|
|
3160
3816
|
if accelerators is not None:
|
|
3161
3817
|
self._values["accelerators"] = accelerators
|
|
3162
3818
|
if definition_uri is not None:
|
|
@@ -3167,97 +3823,118 @@ class CfnWorkflowProps:
|
|
|
3167
3823
|
self._values["engine"] = engine
|
|
3168
3824
|
if main is not None:
|
|
3169
3825
|
self._values["main"] = main
|
|
3170
|
-
if name is not None:
|
|
3171
|
-
self._values["name"] = name
|
|
3172
3826
|
if parameter_template is not None:
|
|
3173
3827
|
self._values["parameter_template"] = parameter_template
|
|
3174
3828
|
if storage_capacity is not None:
|
|
3175
3829
|
self._values["storage_capacity"] = storage_capacity
|
|
3830
|
+
if storage_type is not None:
|
|
3831
|
+
self._values["storage_type"] = storage_type
|
|
3176
3832
|
if tags is not None:
|
|
3177
3833
|
self._values["tags"] = tags
|
|
3834
|
+
if workflow_bucket_owner_id is not None:
|
|
3835
|
+
self._values["workflow_bucket_owner_id"] = workflow_bucket_owner_id
|
|
3836
|
+
|
|
3837
|
+
@builtins.property
|
|
3838
|
+
def version_name(self) -> builtins.str:
|
|
3839
|
+
'''
|
|
3840
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-versionname
|
|
3841
|
+
'''
|
|
3842
|
+
result = self._values.get("version_name")
|
|
3843
|
+
assert result is not None, "Required property 'version_name' is missing"
|
|
3844
|
+
return typing.cast(builtins.str, result)
|
|
3845
|
+
|
|
3846
|
+
@builtins.property
|
|
3847
|
+
def workflow_id(self) -> builtins.str:
|
|
3848
|
+
'''
|
|
3849
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-workflowid
|
|
3850
|
+
'''
|
|
3851
|
+
result = self._values.get("workflow_id")
|
|
3852
|
+
assert result is not None, "Required property 'workflow_id' is missing"
|
|
3853
|
+
return typing.cast(builtins.str, result)
|
|
3178
3854
|
|
|
3179
3855
|
@builtins.property
|
|
3180
3856
|
def accelerators(self) -> typing.Optional[builtins.str]:
|
|
3181
3857
|
'''
|
|
3182
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-
|
|
3858
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-accelerators
|
|
3183
3859
|
'''
|
|
3184
3860
|
result = self._values.get("accelerators")
|
|
3185
3861
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3186
3862
|
|
|
3187
3863
|
@builtins.property
|
|
3188
3864
|
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
|
|
3865
|
+
'''
|
|
3866
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-definitionuri
|
|
3192
3867
|
'''
|
|
3193
3868
|
result = self._values.get("definition_uri")
|
|
3194
3869
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3195
3870
|
|
|
3196
3871
|
@builtins.property
|
|
3197
3872
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3198
|
-
'''
|
|
3199
|
-
|
|
3200
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-description
|
|
3873
|
+
'''
|
|
3874
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-description
|
|
3201
3875
|
'''
|
|
3202
3876
|
result = self._values.get("description")
|
|
3203
3877
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3204
3878
|
|
|
3205
3879
|
@builtins.property
|
|
3206
3880
|
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
|
|
3881
|
+
'''
|
|
3882
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-engine
|
|
3210
3883
|
'''
|
|
3211
3884
|
result = self._values.get("engine")
|
|
3212
3885
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3213
3886
|
|
|
3214
3887
|
@builtins.property
|
|
3215
3888
|
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
3889
|
'''
|
|
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
|
|
3890
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-main
|
|
3228
3891
|
'''
|
|
3229
|
-
result = self._values.get("
|
|
3892
|
+
result = self._values.get("main")
|
|
3230
3893
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3231
3894
|
|
|
3232
3895
|
@builtins.property
|
|
3233
3896
|
def parameter_template(
|
|
3234
3897
|
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
|
|
3898
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]]:
|
|
3899
|
+
'''
|
|
3900
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-parametertemplate
|
|
3239
3901
|
'''
|
|
3240
3902
|
result = self._values.get("parameter_template")
|
|
3241
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b,
|
|
3903
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]], result)
|
|
3242
3904
|
|
|
3243
3905
|
@builtins.property
|
|
3244
3906
|
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
|
|
3907
|
+
'''
|
|
3908
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-storagecapacity
|
|
3248
3909
|
'''
|
|
3249
3910
|
result = self._values.get("storage_capacity")
|
|
3250
3911
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
3251
3912
|
|
|
3913
|
+
@builtins.property
|
|
3914
|
+
def storage_type(self) -> typing.Optional[builtins.str]:
|
|
3915
|
+
'''
|
|
3916
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-storagetype
|
|
3917
|
+
'''
|
|
3918
|
+
result = self._values.get("storage_type")
|
|
3919
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3920
|
+
|
|
3252
3921
|
@builtins.property
|
|
3253
3922
|
def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
3254
|
-
'''
|
|
3923
|
+
'''A map of resource tags.
|
|
3255
3924
|
|
|
3256
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-
|
|
3925
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-tags
|
|
3257
3926
|
'''
|
|
3258
3927
|
result = self._values.get("tags")
|
|
3259
3928
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
|
3260
3929
|
|
|
3930
|
+
@builtins.property
|
|
3931
|
+
def workflow_bucket_owner_id(self) -> typing.Optional[builtins.str]:
|
|
3932
|
+
'''
|
|
3933
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-workflowbucketownerid
|
|
3934
|
+
'''
|
|
3935
|
+
result = self._values.get("workflow_bucket_owner_id")
|
|
3936
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3937
|
+
|
|
3261
3938
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3262
3939
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3263
3940
|
|
|
@@ -3265,7 +3942,7 @@ class CfnWorkflowProps:
|
|
|
3265
3942
|
return not (rhs == self)
|
|
3266
3943
|
|
|
3267
3944
|
def __repr__(self) -> str:
|
|
3268
|
-
return "
|
|
3945
|
+
return "CfnWorkflowVersionProps(%s)" % ", ".join(
|
|
3269
3946
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3270
3947
|
)
|
|
3271
3948
|
|
|
@@ -3283,6 +3960,8 @@ __all__ = [
|
|
|
3283
3960
|
"CfnVariantStoreProps",
|
|
3284
3961
|
"CfnWorkflow",
|
|
3285
3962
|
"CfnWorkflowProps",
|
|
3963
|
+
"CfnWorkflowVersion",
|
|
3964
|
+
"CfnWorkflowVersionProps",
|
|
3286
3965
|
]
|
|
3287
3966
|
|
|
3288
3967
|
publication.publish()
|
|
@@ -3739,6 +4418,7 @@ def _typecheckingstub__b2d05cb293836959a925b22dbe1861bc4457d2d510bd3a480ae858ea9
|
|
|
3739
4418
|
name: typing.Optional[builtins.str] = None,
|
|
3740
4419
|
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
4420
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4421
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3742
4422
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
3743
4423
|
) -> None:
|
|
3744
4424
|
"""Type checking stubs"""
|
|
@@ -3804,6 +4484,12 @@ def _typecheckingstub__37c3d929054386cb4ebdbc60c2c3558d7cd34bed65861db5661f96d5d
|
|
|
3804
4484
|
"""Type checking stubs"""
|
|
3805
4485
|
pass
|
|
3806
4486
|
|
|
4487
|
+
def _typecheckingstub__82b78c9fdaf5e3e15a75209f5d891cf1513f47077977c45c2d020ffe13e990ac(
|
|
4488
|
+
value: typing.Optional[builtins.str],
|
|
4489
|
+
) -> None:
|
|
4490
|
+
"""Type checking stubs"""
|
|
4491
|
+
pass
|
|
4492
|
+
|
|
3807
4493
|
def _typecheckingstub__651d8f1caf8b2c987665acfeae50e19a5626bb723832dae7067c423aab3ac2b5(
|
|
3808
4494
|
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
3809
4495
|
) -> None:
|
|
@@ -3828,7 +4514,138 @@ def _typecheckingstub__09bedca50200dd06a4bbe4bb6135e76dacff76287249f3d28b8f285f8
|
|
|
3828
4514
|
name: typing.Optional[builtins.str] = None,
|
|
3829
4515
|
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
4516
|
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4517
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
4518
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4519
|
+
) -> None:
|
|
4520
|
+
"""Type checking stubs"""
|
|
4521
|
+
pass
|
|
4522
|
+
|
|
4523
|
+
def _typecheckingstub__f9bbd83c3821b6d01e1b0445c2a66c0e7c312d81583ae6cf8dbe78c8d6a4bf99(
|
|
4524
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
4525
|
+
id: builtins.str,
|
|
4526
|
+
*,
|
|
4527
|
+
version_name: builtins.str,
|
|
4528
|
+
workflow_id: builtins.str,
|
|
4529
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
4530
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
4531
|
+
description: typing.Optional[builtins.str] = None,
|
|
4532
|
+
engine: typing.Optional[builtins.str] = None,
|
|
4533
|
+
main: typing.Optional[builtins.str] = None,
|
|
4534
|
+
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,
|
|
4535
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4536
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
4537
|
+
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4538
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
4539
|
+
) -> None:
|
|
4540
|
+
"""Type checking stubs"""
|
|
4541
|
+
pass
|
|
4542
|
+
|
|
4543
|
+
def _typecheckingstub__1a7de38e00c231b3afd92bbb59cad40657b334333096dde12413f391ade16867(
|
|
4544
|
+
inspector: _TreeInspector_488e0dd5,
|
|
4545
|
+
) -> None:
|
|
4546
|
+
"""Type checking stubs"""
|
|
4547
|
+
pass
|
|
4548
|
+
|
|
4549
|
+
def _typecheckingstub__e1461fce0dec6c9339e6bbc0df050886fb1f30852661c80911b28268bdee03c9(
|
|
4550
|
+
props: typing.Mapping[builtins.str, typing.Any],
|
|
4551
|
+
) -> None:
|
|
4552
|
+
"""Type checking stubs"""
|
|
4553
|
+
pass
|
|
4554
|
+
|
|
4555
|
+
def _typecheckingstub__4a9f5bdcc4a225102f171d30f4738ab832792497c08ecb206114ad57125adf01(
|
|
4556
|
+
value: builtins.str,
|
|
4557
|
+
) -> None:
|
|
4558
|
+
"""Type checking stubs"""
|
|
4559
|
+
pass
|
|
4560
|
+
|
|
4561
|
+
def _typecheckingstub__5def0afb0cd8ab9471e48b541cd9dceaeb6826bfe7a8a24d0c36614c73b1a6d6(
|
|
4562
|
+
value: builtins.str,
|
|
4563
|
+
) -> None:
|
|
4564
|
+
"""Type checking stubs"""
|
|
4565
|
+
pass
|
|
4566
|
+
|
|
4567
|
+
def _typecheckingstub__b69952a53a68976751566fbcf17774d0dfa2d7ede106cb440b751f76c7eb99ef(
|
|
4568
|
+
value: typing.Optional[builtins.str],
|
|
4569
|
+
) -> None:
|
|
4570
|
+
"""Type checking stubs"""
|
|
4571
|
+
pass
|
|
4572
|
+
|
|
4573
|
+
def _typecheckingstub__7a8ff1e5a2ba3fcf1c5fb306e96445a76ec1ac6872615b206206a2a173f64978(
|
|
4574
|
+
value: typing.Optional[builtins.str],
|
|
4575
|
+
) -> None:
|
|
4576
|
+
"""Type checking stubs"""
|
|
4577
|
+
pass
|
|
4578
|
+
|
|
4579
|
+
def _typecheckingstub__d26e61de900859028fd4b5aff7eb7fefa87386da043d620b3407bc69ef3f950b(
|
|
4580
|
+
value: typing.Optional[builtins.str],
|
|
4581
|
+
) -> None:
|
|
4582
|
+
"""Type checking stubs"""
|
|
4583
|
+
pass
|
|
4584
|
+
|
|
4585
|
+
def _typecheckingstub__4ade62566da0dd0e16cdb86d20bb176d8778e02a5223101deea2467f1ee7cadc(
|
|
4586
|
+
value: typing.Optional[builtins.str],
|
|
4587
|
+
) -> None:
|
|
4588
|
+
"""Type checking stubs"""
|
|
4589
|
+
pass
|
|
4590
|
+
|
|
4591
|
+
def _typecheckingstub__bb201e46965fe4b385e0e52f84a505023c34c0c16c33aea7e75a09209c34d1af(
|
|
4592
|
+
value: typing.Optional[builtins.str],
|
|
4593
|
+
) -> None:
|
|
4594
|
+
"""Type checking stubs"""
|
|
4595
|
+
pass
|
|
4596
|
+
|
|
4597
|
+
def _typecheckingstub__909f80095cd6043c196e37a387a0f1f32bfcddcd8f9a81c5e8f5ac8b4874faa9(
|
|
4598
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, typing.Union[_IResolvable_da3f097b, CfnWorkflowVersion.WorkflowParameterProperty]]]],
|
|
4599
|
+
) -> None:
|
|
4600
|
+
"""Type checking stubs"""
|
|
4601
|
+
pass
|
|
4602
|
+
|
|
4603
|
+
def _typecheckingstub__ba60096260fa288ca386a5b2841efb8fa9833ea893400efeba006766f392a7b7(
|
|
4604
|
+
value: typing.Optional[jsii.Number],
|
|
4605
|
+
) -> None:
|
|
4606
|
+
"""Type checking stubs"""
|
|
4607
|
+
pass
|
|
4608
|
+
|
|
4609
|
+
def _typecheckingstub__50ce9715f4efa14e458d6207fae79f6b0ebc36a3bf74435e024116d9f8060ca2(
|
|
4610
|
+
value: typing.Optional[builtins.str],
|
|
4611
|
+
) -> None:
|
|
4612
|
+
"""Type checking stubs"""
|
|
4613
|
+
pass
|
|
4614
|
+
|
|
4615
|
+
def _typecheckingstub__bfbcbf729952f991d2243244c21c373b5bf1a3947ed2973ab1664037cdf636f8(
|
|
4616
|
+
value: typing.Optional[typing.Mapping[builtins.str, builtins.str]],
|
|
4617
|
+
) -> None:
|
|
4618
|
+
"""Type checking stubs"""
|
|
4619
|
+
pass
|
|
4620
|
+
|
|
4621
|
+
def _typecheckingstub__bc6b06c168132bf54bf849b9d49774230af45a049e67f52bc48dd0220c18775d(
|
|
4622
|
+
value: typing.Optional[builtins.str],
|
|
4623
|
+
) -> None:
|
|
4624
|
+
"""Type checking stubs"""
|
|
4625
|
+
pass
|
|
4626
|
+
|
|
4627
|
+
def _typecheckingstub__3d434101b6df92e22ac3acf923cd7bb4105c1a82dad119b383839a4f14189485(
|
|
4628
|
+
*,
|
|
4629
|
+
description: typing.Optional[builtins.str] = None,
|
|
4630
|
+
optional: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4631
|
+
) -> None:
|
|
4632
|
+
"""Type checking stubs"""
|
|
4633
|
+
pass
|
|
4634
|
+
|
|
4635
|
+
def _typecheckingstub__32259ddc7b7d888918efaf09deb63ba780f3721ec1da9ea606ed8100a4b9fb3e(
|
|
4636
|
+
*,
|
|
4637
|
+
version_name: builtins.str,
|
|
4638
|
+
workflow_id: builtins.str,
|
|
4639
|
+
accelerators: typing.Optional[builtins.str] = None,
|
|
4640
|
+
definition_uri: typing.Optional[builtins.str] = None,
|
|
4641
|
+
description: typing.Optional[builtins.str] = None,
|
|
4642
|
+
engine: typing.Optional[builtins.str] = None,
|
|
4643
|
+
main: typing.Optional[builtins.str] = None,
|
|
4644
|
+
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,
|
|
4645
|
+
storage_capacity: typing.Optional[jsii.Number] = None,
|
|
4646
|
+
storage_type: typing.Optional[builtins.str] = None,
|
|
3831
4647
|
tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
4648
|
+
workflow_bucket_owner_id: typing.Optional[builtins.str] = None,
|
|
3832
4649
|
) -> None:
|
|
3833
4650
|
"""Type checking stubs"""
|
|
3834
4651
|
pass
|