Class: Aws::BedrockAgentCoreControl::Types::IncludedOauth2ProviderConfigInput

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

Overview

Configuration settings for connecting to a supported OAuth2 provider. This includes client credentials and OAuth2 discovery information for providers that have built-in support.

Constant Summary collapse

SENSITIVE =
[:client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_endpointString

OAuth2 authorization endpoint for your isolated OAuth2 application tenant. This is where users are redirected to authenticate and authorize access to their resources.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
3123
3124
3125
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3117

class IncludedOauth2ProviderConfigInput < Struct.new(
  :client_id,
  :client_secret,
  :issuer,
  :authorization_endpoint,
  :token_endpoint)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#client_idString

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

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
3123
3124
3125
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3117

class IncludedOauth2ProviderConfigInput < Struct.new(
  :client_id,
  :client_secret,
  :issuer,
  :authorization_endpoint,
  :token_endpoint)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#client_secretString

The client secret for the supported OAuth2 provider. This secret is assigned by the OAuth2 provider and used along with the client ID to authenticate your application.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
3123
3124
3125
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3117

class IncludedOauth2ProviderConfigInput < Struct.new(
  :client_id,
  :client_secret,
  :issuer,
  :authorization_endpoint,
  :token_endpoint)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#issuerString

Token issuer of your isolated OAuth2 application tenant. This URL identifies the authorization server that issues tokens for this provider.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
3123
3124
3125
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3117

class IncludedOauth2ProviderConfigInput < Struct.new(
  :client_id,
  :client_secret,
  :issuer,
  :authorization_endpoint,
  :token_endpoint)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#token_endpointString

OAuth2 token endpoint for your isolated OAuth2 application tenant. This is where authorization codes are exchanged for access tokens.

Returns:

  • (String)


3117
3118
3119
3120
3121
3122
3123
3124
3125
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3117

class IncludedOauth2ProviderConfigInput < Struct.new(
  :client_id,
  :client_secret,
  :issuer,
  :authorization_endpoint,
  :token_endpoint)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end