Class: Aws::IoT::Types::ElasticsearchAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::ElasticsearchAction
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass ElasticsearchAction data as a hash:
{
role_arn: "AwsArn", # required
endpoint: "ElasticsearchEndpoint", # required
index: "ElasticsearchIndex", # required
type: "ElasticsearchType", # required
id: "ElasticsearchId", # required
}
Describes an action that writes data to an Amazon Elasticsearch Service domain.
Instance Attribute Summary collapse
-
#endpoint ⇒ String
The endpoint of your Elasticsearch domain.
-
#id ⇒ String
The unique identifier for the document you are storing.
-
#index ⇒ String
The Elasticsearch index where you want to store your data.
-
#role_arn ⇒ String
The IAM role ARN that has access to Elasticsearch.
-
#type ⇒ String
The type of document you are storing.
Instance Attribute Details
#endpoint ⇒ String
The endpoint of your Elasticsearch domain.
4823 4824 4825 4826 4827 4828 4829 4830 |
# File 'lib/aws-sdk-iot/types.rb', line 4823 class ElasticsearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) include Aws::Structure end |
#id ⇒ String
The unique identifier for the document you are storing.
4823 4824 4825 4826 4827 4828 4829 4830 |
# File 'lib/aws-sdk-iot/types.rb', line 4823 class ElasticsearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) include Aws::Structure end |
#index ⇒ String
The Elasticsearch index where you want to store your data.
4823 4824 4825 4826 4827 4828 4829 4830 |
# File 'lib/aws-sdk-iot/types.rb', line 4823 class ElasticsearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) include Aws::Structure end |
#role_arn ⇒ String
The IAM role ARN that has access to Elasticsearch.
4823 4824 4825 4826 4827 4828 4829 4830 |
# File 'lib/aws-sdk-iot/types.rb', line 4823 class ElasticsearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) include Aws::Structure end |
#type ⇒ String
The type of document you are storing.
4823 4824 4825 4826 4827 4828 4829 4830 |
# File 'lib/aws-sdk-iot/types.rb', line 4823 class ElasticsearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) include Aws::Structure end |