Interface CommonDestinationS3Props
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
DestinationS3BackupProps
,S3BucketProps
- All Known Implementing Classes:
CommonDestinationS3Props.Jsii$Proxy
,DestinationS3BackupProps.Jsii$Proxy
,S3BucketProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-10T21:57:02.087Z")
@Stability(Experimental)
public interface CommonDestinationS3Props
extends software.amazon.jsii.JsiiSerializable
(experimental) Common properties for defining a backup, intermediary, or final S3 destination for a Kinesis Data Firehose delivery stream.
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.kinesisfirehose.destinations.alpha.*; import software.amazon.awscdk.*; import software.amazon.awscdk.services.kms.*; Compression compression; Key key; Size size; CommonDestinationS3Props commonDestinationS3Props = CommonDestinationS3Props.builder() .bufferingInterval(Duration.minutes(30)) .bufferingSize(size) .compression(compression) .dataOutputPrefix("dataOutputPrefix") .encryptionKey(key) .errorOutputPrefix("errorOutputPrefix") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCommonDestinationS3Props
static final class
An implementation forCommonDestinationS3Props
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Duration
(experimental) The length of time that Firehose buffers incoming data before delivering it to the S3 bucket.default Size
(experimental) The size of the buffer that Kinesis Data Firehose uses for incoming data before delivering it to the S3 bucket.default Compression
(experimental) The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket.default String
(experimental) A prefix that Kinesis Data Firehose evaluates and adds to records before writing them to S3.default IKey
(experimental) The AWS KMS key used to encrypt the data that it delivers to your Amazon S3 bucket.default String
(experimental) A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBufferingInterval
(experimental) The length of time that Firehose buffers incoming data before delivering it to the S3 bucket.Minimum: Duration.seconds(0) Maximum: Duration.seconds(900)
Default: Duration.seconds(300)
-
getBufferingSize
(experimental) The size of the buffer that Kinesis Data Firehose uses for incoming data before delivering it to the S3 bucket.Minimum: Size.mebibytes(1) Maximum: Size.mebibytes(128)
Default: Size.mebibytes(5)
-
getCompression
(experimental) The type of compression that Kinesis Data Firehose uses to compress the data that it delivers to the Amazon S3 bucket.The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.
Default: - UNCOMPRESSED
-
getDataOutputPrefix
(experimental) A prefix that Kinesis Data Firehose evaluates and adds to records before writing them to S3.This prefix appears immediately following the bucket name.
Default: "YYYY/MM/DD/HH"
- See Also:
-
getEncryptionKey
(experimental) The AWS KMS key used to encrypt the data that it delivers to your Amazon S3 bucket.Default: - Data is not encrypted.
-
getErrorOutputPrefix
(experimental) A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3.This prefix appears immediately following the bucket name.
Default: "YYYY/MM/DD/HH"
- See Also:
-
builder
- Returns:
- a
CommonDestinationS3Props.Builder
ofCommonDestinationS3Props
-