interface MicrosoftOauth2ProviderConfigInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.MicrosoftOauth2ProviderConfigInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_MicrosoftOauth2ProviderConfigInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.MicrosoftOauth2ProviderConfigInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.MicrosoftOauth2ProviderConfigInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » MicrosoftOauth2ProviderConfigInputProperty |
Input configuration for a Microsoft 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-lib';
const microsoftOauth2ProviderConfigInputProperty: bedrockagentcore.CfnOAuth2CredentialProvider.MicrosoftOauth2ProviderConfigInputProperty = {
clientId: 'clientId',
clientSecret: 'clientSecret',
// the properties below are optional
tenantId: 'tenantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | |
| client | string | |
| tenant | string | The Microsoft Entra ID tenant ID. |
clientId
Type:
string
clientSecret
Type:
string
tenantId?
Type:
string
(optional)
The Microsoft Entra ID tenant ID.

.NET
Go
Java
Python
TypeScript