Interface CfnDeliveryStream.DynamicPartitioningConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeliveryStream.DynamicPartitioningConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDeliveryStream
@Stability(Stable)
public static interface CfnDeliveryStream.DynamicPartitioningConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The
DynamicPartitioningConfiguration
property type specifies the configuration of the dynamic partitioning mechanism that creates targeted data sets from the streaming data by partitioning it based on partition keys.
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.*; DynamicPartitioningConfigurationProperty dynamicPartitioningConfigurationProperty = DynamicPartitioningConfigurationProperty.builder() .enabled(false) .retryOptions(RetryOptionsProperty.builder() .durationInSeconds(123) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnDeliveryStream.DynamicPartitioningConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Specifies whether dynamic partitioning is enabled for this Kinesis Data Firehose delivery stream. -
getRetryOptions
Specifies the retry behavior in case Kinesis Data Firehose is unable to deliver data to an Amazon S3 prefix. -
builder
@Stability(Stable) static CfnDeliveryStream.DynamicPartitioningConfigurationProperty.Builder builder()
-