IncludedOauth2TenantEndpoints
- class aws_cdk.aws_bedrock_agentcore_alpha.IncludedOauth2TenantEndpoints(*, authorization_endpoint=None, issuer=None, token_endpoint=None)
Bases:
object(deprecated) Optional tenant OAuth endpoints for IdPs that use CloudFormation
IncludedOauth2ProviderConfigwith issuer and/or endpoints per the IdP’s outbound documentation.- Parameters:
authorization_endpoint (
Optional[str]) – (deprecated) OAuth2 authorization endpoint for your tenant. Default: - not specified; use when your IdP requires an explicit endpointissuer (
Optional[str]) – (deprecated) Token issuer URL for your tenant (often the IdP base or issuer URI). Default: - not specified; use when your IdP requires an explicit issuertoken_endpoint (
Optional[str]) – (deprecated) OAuth2 token endpoint for your tenant. Default: - not specified; use when your IdP requires an explicit endpoint
- Deprecated:
Use the equivalent construct from
aws-cdk-lib/aws-bedrockagentcoreinstead.- Stability:
deprecated
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha included_oauth2_tenant_endpoints = bedrock_agentcore_alpha.IncludedOauth2TenantEndpoints( authorization_endpoint="authorizationEndpoint", issuer="issuer", token_endpoint="tokenEndpoint" )
Attributes
- authorization_endpoint
(deprecated) OAuth2 authorization endpoint for your tenant.
- Default:
not specified; use when your IdP requires an explicit endpoint
- Stability:
deprecated
- issuer
(deprecated) Token issuer URL for your tenant (often the IdP base or issuer URI).
- Default:
not specified; use when your IdP requires an explicit issuer
- Stability:
deprecated
- token_endpoint
(deprecated) OAuth2 token endpoint for your tenant.
- Default:
not specified; use when your IdP requires an explicit endpoint
- Stability:
deprecated