interface AtlassianOauth2ProviderConfigInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnOAuth2CredentialProvider.AtlassianOauth2ProviderConfigInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnOAuth2CredentialProvider_AtlassianOauth2ProviderConfigInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnOAuth2CredentialProvider.AtlassianOauth2ProviderConfigInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnOAuth2CredentialProvider.AtlassianOauth2ProviderConfigInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnOAuth2CredentialProvider » AtlassianOauth2ProviderConfigInputProperty |
Input configuration for an Atlassian 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 atlassianOauth2ProviderConfigInputProperty: bedrockagentcore.CfnOAuth2CredentialProvider.AtlassianOauth2ProviderConfigInputProperty = {
clientId: 'clientId',
// the properties below are optional
clientSecret: 'clientSecret',
clientSecretConfig: {
jsonKey: 'jsonKey',
secretId: 'secretId',
},
clientSecretSource: 'clientSecretSource',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | |
| client | string | |
| client | IResolvable | Secret | A reference to a customer-provided secret stored in AWS Secrets Manager. |
| client | string |
clientId
Type:
string
clientSecret?
Type:
string
(optional)
clientSecretConfig?
Type:
IResolvable | Secret
(optional)
A reference to a customer-provided secret stored in AWS Secrets Manager.
clientSecretSource?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript