interface CfnWorkflowDefinitionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NovaAct.CfnWorkflowDefinitionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnovaact#CfnWorkflowDefinitionProps |
Java | software.amazon.awscdk.services.novaact.CfnWorkflowDefinitionProps |
Python | aws_cdk.aws_novaact.CfnWorkflowDefinitionProps |
TypeScript | aws-cdk-lib » aws_novaact » CfnWorkflowDefinitionProps |
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 { aws_novaact as novaact } from 'aws-cdk-lib';
const cfnWorkflowDefinitionProps: novaact.CfnWorkflowDefinitionProps = {
name: 'name',
// the properties below are optional
description: 'description',
exportConfig: {
s3BucketName: 's3BucketName',
// the properties below are optional
s3KeyPrefix: 's3KeyPrefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the workflow definition. |
| description? | string | An optional description of the workflow definition's purpose and functionality. |
| export | IResolvable | Workflow | Configuration settings for exporting workflow execution data and logs to Amazon S3. |
name
Type:
string
The name of the workflow definition.
Must be unique within your account and region.
description?
Type:
string
(optional)
An optional description of the workflow definition's purpose and functionality.
exportConfig?
Type:
IResolvable | Workflow
(optional)
Configuration settings for exporting workflow execution data and logs to Amazon S3.

.NET
Go
Java
Python
TypeScript