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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowDefinition.WorkflowExportConfigPropertystatic final classAn implementation forCfnWorkflowDefinition.WorkflowExportConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3BucketName
The name of the Amazon S3 bucket for exporting workflow data.- See Also:
-
getS3KeyPrefix
An optional prefix for Amazon S3 object keys to organize exported data.- See Also:
-
builder
-