Interface CfnWorkflowDefinitionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowDefinitionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:31:59.844Z")
@Stability(Stable)
public interface CfnWorkflowDefinitionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWorkflowDefinition.
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.novaact.*;
CfnWorkflowDefinitionProps cfnWorkflowDefinitionProps = CfnWorkflowDefinitionProps.builder()
.name("name")
// the properties below are optional
.description("description")
.exportConfig(WorkflowExportConfigProperty.builder()
.s3BucketName("s3BucketName")
// the properties below are optional
.s3KeyPrefix("s3KeyPrefix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowDefinitionPropsstatic final classAn implementation forCfnWorkflowDefinitionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the workflow definition.Must be unique within your account and region.
- See Also:
-
getDescription
An optional description of the workflow definition's purpose and functionality.- See Also:
-
getExportConfig
Configuration settings for exporting workflow execution data and logs to Amazon S3.Returns union: either
IResolvableorCfnWorkflowDefinition.WorkflowExportConfigProperty- See Also:
-
builder
- Returns:
- a
CfnWorkflowDefinitionProps.BuilderofCfnWorkflowDefinitionProps
-