Class CfnFlow.UpsolverDestinationPropertiesProperty
The properties that are applied when Upsolver is used as a destination.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppFlow
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFlow.UpsolverDestinationPropertiesProperty : CfnFlow.IUpsolverDestinationPropertiesPropertySyntax (vb)
Public Class CfnFlow.UpsolverDestinationPropertiesProperty Implements CfnFlow.IUpsolverDestinationPropertiesPropertyRemarks
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.AWS.AppFlow;
             var upsolverDestinationPropertiesProperty = new UpsolverDestinationPropertiesProperty {
                 BucketName = "bucketName",
                 S3OutputFormatConfig = new UpsolverS3OutputFormatConfigProperty {
                     PrefixConfig = new PrefixConfigProperty {
                         PathPrefixHierarchy = new [] { "pathPrefixHierarchy" },
                         PrefixFormat = "prefixFormat",
                         PrefixType = "prefixType"
                     },
                     // the properties below are optional
                     AggregationConfig = new AggregationConfigProperty {
                         AggregationType = "aggregationType",
                         TargetFileSize = 123
                     },
                     FileType = "fileType"
                 },
                 // the properties below are optional
                 BucketPrefix = "bucketPrefix"
             };Synopsis
Constructors
| UpsolverDestinationPropertiesProperty() | The properties that are applied when Upsolver is used as a destination. | 
Properties
| BucketName | The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data. | 
| BucketPrefix | The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files. | 
| S3OutputFormatConfig | The configuration that determines how data is formatted when Upsolver is used as the flow destination. | 
Constructors
UpsolverDestinationPropertiesProperty()
The properties that are applied when Upsolver is used as a destination.
public UpsolverDestinationPropertiesProperty()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.AWS.AppFlow;
             var upsolverDestinationPropertiesProperty = new UpsolverDestinationPropertiesProperty {
                 BucketName = "bucketName",
                 S3OutputFormatConfig = new UpsolverS3OutputFormatConfigProperty {
                     PrefixConfig = new PrefixConfigProperty {
                         PathPrefixHierarchy = new [] { "pathPrefixHierarchy" },
                         PrefixFormat = "prefixFormat",
                         PrefixType = "prefixType"
                     },
                     // the properties below are optional
                     AggregationConfig = new AggregationConfigProperty {
                         AggregationType = "aggregationType",
                         TargetFileSize = 123
                     },
                     FileType = "fileType"
                 },
                 // the properties below are optional
                 BucketPrefix = "bucketPrefix"
             };Properties
BucketName
The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.
public string BucketName { get; set; }Property Value
Remarks
BucketPrefix
The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.
public string? BucketPrefix { get; set; }Property Value
Remarks
S3OutputFormatConfig
The configuration that determines how data is formatted when Upsolver is used as the flow destination.
public object S3OutputFormatConfig { get; set; }