interface WorkflowExportConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NovaAct.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnovaact#CfnWorkflowDefinitionPropsMixin_WorkflowExportConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.novaact.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_novaact.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_novaact » CfnWorkflowDefinitionPropsMixin » WorkflowExportConfigProperty |
Configuration settings for exporting workflow execution data and logs to Amazon S3.
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 workflowExportConfigProperty: novaact.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty = {
s3BucketName: 's3BucketName',
s3KeyPrefix: 's3KeyPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The name of the Amazon S3 bucket for exporting workflow data. |
| s3 | string | An optional prefix for Amazon S3 object keys to organize exported data. |
s3BucketName?
Type:
string
(optional)
The name of the Amazon S3 bucket for exporting workflow data.
s3KeyPrefix?
Type:
string
(optional)
An optional prefix for Amazon S3 object keys to organize exported data.

.NET
Go
Java
Python
TypeScript