Struct rusoto_firehose::ElasticsearchDestinationUpdate [] [src]

pub struct ElasticsearchDestinationUpdate {
    pub buffering_hints: Option<ElasticsearchBufferingHints>,
    pub cloud_watch_logging_options: Option<CloudWatchLoggingOptions>,
    pub domain_arn: Option<String>,
    pub index_name: Option<String>,
    pub index_rotation_period: Option<String>,
    pub processing_configuration: Option<ProcessingConfiguration>,
    pub retry_options: Option<ElasticsearchRetryOptions>,
    pub role_arn: Option<String>,
    pub s3_update: Option<S3DestinationUpdate>,
    pub type_name: Option<String>,
}

Describes an update for a destination in Amazon ES.

Fields

The buffering options. If no value is specified, ElasticsearchBufferingHints object default values 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 IAM role specified in RoleARN.

The Elasticsearch index name.

The Elasticsearch index rotation period. Index rotation appends a time stamp to IndexName to facilitate the expiration of old data. For more information, see Index Rotation for Amazon Elasticsearch Service Destination. 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.

The Amazon S3 destination.

The Elasticsearch type name.

Trait Implementations

impl Default for ElasticsearchDestinationUpdate
[src]

[src]

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

impl Debug for ElasticsearchDestinationUpdate
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticsearchDestinationUpdate
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations