AWS Kinesis · Schema
SplunkDestinationConfiguration
Describes the configuration of a destination in Splunk.
AnalyticsApache FlinkBig DataData ProcessingReal-TimeStreamingVideo
Properties
| Name | Type | Description |
|---|---|---|
| HECEndpoint | object | |
| HECEndpointType | object | |
| HECToken | object | |
| HECAcknowledgmentTimeoutInSeconds | object | |
| RetryOptions | object | |
| S3BackupMode | object | |
| S3Configuration | object | |
| ProcessingConfiguration | object | |
| CloudWatchLoggingOptions | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SplunkDestinationConfiguration",
"title": "SplunkDestinationConfiguration",
"type": "object",
"required": [
"HECEndpoint",
"HECEndpointType",
"HECToken",
"S3Configuration"
],
"properties": {
"HECEndpoint": {
"allOf": [
{
"$ref": "#/components/schemas/HECEndpoint"
},
{
"description": "The HTTP Event Collector (HEC) endpoint to which Kinesis Data Firehose sends your data."
}
]
},
"HECEndpointType": {
"allOf": [
{
"$ref": "#/components/schemas/HECEndpointType"
},
{
"description": "This type can be either \"Raw\" or \"Event.\""
}
]
},
"HECToken": {
"allOf": [
{
"$ref": "#/components/schemas/HECToken"
},
{
"description": "This is a GUID that you obtain from your Splunk cluster when you create a new HEC endpoint."
}
]
},
"HECAcknowledgmentTimeoutInSeconds": {
"allOf": [
{
"$ref": "#/components/schemas/HECAcknowledgmentTimeoutInSeconds"
},
{
"description": "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."
}
]
},
"RetryOptions": {
"allOf": [
{
"$ref": "#/components/schemas/SplunkRetryOptions"
},
{
"description": "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": {
"allOf": [
{
"$ref": "#/components/schemas/SplunkS3BackupMode"
},
{
"description": "<p>Defines how documents should be delivered to Amazon S3. When set to <code>FailedEventsOnly</code>, Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to <code>AllEvents</code>, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. The default value is <code>FailedEventsOnly</code>.</p> <p>You can update this backup mode from <code>FailedEventsOnly</code> to <code>AllEvents</code>. You can't update it from <code>AllEvents</code> to <code>FailedEventsOnly</code>.</p>"
}
]
},
"S3Configuration": {
"allOf": [
{
"$ref": "#/components/schemas/S3DestinationConfiguration"
},
{
"description": "The configuration for the backup Amazon S3 location."
}
]
},
"ProcessingConfiguration": {
"allOf": [
{
"$ref": "#/components/schemas/ProcessingConfiguration"
},
{
"description": "The data processing configuration."
}
]
},
"CloudWatchLoggingOptions": {
"allOf": [
{
"$ref": "#/components/schemas/CloudWatchLoggingOptions"
},
{
"description": "The Amazon CloudWatch logging options for your delivery stream."
}
]
}
},
"description": "Describes the configuration of a destination in Splunk."
}