interface OAuthCredentialProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnHarness.OAuthCredentialProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnHarness_OAuthCredentialProviderProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnHarness.OAuthCredentialProviderProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnHarness.OAuthCredentialProviderProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnHarness » OAuthCredentialProviderProperty |
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 oAuthCredentialProviderProperty: bedrockagentcore.CfnHarness.OAuthCredentialProviderProperty = {
providerArn: 'providerArn',
scopes: ['scopes'],
// the properties below are optional
customParameters: {
customParametersKey: 'customParameters',
},
defaultReturnUrl: 'defaultReturnUrl',
grantType: 'grantType',
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | |
| scopes | string[] | |
| custom | IResolvable | { [string]: string } | |
| default | string | |
| grant | string |
providerArn
Type:
string
scopes
Type:
string[]
customParameters?
Type:
IResolvable | { [string]: string }
(optional)
defaultReturnUrl?
Type:
string
(optional)
grantType?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript