I am creating an api for my lambda function in aws using boto3. SO how do i add the option of having lambda proxy integration while creating the resource for that api.
I am using put_method for creating the resource for my api and its method type
api_client.put_method(restApiId=api_id,
resourceId=name_api_id,
httpMethod='ANY',
authorizationType='NONE')