Interface CfnWorkflowDefinition.WorkflowExportConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflowDefinition.WorkflowExportConfigProperty.Jsii$Proxy
Enclosing class:
CfnWorkflowDefinition

@Stability(Stable) public static interface CfnWorkflowDefinition.WorkflowExportConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.novaact.*;
 WorkflowExportConfigProperty workflowExportConfigProperty = WorkflowExportConfigProperty.builder()
         .s3BucketName("s3BucketName")
         // the properties below are optional
         .s3KeyPrefix("s3KeyPrefix")
         .build();
 

See Also: