View source: R/apigateway_operations.R
apigateway_put_method | R Documentation |
Add a method to an existing Resource resource.
See https://www.paws-r-sdk.com/docs/apigateway_put_method/ for full documentation.
apigateway_put_method(
restApiId,
resourceId,
httpMethod,
authorizationType,
authorizerId = NULL,
apiKeyRequired = NULL,
operationName = NULL,
requestParameters = NULL,
requestModels = NULL,
requestValidatorId = NULL,
authorizationScopes = NULL
)
restApiId |
[required] The string identifier of the associated RestApi. |
resourceId |
[required] The Resource identifier for the new Method resource. |
httpMethod |
[required] Specifies the method request's HTTP method type. |
authorizationType |
[required] The method's authorization type. Valid values are |
authorizerId |
Specifies the identifier of an Authorizer to use on this Method, if the type is CUSTOM or COGNITO_USER_POOLS. The authorizer identifier is generated by API Gateway when you created the authorizer. |
apiKeyRequired |
Specifies whether the method required a valid ApiKey. |
operationName |
A human-friendly operation identifier for the method. For example, you
can assign the |
requestParameters |
A key-value map defining required or optional method request parameters
that can be accepted by API Gateway. A key defines a method request
parameter name matching the pattern of
|
requestModels |
Specifies the Model resources used for the request's content type. Request models are represented as a key/value map, with a content type as the key and a Model name as the value. |
requestValidatorId |
The identifier of a RequestValidator for validating the method request. |
authorizationScopes |
A list of authorization scopes configured on the method. The scopes are
used with a |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.