[][src]Struct rusoto_firehose::SplunkDestinationDescription

pub struct SplunkDestinationDescription {
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub hec_acknowledgment_timeout_in_seconds: Option<i64>,
    pub hec_endpoint: Option<String>,
    pub hec_endpoint_type: Option<String>,
    pub hec_token: Option<String>,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub retry_options: Option<SplunkRetryOptions>,
    pub s3_backup_mode: Option<String>,
    pub s3_destination_description: Option<S3DestinationDescription>,
}

Describes 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: Option<String>

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

hec_endpoint_type: Option<String>

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

hec_token: Option<String>

A GUID 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_destination_description: Option<S3DestinationDescription>

The Amazon S3 destination.>

Trait Implementations

impl PartialEq<SplunkDestinationDescription> for SplunkDestinationDescription[src]

impl Default for SplunkDestinationDescription[src]

impl Clone for SplunkDestinationDescription[src]

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

Performs copy-assignment from source. Read more

impl Debug for SplunkDestinationDescription[src]

impl<'de> Deserialize<'de> for SplunkDestinationDescription[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self