Class: Aws::BedrockAgentCoreControl::Types::LinkedinOauth2ProviderConfigInput

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

Instance Attribute Details

#client_idString

The client ID for the LinkedIn OAuth2 provider. This identifier is assigned by LinkedIn when you register your application.

Returns:

  • (String)


3264
3265
3266
3267
3268
3269
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3264

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

#client_secretString

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.

Returns:

  • (String)


3264
3265
3266
3267
3268
3269
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3264

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