Class: Aws::AppSync::Types::AdditionalAuthenticationProvider

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#authentication_typeString

The authentication type: API key, Identity and Access Management (IAM), OpenID Connect (OIDC), Amazon Cognito user pools, or Lambda.

Returns:

  • (String)


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_configTypes::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_configTypes::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_configTypes::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