Get Authorizer
| apigatewayv2_get_authorizer | R Documentation | 
Gets an Authorizer¶
Description¶
Gets an Authorizer.
Usage¶
apigatewayv2_get_authorizer(ApiId, AuthorizerId)
Arguments¶
| ApiId | [required] The API identifier. | 
| AuthorizerId | [required] The authorizer identifier. | 
Value¶
A list with the following syntax:
list(
  AuthorizerCredentialsArn = "string",
  AuthorizerId = "string",
  AuthorizerPayloadFormatVersion = "string",
  AuthorizerResultTtlInSeconds = 123,
  AuthorizerType = "REQUEST"|"JWT",
  AuthorizerUri = "string",
  EnableSimpleResponses = TRUE|FALSE,
  IdentitySource = list(
    "string"
  ),
  IdentityValidationExpression = "string",
  JwtConfiguration = list(
    Audience = list(
      "string"
    ),
    Issuer = "string"
  ),
  Name = "string"
)
Request syntax¶
svc$get_authorizer(
  ApiId = "string",
  AuthorizerId = "string"
)