Module Values.SplunkDestinationConfigurationSource

Describes the configuration of a destination in Splunk.

Sourcetype nonrec t = {
  1. hECEndpoint : HECEndpoint.t;
    (*

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

    *)
  2. hECEndpointType : HECEndpointType.t;
    (*

    This type can be either "Raw" or "Event."

    *)
  3. hECToken : HECToken.t option;
    (*

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

    *)
  4. hECAcknowledgmentTimeoutInSeconds : HECAcknowledgmentTimeoutInSeconds.t option;
    (*

    The amount of time that Firehose waits to receive an acknowledgment from Splunk after it sends it data. At the end of the timeout period, Firehose either tries to send the data again or considers it an error, based on your retry settings.

    *)
  5. retryOptions : SplunkRetryOptions.t option;
    (*

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

    *)
  6. s3BackupMode : SplunkS3BackupMode.t option;
    (*

    Defines how documents should be delivered to Amazon S3. When set to FailedEventsOnly, Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllEvents, 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.

    *)
  7. s3Configuration : S3DestinationConfiguration.t;
    (*

    The configuration for the backup Amazon S3 location.

    *)
  8. processingConfiguration : ProcessingConfiguration.t option;
    (*

    The data processing configuration.

    *)
  9. cloudWatchLoggingOptions : CloudWatchLoggingOptions.t option;
    (*

    The Amazon CloudWatch logging options for your Firehose stream.

    *)
  10. bufferingHints : SplunkBufferingHints.t option;
    (*

    The buffering options. If no value is specified, the default values for Splunk are used.

    *)
  11. secretsManagerConfiguration : SecretsManagerConfiguration.t option;
    (*

    The configuration that defines how you access secrets for Splunk.

    *)
}
Sourceval context_ : string
Sourceval make : ?hECToken:??? -> ?hECAcknowledgmentTimeoutInSeconds:??? -> ?retryOptions:??? -> ?s3BackupMode:??? -> ?processingConfiguration:??? -> ?cloudWatchLoggingOptions:??? -> ?bufferingHints:??? -> ?secretsManagerConfiguration:??? -> hECEndpoint:HECEndpoint.t -> hECEndpointType:HECEndpointType.t -> s3Configuration:S3DestinationConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of HECAcknowledgmentTimeoutInSeconds.t | `String of HECEndpoint.t | `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `Integer of SplunkRetryDurationInSeconds.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ProcessorParameterValue.t ]) list ] list ]) list ] list | `String of RoleARN.t | `Structure of (string * [> `Boolean of BooleanObject.t | `Enum of string | `Integer of SizeInMBs.t | `String of LogGroupName.t | `Structure of (string * [> `String of AWSKMSKeyARN.t ]) list ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t