Class: Aws::IoT::Types::KinesisAction
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::KinesisAction
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Overview
Describes an action to write data to an Amazon Kinesis stream.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #partition_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The partition key.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the IAM role that grants access to the Amazon Kinesis stream.
 - 
  
    
      #stream_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon Kinesis stream.
 
Instance Attribute Details
#partition_key ⇒ String
The partition key.
      8961 8962 8963 8964 8965 8966 8967  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 8961 class KinesisAction < Struct.new( :role_arn, :stream_name, :partition_key) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
The ARN of the IAM role that grants access to the Amazon Kinesis stream.
      8961 8962 8963 8964 8965 8966 8967  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 8961 class KinesisAction < Struct.new( :role_arn, :stream_name, :partition_key) SENSITIVE = [] include Aws::Structure end  | 
  
#stream_name ⇒ String
The name of the Amazon Kinesis stream.
      8961 8962 8963 8964 8965 8966 8967  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 8961 class KinesisAction < Struct.new( :role_arn, :stream_name, :partition_key) SENSITIVE = [] include Aws::Structure end  |