Class: Aws::ApiGatewayV2::Types::JWTConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigatewayv2/types.rb

Overview

Represents the configuration of a JWT authorizer. Required for the JWT authorizer type. Supported only for HTTP APIs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#audienceArray<String>

A list of the intended recipients of the JWT. A valid JWT must provide an aud that matches at least one entry in this list. See [RFC 7519]. Supported only for HTTP APIs.

[1]: tools.ietf.org/html/rfc7519#section-4.1.3

Returns:

  • (Array<String>)


5035
5036
5037
5038
5039
5040
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 5035

class JWTConfiguration < Struct.new(
  :audience,
  :issuer)
  SENSITIVE = []
  include Aws::Structure
end

#issuerString

The base domain of the identity provider that issues JSON Web Tokens. For example, an Amazon Cognito user pool has the following format: cognito-idp.*region.amazonaws.com/userPoolId* . Required for the JWT authorizer type. Supported only for HTTP APIs.

Returns:

  • (String)


5035
5036
5037
5038
5039
5040
# File 'lib/aws-sdk-apigatewayv2/types.rb', line 5035

class JWTConfiguration < Struct.new(
  :audience,
  :issuer)
  SENSITIVE = []
  include Aws::Structure
end