File tree 5 files changed +5
-5
lines changed
aws-apigatewayv2-alpha/lib
aws-apigatewayv2-integrations-alpha/lib/http
5 files changed +5
-5
lines changed 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
257
257
* Explicitly configure no authorizers on specific HTTP API routes.
258
258
*/
259
259
export class HttpNoneAuthorizer implements IHttpRouteAuthorizer {
260
- public bind ( _ : HttpRouteAuthorizerBindOptions ) : HttpRouteAuthorizerConfig {
260
+ public bind ( _options : HttpRouteAuthorizerBindOptions ) : HttpRouteAuthorizerConfig {
261
261
return {
262
262
authorizationType : 'NONE' ,
263
263
} ;
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export interface IWebSocketRouteAuthorizer {
170
170
* Explicitly configure no authorizers on specific WebSocket API routes.
171
171
*/
172
172
export class WebSocketNoneAuthorizer implements IWebSocketRouteAuthorizer {
173
- public bind ( _ : WebSocketRouteAuthorizerBindOptions ) : WebSocketRouteAuthorizerConfig {
173
+ public bind ( _options : WebSocketRouteAuthorizerBindOptions ) : WebSocketRouteAuthorizerConfig {
174
174
return {
175
175
authorizationType : 'NONE' ,
176
176
} ;
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export class HttpUrlIntegration extends HttpRouteIntegration {
39
39
super ( id ) ;
40
40
}
41
41
42
- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
42
+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
43
43
return {
44
44
method : this . props . method ?? HttpMethod . ANY ,
45
45
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 {
63
63
} ) ;
64
64
}
65
65
66
- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
66
+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
67
67
return {
68
68
type : HttpIntegrationType . AWS_PROXY ,
69
69
uri : this . handler . functionArn ,
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export class HttpServiceDiscoveryIntegration extends HttpPrivateIntegration {
26
26
super ( id ) ;
27
27
}
28
28
29
- public bind ( _ : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
29
+ public bind ( _options : HttpRouteIntegrationBindOptions ) : HttpRouteIntegrationConfig {
30
30
if ( ! this . props . vpcLink ) {
31
31
throw new Error ( 'The vpcLink property is mandatory' ) ;
32
32
}
You can’t perform that action at this time.
0 commit comments