Struct rusoto_firehose::ElasticsearchDestinationConfiguration[][src]

pub struct ElasticsearchDestinationConfiguration {
    pub buffering_hints: Option<ElasticsearchBufferingHints>,
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub domain_arn: String,
    pub index_name: String,
    pub index_rotation_period: Option<String>,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub retry_options: Option<ElasticsearchRetryOptions>,
    pub role_arn: String,
    pub s3_backup_mode: Option<String>,
    pub s3_configuration: S3DestinationConfiguration,
    pub type_name: String,
}

Describes the configuration of a destination in Amazon ES.

Fields

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

The CloudWatch logging options for your delivery stream.

The ARN of the Amazon ES domain. The IAM role must have permissions for DescribeElasticsearchDomain, DescribeElasticsearchDomains, and DescribeElasticsearchDomainConfig after assuming the role specified in RoleARN.

The Elasticsearch index name.

The Elasticsearch index rotation period. Index rotation appends a time stamp to the IndexName to facilitate the expiration of old data. For more information, see Index Rotation for Amazon Elasticsearch Service Destination. The default value is OneDay.

The data processing configuration.

The retry behavior in case Kinesis Firehose is unable to deliver documents to Amazon ES. The default value is 300 (5 minutes).

The ARN of the IAM role to be assumed by Kinesis Firehose for calling the Amazon ES Configuration API and for indexing documents. For more information, see Amazon S3 Bucket Access.

Defines how documents should be delivered to Amazon S3. When set to FailedDocumentsOnly, Kinesis Firehose writes any documents that could not be indexed to the configured Amazon S3 destination, with elasticsearch-failed/ appended to the key prefix. When set to AllDocuments, Kinesis Firehose delivers all incoming records to Amazon S3, and also writes failed documents with elasticsearch-failed/ appended to the prefix. For more information, see Amazon S3 Backup for Amazon Elasticsearch Service Destination. Default value is FailedDocumentsOnly.

The configuration for the backup Amazon S3 location.

The Elasticsearch type name.

Trait Implementations

impl Default for ElasticsearchDestinationConfiguration
[src]

Returns the "default value" for a type. Read more

impl Debug for ElasticsearchDestinationConfiguration
[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticsearchDestinationConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ElasticsearchDestinationConfiguration
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations