Class: Aws::BedrockAgentCoreControl::Types::LinkedinOauth2ProviderConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::LinkedinOauth2ProviderConfigInput
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Configuration settings for connecting to LinkedIn services using OAuth2 authentication. This includes the client credentials required to authenticate with LinkedIn's OAuth2 authorization server.
Constant Summary collapse
- SENSITIVE =
[:client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID for the LinkedIn OAuth2 provider.
-
#client_secret ⇒ String
The client secret for the LinkedIn OAuth2 provider.
Instance Attribute Details
#client_id ⇒ String
The client ID for the LinkedIn OAuth2 provider. This identifier is assigned by LinkedIn when you register your application.
5626 5627 5628 5629 5630 5631 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5626 class LinkedinOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret ⇒ String
The client secret for the LinkedIn OAuth2 provider. This secret is assigned by LinkedIn and used along with the client ID to authenticate your application.
5626 5627 5628 5629 5630 5631 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5626 class LinkedinOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |