Class: Aws::BedrockAgentCoreControl::Types::IncludedOauth2ProviderConfigInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::IncludedOauth2ProviderConfigInput
- 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
-
#authorization_endpoint ⇒ String
OAuth2 authorization endpoint for your isolated OAuth2 application tenant.
-
#client_id ⇒ String
The client ID for the supported OAuth2 provider.
-
#client_secret ⇒ String
The client secret for the supported OAuth2 provider.
-
#issuer ⇒ String
Token issuer of your isolated OAuth2 application tenant.
-
#token_endpoint ⇒ String
OAuth2 token endpoint for your isolated OAuth2 application tenant.
Instance Attribute Details
#authorization_endpoint ⇒ String
OAuth2 authorization endpoint for your isolated OAuth2 application tenant. This is where users are redirected to authenticate and authorize access to their resources.
9581 9582 9583 9584 9585 9586 9587 9588 9589 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 9581 class IncludedOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret, :issuer, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_id ⇒ String
The client ID for the supported OAuth2 provider. This identifier is assigned by the OAuth2 provider when you register your application.
9581 9582 9583 9584 9585 9586 9587 9588 9589 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 9581 class IncludedOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret, :issuer, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret ⇒ String
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.
9581 9582 9583 9584 9585 9586 9587 9588 9589 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 9581 class IncludedOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret, :issuer, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#issuer ⇒ String
Token issuer of your isolated OAuth2 application tenant. This URL identifies the authorization server that issues tokens for this provider.
9581 9582 9583 9584 9585 9586 9587 9588 9589 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 9581 class IncludedOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret, :issuer, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#token_endpoint ⇒ String
OAuth2 token endpoint for your isolated OAuth2 application tenant. This is where authorization codes are exchanged for access tokens.
9581 9582 9583 9584 9585 9586 9587 9588 9589 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 9581 class IncludedOauth2ProviderConfigInput < Struct.new( :client_id, :client_secret, :issuer, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |