cloudshift.awscdk.dsl.services.appflow.CfnFlowS3DestinationPropertiesPropertyDsl.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package cloudshift.awscdk.dsl.services.appflow
import cloudshift.awscdk.common.CdkDslMarker
import kotlin.String
import software.amazon.awscdk.IResolvable
import software.amazon.awscdk.services.appflow.CfnFlow
/**
* The properties that are applied when Amazon S3 is used as a destination.
*
* 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.appflow.*;
* S3DestinationPropertiesProperty s3DestinationPropertiesProperty =
* S3DestinationPropertiesProperty.builder()
* .bucketName("bucketName")
* // the properties below are optional
* .bucketPrefix("bucketPrefix")
* .s3OutputFormatConfig(S3OutputFormatConfigProperty.builder()
* .aggregationConfig(AggregationConfigProperty.builder()
* .aggregationType("aggregationType")
* .targetFileSize(123)
* .build())
* .fileType("fileType")
* .prefixConfig(PrefixConfigProperty.builder()
* .pathPrefixHierarchy(List.of("pathPrefixHierarchy"))
* .prefixFormat("prefixFormat")
* .prefixType("prefixType")
* .build())
* .preserveSourceDataTyping(false)
* .build())
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-flow-s3destinationproperties.html)
*/
@CdkDslMarker
public class CfnFlowS3DestinationPropertiesPropertyDsl {
private val cdkBuilder: CfnFlow.S3DestinationPropertiesProperty.Builder =
CfnFlow.S3DestinationPropertiesProperty.builder()
/**
* @param bucketName The Amazon S3 bucket name in which Amazon AppFlow places the transferred
* data.
*/
public fun bucketName(bucketName: String) {
cdkBuilder.bucketName(bucketName)
}
/**
* @param bucketPrefix The object key for the destination bucket in which Amazon AppFlow places
* the files.
*/
public fun bucketPrefix(bucketPrefix: String) {
cdkBuilder.bucketPrefix(bucketPrefix)
}
/**
* @param s3OutputFormatConfig The configuration that determines how Amazon AppFlow should format
* the flow output data when Amazon S3 is used as the destination.
*/
public fun s3OutputFormatConfig(s3OutputFormatConfig: IResolvable) {
cdkBuilder.s3OutputFormatConfig(s3OutputFormatConfig)
}
/**
* @param s3OutputFormatConfig The configuration that determines how Amazon AppFlow should format
* the flow output data when Amazon S3 is used as the destination.
*/
public fun s3OutputFormatConfig(s3OutputFormatConfig: CfnFlow.S3OutputFormatConfigProperty) {
cdkBuilder.s3OutputFormatConfig(s3OutputFormatConfig)
}
public fun build(): CfnFlow.S3DestinationPropertiesProperty = cdkBuilder.build()
}