interface IncludedOauth2TenantEndpoints
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.IncludedOauth2TenantEndpoints |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#IncludedOauth2TenantEndpoints |
Java | software.amazon.awscdk.services.bedrockagentcore.IncludedOauth2TenantEndpoints |
Python | aws_cdk.aws_bedrockagentcore.IncludedOauth2TenantEndpoints |
TypeScript (source) | aws-cdk-lib » aws_bedrockagentcore » IncludedOauth2TenantEndpoints |
Optional tenant OAuth endpoints for IdPs that use CloudFormation IncludedOauth2ProviderConfig with issuer and/or endpoints per the IdP’s outbound documentation.
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 includedOauth2TenantEndpoints: bedrockagentcore.IncludedOauth2TenantEndpoints = {
authorizationEndpoint: 'authorizationEndpoint',
issuer: 'issuer',
tokenEndpoint: 'tokenEndpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | string | OAuth2 authorization endpoint for your tenant. |
| issuer? | string | Token issuer URL for your tenant (often the IdP base or issuer URI). |
| token | string | OAuth2 token endpoint for your tenant. |
authorizationEndpoint?
Type:
string
(optional, default: not specified; use when your IdP requires an explicit endpoint)
OAuth2 authorization endpoint for your tenant.
issuer?
Type:
string
(optional, default: not specified; use when your IdP requires an explicit issuer)
Token issuer URL for your tenant (often the IdP base or issuer URI).
tokenEndpoint?
Type:
string
(optional, default: not specified; use when your IdP requires an explicit endpoint)
OAuth2 token endpoint for your tenant.

.NET
Go
Java
Python
TypeScript (