Class: Aws::Lambda::Types::KafkaSchemaRegistryAccessConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lambda::Types::KafkaSchemaRegistryAccessConfig
 
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Specific access configuration settings that tell Lambda how to authenticate with your schema registry.
If you're working with an Glue schema registry, don't provide authentication details in this object. Instead, ensure that your execution role has the required permissions for Lambda to access your cluster.
If you're working with a Confluent schema registry, choose the
authentication method in the Type field, and provide the Secrets
Manager secret ARN in the URI field.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of authentication Lambda uses to access your schema registry. 
- 
  
    
      #uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The URI of the secret (Secrets Manager secret ARN) to authenticate with your schema registry. 
Instance Attribute Details
#type ⇒ String
The type of authentication Lambda uses to access your schema registry.
| 4105 4106 4107 4108 4109 4110 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4105 class KafkaSchemaRegistryAccessConfig < Struct.new( :type, :uri) SENSITIVE = [] include Aws::Structure end | 
#uri ⇒ String
The URI of the secret (Secrets Manager secret ARN) to authenticate with your schema registry.
| 4105 4106 4107 4108 4109 4110 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4105 class KafkaSchemaRegistryAccessConfig < Struct.new( :type, :uri) SENSITIVE = [] include Aws::Structure end |