Module Values.SplunkDestinationDescriptionSource

Describes a destination in Splunk.

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

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

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

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

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

    A GUID 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 FailedDocumentsOnly, Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllDocuments, Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is FailedDocumentsOnly.

    *)
  7. s3DestinationDescription : S3DestinationDescription.t option;
    (*

    The Amazon S3 destination.>

    *)
  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 make : ?hECEndpoint:??? -> ?hECEndpointType:??? -> ?hECToken:??? -> ?hECAcknowledgmentTimeoutInSeconds:??? -> ?retryOptions:??? -> ?s3BackupMode:??? -> ?s3DestinationDescription:??? -> ?processingConfiguration:??? -> ?cloudWatchLoggingOptions:??? -> ?bufferingHints:??? -> ?secretsManagerConfiguration:??? -> 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