Class: Aws::IoT::Types::OpenSearchAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::OpenSearchAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes an action that writes data to an Amazon OpenSearch Service domain.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #endpoint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The endpoint of your OpenSearch domain.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier for the document you are storing.
 - 
  
    
      #index  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The OpenSearch index where you want to store your data.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IAM role ARN that has access to OpenSearch.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of document you are storing.
 
Instance Attribute Details
#endpoint ⇒ String
The endpoint of your OpenSearch domain.
      12371 12372 12373 12374 12375 12376 12377 12378 12379  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12371 class OpenSearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The unique identifier for the document you are storing.
      12371 12372 12373 12374 12375 12376 12377 12378 12379  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12371 class OpenSearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#index ⇒ String
The OpenSearch index where you want to store your data.
      12371 12372 12373 12374 12375 12376 12377 12378 12379  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12371 class OpenSearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The IAM role ARN that has access to OpenSearch.
      12371 12372 12373 12374 12375 12376 12377 12378 12379  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12371 class OpenSearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of document you are storing.
      12371 12372 12373 12374 12375 12376 12377 12378 12379  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 12371 class OpenSearchAction < Struct.new( :role_arn, :endpoint, :index, :type, :id) SENSITIVE = [] include Aws::Structure end  |