Class FirehoseDeliveryDestination
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.logs.CfnDeliveryDestination
software.amazon.awscdk.mixins.preview.services.logs.FirehoseDeliveryDestination
- All Implemented Interfaces:
IInspectable,IEnvironmentAware,IDeliveryDestinationRef,ITaggableV2,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-02T12:05:27.410Z")
@Stability(Experimental)
public class FirehoseDeliveryDestination
extends CfnDeliveryDestination
(experimental) Firehose delivery destination for CloudWatch Logs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.logs.*;
import software.amazon.awscdk.interfaces.kinesisfirehose.*;
IDeliveryStreamRef deliveryStreamRef;
FirehoseDeliveryDestination firehoseDeliveryDestination = FirehoseDeliveryDestination.Builder.create(this, "MyFirehoseDeliveryDestination")
.deliveryStream(deliveryStreamRef)
// the properties below are optional
.outputFormat("outputFormat")
.sourceAccountId("sourceAccountId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class(experimental) A fluent builder forFirehoseDeliveryDestination.Nested classes/interfaces inherited from class software.amazon.awscdk.services.logs.CfnDeliveryDestination
CfnDeliveryDestination.DestinationPolicyPropertyNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.logs.IDeliveryDestinationRef
IDeliveryDestinationRef.Jsii$Default, IDeliveryDestinationRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy -
Field Summary
Fields inherited from class software.amazon.awscdk.services.logs.CfnDeliveryDestination
CFN_RESOURCE_TYPE_NAME -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedFirehoseDeliveryDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedFirehoseDeliveryDestination(software.amazon.jsii.JsiiObjectRef objRef) FirehoseDeliveryDestination(software.constructs.Construct scope, String id, FirehoseDeliveryDestinationProps props) -
Method Summary
Methods inherited from class software.amazon.awscdk.services.logs.CfnDeliveryDestination
arnForDeliveryDestination, fromDeliveryDestinationArn, fromDeliveryDestinationName, getAttrArn, getCdkTagManager, getCfnProperties, getDeliveryDestinationPolicy, getDeliveryDestinationRef, getDeliveryDestinationType, getDestinationResourceArn, getName, getOutputFormat, getTags, inspect, isCfnDeliveryDestination, renderProperties, setDeliveryDestinationPolicy, setDeliveryDestinationPolicy, setDeliveryDestinationType, setDestinationResourceArn, setName, setOutputFormat, setTagsMethods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId, withMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNode, withMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
FirehoseDeliveryDestination
protected FirehoseDeliveryDestination(software.amazon.jsii.JsiiObjectRef objRef) -
FirehoseDeliveryDestination
protected FirehoseDeliveryDestination(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FirehoseDeliveryDestination
@Stability(Experimental) public FirehoseDeliveryDestination(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FirehoseDeliveryDestinationProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-