Get Authorizers
apigatewayv2_get_authorizers | R Documentation |
Gets the Authorizers for an API¶
Description¶
Gets the Authorizers for an API.
Usage¶
apigatewayv2_get_authorizers(ApiId, MaxResults, NextToken)
Arguments¶
ApiId |
[required] The API identifier. |
MaxResults |
The maximum number of elements to be returned for this resource. |
NextToken |
The next page of elements from this collection. Not valid for the last element of the collection. |
Value¶
A list with the following syntax:
list(
Items = list(
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"
)
),
NextToken = "string"
)
Request syntax¶
svc$get_authorizers(
ApiId = "string",
MaxResults = "string",
NextToken = "string"
)