interface SplunkRetryOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.SplunkRetryOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_SplunkRetryOptionsProperty |
Java | software.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.SplunkRetryOptionsProperty |
Python | aws_cdk.aws_kinesisfirehose.CfnDeliveryStream.SplunkRetryOptionsProperty |
TypeScript | aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » SplunkRetryOptionsProperty |
The SplunkRetryOptions
property type specifies retry behavior in case Kinesis Data Firehose is unable to deliver documents to Splunk or if it doesn't receive an acknowledgment from Splunk.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const splunkRetryOptionsProperty: kinesisfirehose.CfnDeliveryStream.SplunkRetryOptionsProperty = {
durationInSeconds: 123,
};
Properties
Name | Type | Description |
---|---|---|
duration | number | The total amount of time that Firehose spends on retries. |
durationInSeconds?
Type:
number
(optional)
The total amount of time that Firehose spends on retries.
This duration starts after the initial attempt to send data to Splunk fails. It doesn't include the periods during which Firehose waits for acknowledgment from Splunk after each attempt.