interface SplunkRetryOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.SplunkRetryOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_SplunkRetryOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SplunkRetryOptionsProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.SplunkRetryOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » 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 { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const splunkRetryOptionsProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.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.

.NET
Go
Java
Python
TypeScript