Class: Aws::AppSync::Types::AdditionalAuthenticationProvider
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AppSync::Types::AdditionalAuthenticationProvider
 
 
- Defined in:
 - gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
 
Overview
Describes an additional authentication provider.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #authentication_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The authentication type: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
 - 
  
    
      #lambda_authorizer_config  ⇒ Types::LambdaAuthorizerConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration for Lambda function authorization.
 - 
  
    
      #open_id_connect_config  ⇒ Types::OpenIDConnectConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The OIDC configuration.
 - 
  
    
      #user_pool_config  ⇒ Types::CognitoUserPoolConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Cognito user pool configuration.
 
Instance Attribute Details
#authentication_type ⇒ String
The authentication type: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.
      47 48 49 50 51 52 53 54  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 47 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config, :lambda_authorizer_config) SENSITIVE = [] include Aws::Structure end  | 
  
#lambda_authorizer_config ⇒ Types::LambdaAuthorizerConfig
Configuration for Lambda function authorization.
      47 48 49 50 51 52 53 54  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 47 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config, :lambda_authorizer_config) SENSITIVE = [] include Aws::Structure end  | 
  
#open_id_connect_config ⇒ Types::OpenIDConnectConfig
The OIDC configuration.
      47 48 49 50 51 52 53 54  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 47 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config, :lambda_authorizer_config) SENSITIVE = [] include Aws::Structure end  | 
  
#user_pool_config ⇒ Types::CognitoUserPoolConfig
The Amazon Cognito user pool configuration.
      47 48 49 50 51 52 53 54  | 
    
      # File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 47 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config, :lambda_authorizer_config) SENSITIVE = [] include Aws::Structure end  |