import boto3
client = boto3.client('glue')
response = client.create_crawler(
Name='SalesCSVCrawler',
Role='AWSGlueServiceRoleDefault',
DatabaseName='sales-cvs',
Description='Crawler for generated Sales schema',
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface API { | |
| @GET("/user/{username}/dogs") | |
| Observable<Dog> getAllDogsOf(@Path("username") String username); | |
| @GET("/dog/{id}") | |
| Observable<Dog> getDogInfoById(@Path("id") int dogId); | |
| } |