[][src]Struct rusoto_firehose::SplunkDestinationUpdate

pub struct SplunkDestinationUpdate {
    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_update: Option<S3DestinationUpdate>,
}

Describes an update for 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 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 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_update: Option<S3DestinationUpdate>

Your update to the configuration of the backup Amazon S3 location.

Trait Implementations

impl Clone for SplunkDestinationUpdate[src]

impl Debug for SplunkDestinationUpdate[src]

impl Default for SplunkDestinationUpdate[src]

impl PartialEq<SplunkDestinationUpdate> for SplunkDestinationUpdate[src]

impl Serialize for SplunkDestinationUpdate[src]

impl StructuralPartialEq for SplunkDestinationUpdate[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.