Interface FirehoseDeliveryStreamProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FirehoseDeliveryStreamProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:42.030Z")
@Stability(Stable)
public interface FirehoseDeliveryStreamProps
extends software.amazon.jsii.JsiiSerializable
Customize the Amazon Data Firehose Stream Event Target.
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.events.*;
import software.amazon.awscdk.services.events.targets.*;
RuleTargetInput ruleTargetInput;
FirehoseDeliveryStreamProps firehoseDeliveryStreamProps = FirehoseDeliveryStreamProps.builder()
.message(ruleTargetInput)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFirehoseDeliveryStreamPropsstatic final classAn implementation forFirehoseDeliveryStreamProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default RuleTargetInputThe message to send to the stream.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessage
The message to send to the stream.Must be a valid JSON text passed to the target stream.
Default: - the entire Event Bridge event
-
builder
-