Class: Aws::Firehose::Types::MSKSourceConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::MSKSourceConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-firehose/types.rb
 
Overview
The configuration for the Amazon MSK cluster to be used as the source for a delivery stream.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #authentication_configuration  ⇒ Types::AuthenticationConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authentication configuration of the Amazon MSK cluster.
 - 
  
    
      #msk_cluster_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the Amazon MSK cluster.
 - 
  
    
      #read_from_timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read.
 - 
  
    
      #topic_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The topic name within the Amazon MSK cluster.
 
Instance Attribute Details
#authentication_configuration ⇒ Types::AuthenticationConfiguration
The authentication configuration of the Amazon MSK cluster.
      3388 3389 3390 3391 3392 3393 3394 3395  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 3388 class MSKSourceConfiguration < Struct.new( :msk_cluster_arn, :topic_name, :authentication_configuration, :read_from_timestamp) SENSITIVE = [] include Aws::Structure end  | 
  
#msk_cluster_arn ⇒ String
The ARN of the Amazon MSK cluster.
      3388 3389 3390 3391 3392 3393 3394 3395  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 3388 class MSKSourceConfiguration < Struct.new( :msk_cluster_arn, :topic_name, :authentication_configuration, :read_from_timestamp) SENSITIVE = [] include Aws::Structure end  | 
  
#read_from_timestamp ⇒ Time
The start date and time in UTC for the offset position within your MSK topic from where Firehose begins to read. By default, this is set to timestamp when Firehose becomes Active.
If you want to create a Firehose stream with Earliest start position from SDK or CLI, you need to set the ‘ReadFromTimestamp` parameter to Epoch (1970-01-01T00:00:00Z).
      3388 3389 3390 3391 3392 3393 3394 3395  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 3388 class MSKSourceConfiguration < Struct.new( :msk_cluster_arn, :topic_name, :authentication_configuration, :read_from_timestamp) SENSITIVE = [] include Aws::Structure end  | 
  
#topic_name ⇒ String
The topic name within the Amazon MSK cluster.
      3388 3389 3390 3391 3392 3393 3394 3395  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 3388 class MSKSourceConfiguration < Struct.new( :msk_cluster_arn, :topic_name, :authentication_configuration, :read_from_timestamp) SENSITIVE = [] include Aws::Structure end  |