Struct rusoto_iot::ElasticsearchAction[][src]

pub struct ElasticsearchAction {
    pub endpoint: String,
    pub id: String,
    pub index: String,
    pub role_arn: String,
    pub type_: String,
}

Describes an action that writes data to an Amazon Elasticsearch Service domain.

Fields

The endpoint of your Elasticsearch domain.

The unique identifier for the document you are storing.

The Elasticsearch index where you want to store your data.

The IAM role ARN that has access to Elasticsearch.

The type of document you are storing.

Trait Implementations

impl Default for ElasticsearchAction
[src]

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

impl Debug for ElasticsearchAction
[src]

Formats the value using the given formatter. Read more

impl Clone for ElasticsearchAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ElasticsearchAction
[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