Class: Aws::AmplifyBackend::Types::BackendAuthSocialProviderConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb

Overview

Describes third-party social federation configurations for allowing your app users to sign in using OAuth.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

Describes the client_id, which can be obtained from the third-party social federation provider.

Returns:

  • (String)


345
346
347
348
349
350
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 345

class BackendAuthSocialProviderConfig < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = []
  include Aws::Structure
end

#client_secretString

Describes the client_secret, which can be obtained from third-party social federation providers.

Returns:

  • (String)


345
346
347
348
349
350
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 345

class BackendAuthSocialProviderConfig < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = []
  include Aws::Structure
end