File tree Expand file tree Collapse file tree
aws-apigatewayv2-alpha/lib
aws-apigatewayv2-integrations-alpha/lib/http Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ function undefinedIfNoKeys<A extends { [key: string]: unknown }>(obj: A): A | un
257257 * Explicitly configure no authorizers on specific HTTP API routes.
258258 */
259259export class HttpNoneAuthorizer implements IHttpRouteAuthorizer {
260- public bind ( _ : HttpRouteAuthorizerBindOptions ) : HttpRouteAuthorizerConfig {
260+ public bind ( _options : HttpRouteAuthorizerBindOptions ) : HttpRouteAuthorizerConfig {
261261 return {
262262 authorizationType : 'NONE' ,
263263 } ;
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export interface IWebSocketRouteAuthorizer {
170170 * Explicitly configure no authorizers on specific WebSocket API routes.
171171 */
172172export class WebSocketNoneAuthorizer implements IWebSocketRouteAuthorizer {
173- public bind ( _ : WebSocketRouteAuthorizerBindOptions ) : WebSocketRouteAuthorizerConfig {
173+ public bind ( _options : WebSocketRouteAuthorizerBindOptions ) : WebSocketRouteAuthorizerConfig {
174174 return {
175175 authorizationType : 'NONE' ,
176176 } ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class HttpUrlIntegration extends HttpRouteIntegration {
3939 super ( id ) ;
4040 }
4141
42- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
42+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
4343 return {
4444 method : this . props . method ?? HttpMethod . ANY ,
4545 payloadFormatVersion : PayloadFormatVersion . VERSION_1_0 , // 1.0 is required and is the only supported format
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ export class HttpLambdaIntegration extends HttpRouteIntegration {
6363 } ) ;
6464 }
6565
66- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
66+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
6767 return {
6868 type : HttpIntegrationType . AWS_PROXY ,
6969 uri : this . handler . functionArn ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class HttpServiceDiscoveryIntegration extends HttpPrivateIntegration {
2626 super ( id ) ;
2727 }
2828
29- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
29+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
3030 if ( ! this . props . vpcLink ) {
3131 throw new Error ( 'The vpcLink property is mandatory' ) ;
3232 }
You can’t perform that action at this time.
0 commit comments