Class CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty
Configuration settings for exporting workflow execution data and logs to Amazon S3.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.NovaAct
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty : CfnWorkflowDefinitionPropsMixin.IWorkflowExportConfigProperty
Syntax (vb)
Public Class CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty Implements CfnWorkflowDefinitionPropsMixin.IWorkflowExportConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.NovaAct;
var workflowExportConfigProperty = new WorkflowExportConfigProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
};
Synopsis
Constructors
| WorkflowExportConfigProperty() | Configuration settings for exporting workflow execution data and logs to Amazon S3. |
Properties
| S3BucketName | The name of the Amazon S3 bucket for exporting workflow data. |
| S3KeyPrefix | An optional prefix for Amazon S3 object keys to organize exported data. |
Constructors
WorkflowExportConfigProperty()
Configuration settings for exporting workflow execution data and logs to Amazon S3.
public WorkflowExportConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.NovaAct;
var workflowExportConfigProperty = new WorkflowExportConfigProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
};
Properties
S3BucketName
The name of the Amazon S3 bucket for exporting workflow data.
public string? S3BucketName { get; set; }
Property Value
Remarks
S3KeyPrefix
An optional prefix for Amazon S3 object keys to organize exported data.
public string? S3KeyPrefix { get; set; }