aws-cdk-lib.aws_kinesisfirehose.CfnDeliveryStream.SplunkDestinationConfigurationProperty

interface SplunkDestinationConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisFirehose.CfnDeliveryStream.SplunkDestinationConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#CfnDeliveryStream_SplunkDestinationConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisfirehose.CfnDeliveryStream.SplunkDestinationConfigurationProperty
Pythonaws_cdk.aws_kinesisfirehose.CfnDeliveryStream.SplunkDestinationConfigurationProperty
TypeScript aws-cdk-lib » aws_kinesisfirehose » CfnDeliveryStream » SplunkDestinationConfigurationProperty

The SplunkDestinationConfiguration property type specifies the configuration of a destination in Splunk for a Kinesis Data Firehose delivery stream.

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 splunkDestinationConfigurationProperty: kinesisfirehose.CfnDeliveryStream.SplunkDestinationConfigurationProperty = {
  hecEndpoint: 'hecEndpoint',
  hecEndpointType: 'hecEndpointType',
  hecToken: 'hecToken',
  s3Configuration: {
    bucketArn: 'bucketArn',
    roleArn: 'roleArn',

    // the properties below are optional
    bufferingHints: {
      intervalInSeconds: 123,
      sizeInMBs: 123,
    },
    cloudWatchLoggingOptions: {
      enabled: false,
      logGroupName: 'logGroupName',
      logStreamName: 'logStreamName',
    },
    compressionFormat: 'compressionFormat',
    encryptionConfiguration: {
      kmsEncryptionConfig: {
        awskmsKeyArn: 'awskmsKeyArn',
      },
      noEncryptionConfig: 'noEncryptionConfig',
    },
    errorOutputPrefix: 'errorOutputPrefix',
    prefix: 'prefix',
  },

  // the properties below are optional
  cloudWatchLoggingOptions: {
    enabled: false,
    logGroupName: 'logGroupName',
    logStreamName: 'logStreamName',
  },
  hecAcknowledgmentTimeoutInSeconds: 123,
  processingConfiguration: {
    enabled: false,
    processors: [{
      type: 'type',

      // the properties below are optional
      parameters: [{
        parameterName: 'parameterName',
        parameterValue: 'parameterValue',
      }],
    }],
  },
  retryOptions: {
    durationInSeconds: 123,
  },
  s3BackupMode: 's3BackupMode',
};

Properties

NameTypeDescription
hecEndpointstringThe HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data.
hecEndpointTypestringThis type can be either Raw or Event .
hecTokenstringThis is a GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.
s3ConfigurationIResolvable | S3DestinationConfigurationPropertyThe configuration for the backup Amazon S3 location.
cloudWatchLoggingOptions?IResolvable | CloudWatchLoggingOptionsPropertyThe Amazon CloudWatch logging options for your delivery stream.
hecAcknowledgmentTimeoutInSeconds?numberThe amount of time that Kinesis Data Firehose waits to receive an acknowledgment from Splunk after it sends it data.
processingConfiguration?IResolvable | ProcessingConfigurationPropertyThe data processing configuration.
retryOptions?IResolvable | SplunkRetryOptionsPropertyThe retry behavior in case Kinesis Data Firehose is unable to deliver data to Splunk, or if it doesn't receive an acknowledgment of receipt from Splunk.
s3BackupMode?stringDefines how documents should be delivered to Amazon S3.

hecEndpoint

Type: string

The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data.


hecEndpointType

Type: string

This type can be either Raw or Event .


hecToken

Type: string

This is a GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.


s3Configuration

Type: IResolvable | S3DestinationConfigurationProperty

The configuration for the backup Amazon S3 location.


cloudWatchLoggingOptions?

Type: IResolvable | CloudWatchLoggingOptionsProperty (optional)

The Amazon CloudWatch logging options for your delivery stream.


hecAcknowledgmentTimeoutInSeconds?

Type: number (optional)

The amount of time that Kinesis Data Firehose waits to receive an acknowledgment from Splunk after it sends it data.

At the end of the timeout period, Kinesis Data Firehose either tries to send the data again or considers it an error, based on your retry settings.


processingConfiguration?

Type: IResolvable | ProcessingConfigurationProperty (optional)

The data processing configuration.


retryOptions?

Type: IResolvable | SplunkRetryOptionsProperty (optional)

The retry behavior in case Kinesis Data Firehose is unable to deliver data to Splunk, or if it doesn't receive an acknowledgment of receipt from Splunk.


s3BackupMode?

Type: string (optional)

Defines how documents should be delivered to Amazon S3.

When set to FailedEventsOnly , Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllEvents , Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. The default value is FailedEventsOnly .

You can update this backup mode from FailedEventsOnly to AllEvents . You can't update it from AllEvents to FailedEventsOnly .