Class DeliveryStream
- All Implemented Interfaces:
IConstruct
,IDependable
,IResource
,IConnectable
,IGrantable
,IDeliveryStream
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
Example:
Bucket bucket; // Provide a Lambda function that will transform records before delivery, with custom // buffering and retry configuration Function lambdaFunction = Function.Builder.create(this, "Processor") .runtime(Runtime.NODEJS_14_X) .handler("index.handler") .code(Code.fromAsset(join(__dirname, "process-records"))) .build(); LambdaFunctionProcessor lambdaProcessor = LambdaFunctionProcessor.Builder.create(lambdaFunction) .bufferInterval(Duration.minutes(5)) .bufferSize(Size.mebibytes(5)) .retries(5) .build(); S3Bucket s3Destination = S3Bucket.Builder.create(bucket) .processor(lambdaProcessor) .build(); DeliveryStream.Builder.create(this, "Delivery Stream") .destinations(List.of(s3Destination)) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forDeliveryStream
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.kinesisfirehose.IDeliveryStream
IDeliveryStream.Jsii$Default, IDeliveryStream.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
DeliveryStream
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
DeliveryStream
(software.amazon.jsii.JsiiObjectRef objRef) DeliveryStream
(software.constructs.Construct scope, String id, DeliveryStreamProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic IDeliveryStream
fromDeliveryStreamArn
(software.constructs.Construct scope, String id, String deliveryStreamArn) (experimental) Import an existing delivery stream from its ARN.static IDeliveryStream
fromDeliveryStreamAttributes
(software.constructs.Construct scope, String id, DeliveryStreamAttributes attrs) (experimental) Import an existing delivery stream from its attributes.static IDeliveryStream
fromDeliveryStreamName
(software.constructs.Construct scope, String id, String deliveryStreamName) (experimental) Import an existing delivery stream from its name.(experimental) Network connections between Kinesis Data Firehose and other resources, i.e.(experimental) The ARN of the delivery stream.(experimental) The name of the delivery stream.(experimental) The principal to grant permissions to.grant
(IGrantable grantee, @NotNull String... actions) (experimental) Grant thegrantee
identity permissions to performactions
.grantPutRecords
(IGrantable grantee) (experimental) Grant thegrantee
identity permissions to performfirehose:PutRecord
andfirehose:PutRecordBatch
actions on this delivery stream.(experimental) Return the given named metric for this delivery stream.metric
(String metricName, MetricOptions props) (experimental) Return the given named metric for this delivery stream.(experimental) Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.(experimental) Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.(experimental) Metric for the age (from getting into Kinesis Data Firehose to now) of the oldest record in Kinesis Data Firehose.(experimental) Metric for the age (from getting into Kinesis Data Firehose to now) of the oldest record in Kinesis Data Firehose.(experimental) Metric for the number of records delivered to Amazon S3 for backup over the specified time period.(experimental) Metric for the number of records delivered to Amazon S3 for backup over the specified time period.(experimental) Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.metricIncomingBytes
(MetricOptions props) (experimental) Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.(experimental) Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.(experimental) Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResource
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.constructs.Construct
toString
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.core.IConstruct
getNode
Methods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStack
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
DeliveryStream
protected DeliveryStream(software.amazon.jsii.JsiiObjectRef objRef) -
DeliveryStream
protected DeliveryStream(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
DeliveryStream
@Stability(Experimental) public DeliveryStream(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DeliveryStreamProps props) - Parameters:
scope
- This parameter is required.id
- This parameter is required.props
- This parameter is required.
-
-
Method Details
-
fromDeliveryStreamArn
@Stability(Experimental) @NotNull public static IDeliveryStream fromDeliveryStreamArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String deliveryStreamArn) (experimental) Import an existing delivery stream from its ARN.- Parameters:
scope
- This parameter is required.id
- This parameter is required.deliveryStreamArn
- This parameter is required.
-
fromDeliveryStreamAttributes
@Stability(Experimental) @NotNull public static IDeliveryStream fromDeliveryStreamAttributes(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull DeliveryStreamAttributes attrs) (experimental) Import an existing delivery stream from its attributes.- Parameters:
scope
- This parameter is required.id
- This parameter is required.attrs
- This parameter is required.
-
fromDeliveryStreamName
@Stability(Experimental) @NotNull public static IDeliveryStream fromDeliveryStreamName(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String deliveryStreamName) (experimental) Import an existing delivery stream from its name.- Parameters:
scope
- This parameter is required.id
- This parameter is required.deliveryStreamName
- This parameter is required.
-
grant
@Stability(Experimental) @NotNull public Grant grant(@NotNull IGrantable grantee, @NotNull @NotNull String... actions) (experimental) Grant thegrantee
identity permissions to performactions
.- Specified by:
grant
in interfaceIDeliveryStream
- Parameters:
grantee
- This parameter is required.actions
- This parameter is required.
-
grantPutRecords
(experimental) Grant thegrantee
identity permissions to performfirehose:PutRecord
andfirehose:PutRecordBatch
actions on this delivery stream.- Specified by:
grantPutRecords
in interfaceIDeliveryStream
- Parameters:
grantee
- This parameter is required.
-
metric
@Stability(Experimental) @NotNull public Metric metric(@NotNull String metricName, @Nullable MetricOptions props) (experimental) Return the given named metric for this delivery stream.- Specified by:
metric
in interfaceIDeliveryStream
- Parameters:
metricName
- This parameter is required.props
-
-
metric
(experimental) Return the given named metric for this delivery stream.- Specified by:
metric
in interfaceIDeliveryStream
- Parameters:
metricName
- This parameter is required.
-
metricBackupToS3Bytes
@Stability(Experimental) @NotNull public Metric metricBackupToS3Bytes(@Nullable MetricOptions props) (experimental) Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3Bytes
in interfaceIDeliveryStream
- Parameters:
props
-
-
metricBackupToS3Bytes
(experimental) Metric for the number of bytes delivered to Amazon S3 for backup over the specified time period.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3Bytes
in interfaceIDeliveryStream
-
metricBackupToS3DataFreshness
@Stability(Experimental) @NotNull public Metric metricBackupToS3DataFreshness(@Nullable MetricOptions props) (experimental) Metric for the age (from getting into Kinesis Data Firehose to now) of the oldest record in Kinesis Data Firehose.Any record older than this age has been delivered to the Amazon S3 bucket for backup.
By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3DataFreshness
in interfaceIDeliveryStream
- Parameters:
props
-
-
metricBackupToS3DataFreshness
(experimental) Metric for the age (from getting into Kinesis Data Firehose to now) of the oldest record in Kinesis Data Firehose.Any record older than this age has been delivered to the Amazon S3 bucket for backup.
By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3DataFreshness
in interfaceIDeliveryStream
-
metricBackupToS3Records
@Stability(Experimental) @NotNull public Metric metricBackupToS3Records(@Nullable MetricOptions props) (experimental) Metric for the number of records delivered to Amazon S3 for backup over the specified time period.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3Records
in interfaceIDeliveryStream
- Parameters:
props
-
-
metricBackupToS3Records
(experimental) Metric for the number of records delivered to Amazon S3 for backup over the specified time period.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricBackupToS3Records
in interfaceIDeliveryStream
-
metricIncomingBytes
(experimental) Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricIncomingBytes
in interfaceIDeliveryStream
- Parameters:
props
-
-
metricIncomingBytes
(experimental) Metric for the number of bytes ingested successfully into the delivery stream over the specified time period after throttling.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricIncomingBytes
in interfaceIDeliveryStream
-
metricIncomingRecords
@Stability(Experimental) @NotNull public Metric metricIncomingRecords(@Nullable MetricOptions props) (experimental) Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricIncomingRecords
in interfaceIDeliveryStream
- Parameters:
props
-
-
metricIncomingRecords
(experimental) Metric for the number of records ingested successfully into the delivery stream over the specified time period after throttling.By default, this metric will be calculated as an average over a period of 5 minutes.
- Specified by:
metricIncomingRecords
in interfaceIDeliveryStream
-
getConnections
(experimental) Network connections between Kinesis Data Firehose and other resources, i.e. Redshift cluster.- Specified by:
getConnections
in interfaceIConnectable
-
getDeliveryStreamArn
(experimental) The ARN of the delivery stream.- Specified by:
getDeliveryStreamArn
in interfaceIDeliveryStream
-
getDeliveryStreamName
(experimental) The name of the delivery stream.- Specified by:
getDeliveryStreamName
in interfaceIDeliveryStream
-
getGrantPrincipal
(experimental) The principal to grant permissions to.- Specified by:
getGrantPrincipal
in interfaceIGrantable
-