[][src]Struct rusoto_firehose::SplunkDestinationConfiguration

pub struct SplunkDestinationConfiguration {
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub hec_acknowledgment_timeout_in_seconds: Option<i64>,
    pub hec_endpoint: String,
    pub hec_endpoint_type: String,
    pub hec_token: String,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub retry_options: Option<SplunkRetryOptions>,
    pub s3_backup_mode: Option<String>,
    pub s3_configuration: S3DestinationConfiguration,
}

Describes the configuration of a destination in Splunk.

Fields

cloud_watch_logging_options: Option<CloudWatchLoggingOptions>

The Amazon CloudWatch logging options for your delivery stream.

hec_acknowledgment_timeout_in_seconds: Option<i64>

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.

hec_endpoint: String

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

hec_endpoint_type: String

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

hec_token: String

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

processing_configuration: Option<ProcessingConfiguration>

The data processing configuration.

retry_options: Option<SplunkRetryOptions>

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.

s3_backup_mode: Option<String>

Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly, Kinesis Data Firehose writes any data that could not be indexed to the configured Amazon S3 destination. When set to AllDocuments, Kinesis Data Firehose delivers all incoming records to Amazon S3, and also writes failed documents to Amazon S3. Default value is FailedDocumentsOnly.

s3_configuration: S3DestinationConfiguration

The configuration for the backup Amazon S3 location.

Trait Implementations

impl PartialEq<SplunkDestinationConfiguration> for SplunkDestinationConfiguration[src]

impl Default for SplunkDestinationConfiguration[src]

impl Clone for SplunkDestinationConfiguration[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SplunkDestinationConfiguration[src]

impl Serialize for SplunkDestinationConfiguration[src]

Auto Trait Implementations

impl Send for SplunkDestinationConfiguration

impl Sync for SplunkDestinationConfiguration

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self