Class: Aws::AmplifyBackend::Types::BackendAuthSocialProviderConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::BackendAuthSocialProviderConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass BackendAuthSocialProviderConfig data as a hash:
{
client_id: "__string",
client_secret: "__string",
}
Describes third-party social federation configurations for allowing your app users to sign in using OAuth.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_id ⇒ String
Describes the client_id, which can be obtained from the third-party social federation provider.
-
#client_secret ⇒ String
Describes the client_secret, which can be obtained from third-party social federation providers.
Instance Attribute Details
#client_id ⇒ String
Describes the client_id, which can be obtained from the third-party social federation provider.
441 442 443 444 445 446 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 441 class BackendAuthSocialProviderConfig < Struct.new( :client_id, :client_secret) SENSITIVE = [] include Aws::Structure end |
#client_secret ⇒ String
Describes the client_secret, which can be obtained from third-party social federation providers.
441 442 443 444 445 446 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 441 class BackendAuthSocialProviderConfig < Struct.new( :client_id, :client_secret) SENSITIVE = [] include Aws::Structure end |