interface CustomOauth2ProviderConfigInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnOAuth2CredentialProviderPropsMixin.CustomOauth2ProviderConfigInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnOAuth2CredentialProviderPropsMixin_CustomOauth2ProviderConfigInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.CustomOauth2ProviderConfigInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.CustomOauth2ProviderConfigInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnOAuth2CredentialProviderPropsMixin » CustomOauth2ProviderConfigInputProperty |
Input configuration for a custom OAuth2 provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
const customOauth2ProviderConfigInputProperty: bedrockagentcore.CfnOAuth2CredentialProviderPropsMixin.CustomOauth2ProviderConfigInputProperty = {
clientId: 'clientId',
clientSecret: 'clientSecret',
oauthDiscovery: {
authorizationServerMetadata: {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
responseTypes: ['responseTypes'],
tokenEndpoint: 'tokenEndpoint',
},
discoveryUrl: 'discoveryUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The client ID for the custom OAuth2 provider. |
| client | string | The client secret for the custom OAuth2 provider. |
| oauth | IResolvable | Oauth2 | Discovery information for an OAuth2 provider. |
clientId?
Type:
string
(optional)
The client ID for the custom OAuth2 provider.
clientSecret?
Type:
string
(optional)
The client secret for the custom OAuth2 provider.
oauthDiscovery?
Type:
IResolvable | Oauth2
(optional)
Discovery information for an OAuth2 provider.

.NET
Go
Java
Python
TypeScript