OAuth2AuthorizationServerMetadata

class aws_cdk.aws_bedrock_agentcore_alpha.OAuth2AuthorizationServerMetadata(*, authorization_endpoint, issuer, token_endpoint, response_types=None)

Bases: object

(deprecated) Static OAuth2 authorization server metadata for custom credential providers.

Parameters:
  • authorization_endpoint (str) – (deprecated) The authorization endpoint URL.

  • issuer (str) – (deprecated) The issuer URL for the OAuth2 authorization server.

  • token_endpoint (str) – (deprecated) The token endpoint URL.

  • response_types (Optional[Sequence[str]]) – (deprecated) The supported response types. Default: - not specified

Deprecated:

Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.

See:

https://www.rfc-editor.org/rfc/rfc8414

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

o_auth2_authorization_server_metadata = bedrock_agentcore_alpha.OAuth2AuthorizationServerMetadata(
    authorization_endpoint="authorizationEndpoint",
    issuer="issuer",
    token_endpoint="tokenEndpoint",

    # the properties below are optional
    response_types=["responseTypes"]
)

Attributes

authorization_endpoint

(deprecated) The authorization endpoint URL.

Stability:

deprecated

issuer

(deprecated) The issuer URL for the OAuth2 authorization server.

Stability:

deprecated

response_types

(deprecated) The supported response types.

Default:
  • not specified

Stability:

deprecated

token_endpoint

(deprecated) The token endpoint URL.

Stability:

deprecated