View source: R/apigatewayv2_operations.R
apigatewayv2_create_route | R Documentation |
Creates a Route for an API.
See https://www.paws-r-sdk.com/docs/apigatewayv2_create_route/ for full documentation.
apigatewayv2_create_route(
ApiId,
ApiKeyRequired = NULL,
AuthorizationScopes = NULL,
AuthorizationType = NULL,
AuthorizerId = NULL,
ModelSelectionExpression = NULL,
OperationName = NULL,
RequestModels = NULL,
RequestParameters = NULL,
RouteKey,
RouteResponseSelectionExpression = NULL,
Target = NULL
)
ApiId |
[required] The API identifier. |
ApiKeyRequired |
Specifies whether an API key is required for the route. Supported only for WebSocket APIs. |
AuthorizationScopes |
The authorization scopes supported by this route. |
AuthorizationType |
The authorization type for the route. For WebSocket APIs, valid values are NONE for open access, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer For HTTP APIs, valid values are NONE for open access, JWT for using JSON Web Tokens, AWS_IAM for using AWS IAM permissions, and CUSTOM for using a Lambda authorizer. |
AuthorizerId |
The identifier of the Authorizer resource to be associated with this route. The authorizer identifier is generated by API Gateway when you created the authorizer. |
ModelSelectionExpression |
The model selection expression for the route. Supported only for WebSocket APIs. |
OperationName |
The operation name for the route. |
RequestModels |
The request models for the route. Supported only for WebSocket APIs. |
RequestParameters |
The request parameters for the route. Supported only for WebSocket APIs. |
RouteKey |
[required] The route key for the route. |
RouteResponseSelectionExpression |
The route response selection expression for the route. Supported only for WebSocket APIs. |
Target |
The target for the route. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.