@@ -139,6 +139,30 @@ class VariantStore(AWSObject):
139139 }
140140
141141
142+ class SourceReference (AWSProperty ):
143+ """
144+ `SourceReference <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html>`__
145+ """
146+
147+ props : PropsDictType = {
148+ "type" : (str , False ),
149+ "value" : (str , False ),
150+ }
151+
152+
153+ class DefinitionRepository (AWSProperty ):
154+ """
155+ `DefinitionRepository <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html>`__
156+ """
157+
158+ props : PropsDictType = {
159+ "connectionArn" : (str , False ),
160+ "excludeFilePatterns" : ([str ], False ),
161+ "fullRepositoryId" : (str , False ),
162+ "sourceReference" : (SourceReference , False ),
163+ }
164+
165+
142166class WorkflowParameter (AWSProperty ):
143167 """
144168 `WorkflowParameter <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-workflowparameter.html>`__
@@ -159,15 +183,21 @@ class Workflow(AWSObject):
159183
160184 props : PropsDictType = {
161185 "Accelerators" : (str , False ),
186+ "DefinitionRepository" : (DefinitionRepository , False ),
162187 "DefinitionUri" : (str , False ),
163188 "Description" : (str , False ),
164189 "Engine" : (str , False ),
165190 "Main" : (str , False ),
166191 "Name" : (str , False ),
167192 "ParameterTemplate" : (dict , False ),
193+ "ParameterTemplatePath" : (str , False ),
168194 "StorageCapacity" : (double , False ),
169195 "StorageType" : (str , False ),
170196 "Tags" : (dict , False ),
197+ "WorkflowBucketOwnerId" : (str , False ),
198+ "readmeMarkdown" : (str , False ),
199+ "readmePath" : (str , False ),
200+ "readmeUri" : (str , False ),
171201 }
172202
173203
0 commit comments