Interface CfnWorkflowDefinitionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowDefinitionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:15.419Z")
@Stability(Stable)
public interface CfnWorkflowDefinitionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnWorkflowDefinitionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.novaact.*;
CfnWorkflowDefinitionMixinProps cfnWorkflowDefinitionMixinProps = CfnWorkflowDefinitionMixinProps.builder()
.description("description")
.exportConfig(WorkflowExportConfigProperty.builder()
.s3BucketName("s3BucketName")
.s3KeyPrefix("s3KeyPrefix")
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowDefinitionMixinPropsstatic final classAn implementation forCfnWorkflowDefinitionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn optional description of the workflow definition's purpose and functionality.default ObjectConfiguration settings for exporting workflow execution data and logs to Amazon S3.default StringgetName()The name of the workflow definition.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
IResolvableorCfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty- See Also:
-
getName
The name of the workflow definition.Must be unique within your account and region.
- See Also:
-
builder
-