interface CfnWorkflowDefinitionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NovaAct.CfnWorkflowDefinitionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnovaact#CfnWorkflowDefinitionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.novaact.CfnWorkflowDefinitionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_novaact.CfnWorkflowDefinitionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_novaact » CfnWorkflowDefinitionMixinProps |
Properties for CfnWorkflowDefinitionPropsMixin.
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/cfn-property-mixins';
const cfnWorkflowDefinitionMixinProps: novaact.CfnWorkflowDefinitionMixinProps = {
description: 'description',
exportConfig: {
s3BucketName: 's3BucketName',
s3KeyPrefix: 's3KeyPrefix',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | string | The name of the workflow definition. |
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.
name?
Type:
string
(optional)
The name of the workflow definition.
Must be unique within your account and region.

.NET
Go
Java
Python
TypeScript