Interface CfnWorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-02T11:25:36.586Z")
@Stability(Stable)
public interface CfnWorkflowProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWorkflow
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.omics.*; CfnWorkflowProps cfnWorkflowProps = CfnWorkflowProps.builder() .accelerators("accelerators") .definitionRepository(DefinitionRepositoryProperty.builder() .connectionArn("connectionArn") .excludeFilePatterns(List.of("excludeFilePatterns")) .fullRepositoryId("fullRepositoryId") .sourceReference(SourceReferenceProperty.builder() .type("type") .value("value") .build()) .build()) .definitionUri("definitionUri") .description("description") .engine("engine") .main("main") .name("name") .parameterTemplate(Map.of( "parameterTemplateKey", WorkflowParameterProperty.builder() .description("description") .optional(false) .build())) .parameterTemplatePath("parameterTemplatePath") .readmeMarkdown("readmeMarkdown") .readmePath("readmePath") .readmeUri("readmeUri") .storageCapacity(123) .storageType("storageType") .tags(Map.of( "tagsKey", "tags")) .workflowBucketOwnerId("workflowBucketOwnerId") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflowProps
static final class
An implementation forCfnWorkflowProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkflowProps.Builder
builder()
default String
default Object
Contains information about a source code repository that hosts the workflow definition files.default String
The URI of a definition for the workflow.default String
The parameter's description.default String
An engine for the workflow.default String
getMain()
The path of the main definition file for the workflow.default String
getName()
The workflow's name.default Object
The workflow's parameter template.default String
Path to the primary workflow parameter template JSON file inside the repository.default String
The markdown content for the workflow's README file.default String
The path to the workflow README markdown file within the repository.default String
The S3 URI of the README file for the workflow.default Number
The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.default String
getTags()
Tags for the workflow.default String
Optional workflow bucket owner ID to verify the workflow bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccelerators
- See Also:
-
getDefinitionRepository
Contains information about a source code repository that hosts the workflow definition files.- See Also:
-
getDefinitionUri
The URI of a definition for the workflow.- See Also:
-
getDescription
The parameter's description.- See Also:
-
getEngine
An engine for the workflow.- See Also:
-
getMain
The path of the main definition file for the workflow.- See Also:
-
getName
The workflow's name.- See Also:
-
getParameterTemplate
The workflow's parameter template.- See Also:
-
getParameterTemplatePath
Path to the primary workflow parameter template JSON file inside the repository.- See Also:
-
getReadmeMarkdown
The markdown content for the workflow's README file.This provides documentation and usage information for users of the workflow.
- See Also:
-
getReadmePath
The path to the workflow README markdown file within the repository.This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
- See Also:
-
getReadmeUri
The S3 URI of the README file for the workflow.This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
- See Also:
-
getStorageCapacity
The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.The
storageCapacity
can be overwritten at run time. The storage capacity is not required for runs with aDYNAMIC
storage type.- See Also:
-
getStorageType
- See Also:
-
getTags
Tags for the workflow.- See Also:
-
getWorkflowBucketOwnerId
Optional workflow bucket owner ID to verify the workflow bucket.- See Also:
-
builder
- Returns:
- a
CfnWorkflowProps.Builder
ofCfnWorkflowProps
-