Interface FirehoseDestinationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FirehoseDestinationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:55.449Z")
@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
-