Interface FirehoseDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FirehoseDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-19T12:03:57.383Z")
@Stability(Stable)
public interface FirehoseDestinationProps
extends software.amazon.jsii.JsiiSerializable
Customize the Amazon Data Firehose Logs 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.logs.destinations.*;
Role role;
FirehoseDestinationProps firehoseDestinationProps = FirehoseDestinationProps.builder()
.role(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFirehoseDestinationPropsstatic final classAn implementation forFirehoseDestinationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRole
The role to assume to write log events to the destination.Default: - A new Role is created
-
builder
- Returns:
- a
FirehoseDestinationProps.BuilderofFirehoseDestinationProps
-