Interface DataProcessorBindOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
DataProcessorBindOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-23T18:58:21.355Z") @Stability(Stable) public interface DataProcessorBindOptions extends software.amazon.jsii.JsiiSerializable
Options when binding a DataProcessor to 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.iam.*;
 import software.amazon.awscdk.services.kinesisfirehose.*;
 Role role;
 DataProcessorBindOptions dataProcessorBindOptions = DataProcessorBindOptions.builder()
         .role(role)
         // the properties below are optional
         .dynamicPartitioningEnabled(false)
         .prefix("prefix")
         .build();
 
  • Method Details

    • getRole

      @Stability(Stable) @NotNull IRole getRole()
      The IAM role assumed by Amazon Data Firehose to write to the destination that this DataProcessor will bind to.
    • getDynamicPartitioningEnabled

      @Stability(Stable) @Nullable default Boolean getDynamicPartitioningEnabled()
      Whether the dynamic partitioning is enabled.

      Default: false

    • getPrefix

      @Stability(Stable) @Nullable default String getPrefix()
      S3 bucket prefix.

      Default: - No prefix

    • builder

      @Stability(Stable) static DataProcessorBindOptions.Builder builder()
      Returns:
      a DataProcessorBindOptions.Builder of DataProcessorBindOptions