Interface CommonDestinationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
S3BucketProps
All Known Implementing Classes:
CommonDestinationProps.Jsii$Proxy, S3BucketProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-10-31T19:13:08.257Z") @Stability(Experimental) public interface CommonDestinationProps extends software.amazon.jsii.JsiiSerializable
(experimental) Generic properties for defining a delivery stream 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.kinesisfirehose.alpha.*;
 import software.amazon.awscdk.services.kinesisfirehose.destinations.alpha.*;
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.iam.*;
 import software.amazon.awscdk.services.kms.*;
 import software.amazon.awscdk.services.s3.*;
 Bucket bucket;
 Compression compression;
 IDataProcessor dataProcessor;
 Key key;
 ILoggingConfig loggingConfig;
 Role role;
 Size size;
 CommonDestinationProps commonDestinationProps = CommonDestinationProps.builder()
         .loggingConfig(loggingConfig)
         .processor(dataProcessor)
         .role(role)
         .s3Backup(DestinationS3BackupProps.builder()
                 .bucket(bucket)
                 .bufferingInterval(Duration.minutes(30))
                 .bufferingSize(size)
                 .compression(compression)
                 .dataOutputPrefix("dataOutputPrefix")
                 .encryptionKey(key)
                 .errorOutputPrefix("errorOutputPrefix")
                 .loggingConfig(loggingConfig)
                 .mode(BackupMode.ALL)
                 .build())
         .build();
 
  • Method Details

    • getLoggingConfig

      @Stability(Experimental) @Nullable default ILoggingConfig getLoggingConfig()
      (experimental) Configuration that determines whether to log errors during data transformation or delivery failures, and specifies the CloudWatch log group for storing error logs.

      Default: - errors will be logged and a log group will be created for you.

    • getProcessor

      @Stability(Experimental) @Nullable default IDataProcessor getProcessor()
      (experimental) The data transformation that should be performed on the data before writing to the destination.

      Default: - no data transformation will occur.

    • getRole

      @Stability(Experimental) @Nullable default IRole getRole()
      (experimental) The IAM role associated with this destination.

      Assumed by Kinesis Data Firehose to invoke processors and write to destinations

      Default: - a role will be created with default permissions.

    • getS3Backup

      @Stability(Experimental) @Nullable default DestinationS3BackupProps getS3Backup()
      (experimental) The configuration for backing up source records to S3.

      Default: - source records will not be backed up to S3.

    • builder

      @Stability(Experimental) static CommonDestinationProps.Builder builder()
      Returns:
      a CommonDestinationProps.Builder of CommonDestinationProps