Class: Aws::BedrockAgentCoreControl::Types::CustomOauth2ProviderConfigInput

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

Overview

Input configuration for a custom OAuth2 provider.

Constant Summary collapse

SENSITIVE =
[:client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client ID for the custom OAuth2 provider.

Returns:

  • (String)


1522
1523
1524
1525
1526
1527
1528
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1522

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

#client_secretString

The client secret for the custom OAuth2 provider.

Returns:

  • (String)


1522
1523
1524
1525
1526
1527
1528
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1522

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

#oauth_discoveryTypes::Oauth2Discovery

The OAuth2 discovery information for the custom provider.



1522
1523
1524
1525
1526
1527
1528
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 1522

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