SYMBOL INDEX (560 symbols across 224 files) FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Entities/Item.cs class Item (line 5) | public class Item FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Handlers/CreateItemHandler.cs class CreateItemHandler (line 11) | public class CreateItemHandler : IRequestHandler method CreateItemHandler (line 15) | public CreateItemHandler(IItemRepository itemRepository) method Handle (line 20) | public async Task Handle(CreateItemRequest request, Cancellation... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Handlers/GetItemHandler.cs class GetItemHandler (line 11) | public class GetItemHandler : IRequestHandler method GetItemHandler (line 15) | public GetItemHandler(IItemRepository itemRepository) method Handle (line 21) | public async Task Handle(GetItemRequest request, CancellationTok... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Handlers/UpdateItemHandler.cs class UpdateItemHandler (line 10) | public class UpdateItemHandler : IRequestHandler method UpdateItemHandler (line 14) | public UpdateItemHandler(IItemRepository itemRepository) method Handle (line 19) | public async Task Handle(UpdateItemRequest request, Cancellation... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Infrastructure/AWSClientFactory.cs type IAwsClientFactory (line 7) | public interface IAwsClientFactory method GetAwsClient (line 9) | T GetAwsClient(); class AwsClientFactory (line 12) | public class AwsClientFactory : IAwsClientFactory where T : Amazon... method AwsClientFactory (line 16) | public AwsClientFactory(AwsBasicConfiguration awsBasicConfiguration) method GetAwsClient (line 21) | public T GetAwsClient() FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Infrastructure/Configs/AwsBasicConfiguration.cs type IAwsBasicConfiguration (line 9) | public interface IAwsBasicConfiguration method GetAwsCredentials (line 15) | BasicAWSCredentials GetAwsCredentials(); class AwsBasicConfiguration (line 18) | public class AwsBasicConfiguration : IAwsBasicConfiguration method GetAwsCredentials (line 24) | public BasicAWSCredentials GetAwsCredentials() FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Infrastructure/Configs/DynamoDbConfiguration.cs class DynamoDbConfiguration (line 4) | public class DynamoDbConfiguration FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Infrastructure/Repositories/IItemRepository.cs type IItemRepository (line 8) | public interface IItemRepository method GetById (line 10) | Task> GetById(string id, CancellationToken cancellat... method Save (line 12) | Task Save(Item item, CancellationToken cancellationToken); FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Infrastructure/Repositories/ItemDynamoRepository.cs class ItemDynamoRepository (line 12) | public class ItemDynamoRepository : IItemRepository method ItemDynamoRepository (line 17) | public ItemDynamoRepository(DynamoDbConfiguration configuration, method Save (line 28) | public async Task Save(Item item, CancellationToken cancellationToken) method GetById (line 36) | public async Task> GetById(string id, CancellationTo... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Requests/CreateItemRequest.cs class CreateItemRequest (line 6) | public class CreateItemRequest : IRequest method Map (line 12) | public Item Map() FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Requests/GetItemRequest.cs class GetItemRequest (line 7) | public class GetItemRequest : IRequest FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Requests/UpdateItemRequest.cs class UpdateItemRequest (line 6) | public class UpdateItemRequest : IRequest method Map (line 13) | public Item Map() FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Application/Responses/ItemResponse.cs class ItemResponse (line 5) | public class ItemResponse FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Extensions/ServicesExtensions.cs class ServiceCollectionExtensions (line 6) | public static class ServiceCollectionExtensions method BindAndConfigure (line 8) | public static IServiceCollection BindAndConfigure(this IServi... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Functions/CreateItemFunction.cs class CreateItemFunction (line 12) | public class CreateItemFunction method CreateItemFunction (line 16) | public CreateItemFunction() : this(Startup method CreateItemFunction (line 22) | public CreateItemFunction(IServiceProvider serviceProvider) method Run (line 27) | [LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializ... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Functions/GetItemFunction.cs class GetItemFunction (line 12) | public class GetItemFunction method GetItemFunction (line 16) | public GetItemFunction() : this(Startup method GetItemFunction (line 22) | public GetItemFunction(IServiceProvider serviceProvider) method Run (line 27) | [LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializ... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Functions/UpdateItemFunction.cs class UpdateItemFunction (line 12) | public class UpdateItemFunction method UpdateItemFunction (line 16) | public UpdateItemFunction() : this(Startup method UpdateItemFunction (line 22) | public UpdateItemFunction(IServiceProvider serviceProvider) method Run (line 27) | [LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializ... FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Program.cs class Program (line 3) | public class Program method Main (line 5) | public static void Main(string[] args) FILE: aws-dotnet-rest-api-with-dynamodb/src/DotNetServerless.Lambda/Startup.cs class Startup (line 12) | public class Startup method BuildContainer (line 14) | public static IServiceCollection BuildContainer() method ConfigureServices (line 25) | private static IServiceCollection ConfigureServices(IConfigurationRoot... FILE: aws-dotnet-rest-api-with-dynamodb/tests/DotNetServerless.Tests/Functions/CreateItemFunctionTests.cs class CreateItemFunctionTests (line 17) | public class CreateItemFunctionTests method CreateItemFunctionTests (line 19) | public CreateItemFunctionTests() method run_should_trigger_mediator_handler_and_repository (line 35) | [Fact] method run_should_return_201_created (line 42) | [Theory] FILE: aws-dotnet-rest-api-with-dynamodb/tests/DotNetServerless.Tests/Functions/GetItemFunctionTests.cs class GetItemFunctionTests (line 17) | public class GetItemFunctionTests method GetItemFunctionTests (line 19) | public GetItemFunctionTests() method run_should_trigger_mediator_handler_and_repository (line 35) | [Fact] method run_should_return_200_when_find_the_record (line 45) | [Theory] method run_should_return_404_when_NOT_find_the_record (line 57) | [Theory] FILE: aws-dotnet-rest-api-with-dynamodb/tests/DotNetServerless.Tests/Functions/UpdateItemFunctionTests.cs class UpdateItemFunctionTests (line 17) | public class UpdateItemFunctionTests method UpdateItemFunctionTests (line 19) | public UpdateItemFunctionTests() method run_should_trigger_mediator_handler_and_repository (line 35) | [Fact] method run_should_return_200_when_updates (line 42) | [Theory] FILE: aws-ffmpeg-layer/handler.js constant AWS (line 3) | const AWS = require("aws-sdk"); FILE: aws-golang-auth-examples/functions/auth/auth_suite_test.go function TestAuth (line 10) | func TestAuth(t *testing.T) { FILE: aws-golang-auth-examples/functions/auth/main.go function handler (line 11) | func handler(request events.APIGatewayCustomAuthorizerRequest) (events.A... function main (line 25) | func main() { function generatePolicy (line 29) | func generatePolicy(principalID, effect, resource string) events.APIGate... FILE: aws-golang-auth-examples/functions/auth2/auth_suite_test.go function TestAuth (line 10) | func TestAuth(t *testing.T) { FILE: aws-golang-auth-examples/functions/auth2/main.go function handler (line 11) | func handler(request events.APIGatewayCustomAuthorizerRequest) (events.A... function main (line 25) | func main() { function generatePolicy (line 29) | func generatePolicy(principalID, effect, resource string, context map[st... FILE: aws-golang-auth-examples/functions/hello-world/hello_world_suite_test.go function TestHelloWorld (line 10) | func TestHelloWorld(t *testing.T) { FILE: aws-golang-auth-examples/functions/hello-world/main.go function handler (line 8) | func handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 15) | func main() { FILE: aws-golang-auth-examples/functions/hello-world2/hello_world_suite_test.go function TestHelloWorld (line 10) | func TestHelloWorld(t *testing.T) { FILE: aws-golang-auth-examples/functions/hello-world2/main.go function handler (line 11) | func handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 28) | func main() { FILE: aws-golang-dynamo-stream-to-elasticsearch/cmd/aws-golang-dynamo-stream-to-elasticsearch/main.go function handler (line 23) | func handler(e events.DynamoDBEvent) error { function main (line 59) | func main() { FILE: aws-golang-dynamo-stream-to-elasticsearch/cmd/seed-dynamo/main.go function init (line 15) | func init() { type puppy (line 19) | type puppy struct function main (line 32) | func main() { FILE: aws-golang-dynamo-stream-to-elasticsearch/dstream/details.go type DynamoDetails (line 13) | type DynamoDetails struct method Get (line 23) | func (d *DynamoDetails) Get(tableName string) (details *Details, err e... type Details (line 18) | type Details struct function findAttributeByKeyType (line 52) | func findAttributeByKeyType(schema []*dynamodb.KeySchemaElement, keyType... FILE: aws-golang-dynamo-stream-to-elasticsearch/dstream/update.go type Elasticsearch (line 15) | type Elasticsearch struct method Update (line 23) | func (e *Elasticsearch) Update(d *Details, item map[string]events.Dyna... method docType (line 44) | func (d *Details) docType() string { method docID (line 51) | func (d *Details) docID(item map[string]events.DynamoDBAttributeValue) (... method index (line 62) | func (d *Details) index() string { function eventStreamToMap (line 68) | func eventStreamToMap(attribute interface{}) map[string]*dynamodb.Attrib... function eventStreamToList (line 113) | func eventStreamToList(attribute interface{}) []*dynamodb.AttributeValue { FILE: aws-golang-googlemap/geomap/geomap.go type GooglePlaceDetailResponse (line 22) | type GooglePlaceDetailResponse struct type GoogleGeocodeResponse (line 53) | type GoogleGeocodeResponse struct type GooglePlaceSearchResponse (line 65) | type GooglePlaceSearchResponse struct type GoogleNearbySearchResponse (line 70) | type GoogleNearbySearchResponse struct type OpeningHour (line 92) | type OpeningHour struct type GooglePlaceReview (line 103) | type GooglePlaceReview struct type Candidate (line 114) | type Candidate struct type Photo (line 121) | type Photo struct type GooglePlusCode (line 128) | type GooglePlusCode struct type AddressComponent (line 133) | type AddressComponent struct type GoogleGeometry (line 139) | type GoogleGeometry struct type GoogleLocation (line 145) | type GoogleLocation struct type GoogleViewport (line 150) | type GoogleViewport struct function init (line 159) | func init() { function GetGeocode (line 169) | func GetGeocode(ctx context.Context, params map[string]string) (GoogleGe... function FindPlace (line 216) | func FindPlace(ctx context.Context, params map[string]string) (GooglePla... function PlaceNearby (line 263) | func PlaceNearby(ctx context.Context, params map[string]string) (GoogleN... function PlaceDetail (line 310) | func PlaceDetail(ctx context.Context, params map[string]string) (GoogleP... FILE: aws-golang-googlemap/getgeodetail/main.go type Response (line 17) | type Response function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 48) | func main() { FILE: aws-golang-googlemap/getgeolocation/main.go type Response (line 17) | type Response function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 48) | func main() { FILE: aws-golang-googlemap/getnearbylocation/main.go type Response (line 17) | type Response function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 60) | func main() { FILE: aws-golang-googlemap/getsearchlocation/main.go type Response (line 17) | type Response function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 48) | func main() { FILE: aws-golang-http-get-post/getFolder/getExample.go function Handler (line 11) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 23) | func main() { FILE: aws-golang-http-get-post/getFolder/getQueryExample.go function Handler (line 11) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 23) | func main() { FILE: aws-golang-http-get-post/postFolder/postExample.go type BodyRequest (line 11) | type BodyRequest struct type BodyResponse (line 16) | type BodyResponse struct function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 49) | func main() { FILE: aws-golang-rest-api-with-dynamodb/todos/create.go type Item (line 17) | type Item struct function Handler (line 23) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 88) | func main() { FILE: aws-golang-rest-api-with-dynamodb/todos/delete.go type Item (line 14) | type Item struct function Handler (line 20) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 53) | func main() { FILE: aws-golang-rest-api-with-dynamodb/todos/get.go type Item (line 16) | type Item struct function Handler (line 22) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 77) | func main() { FILE: aws-golang-rest-api-with-dynamodb/todos/list.go type Item (line 16) | type Item struct function Handler (line 22) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 75) | func main() { FILE: aws-golang-rest-api-with-dynamodb/todos/update.go type Item (line 15) | type Item struct function Handler (line 21) | func Handler(request events.APIGatewayProxyRequest) (events.APIGatewayPr... function main (line 77) | func main() { FILE: aws-golang-s3-file-replicator/src/main.go function Handler (line 17) | func Handler(ctx context.Context, S3Event events.S3Event) { function main (line 45) | func main() { FILE: aws-golang-simple-http-endpoint/hello/main.go type Response (line 16) | type Response function Handler (line 19) | func Handler(ctx context.Context) (Response, error) { function main (line 43) | func main() { FILE: aws-golang-simple-http-endpoint/world/main.go type Response (line 16) | type Response function Handler (line 19) | func Handler(ctx context.Context) (Response, error) { function main (line 43) | func main() { FILE: aws-golang-stream-kinesis-to-elasticsearch/elastic/elastic.go type Elastic (line 14) | type Elastic struct method PushRecords (line 31) | func (e *Elastic) PushRecords(data []events.KinesisEventRecord) error { function NewClient (line 19) | func NewClient(host, schema string) (*Elastic, error) { FILE: aws-golang-stream-kinesis-to-elasticsearch/main.go function handler (line 13) | func handler(ctx context.Context, event events.KinesisEvent) error { function main (line 22) | func main() { FILE: aws-java-simple-http-endpoint/src/main/java/com/serverless/ApiGatewayResponse.java class ApiGatewayResponse (line 13) | public class ApiGatewayResponse { method ApiGatewayResponse (line 20) | public ApiGatewayResponse(int statusCode, String body, Map getHeaders() { method isIsBase64Encoded (line 40) | public boolean isIsBase64Encoded() { method builder (line 44) | public static Builder builder() { class Builder (line 48) | public static class Builder { method setStatusCode (line 61) | public Builder setStatusCode(int statusCode) { method setHeaders (line 66) | public Builder setHeaders(Map headers) { method setRawBody (line 74) | public Builder setRawBody(String rawBody) { method setObjectBody (line 83) | public Builder setObjectBody(Object objectBody) { method setBinaryBody (line 93) | public Builder setBinaryBody(byte[] binaryBody) { method setBase64Encoded (line 107) | public Builder setBase64Encoded(boolean base64Encoded) { method build (line 112) | public ApiGatewayResponse build() { FILE: aws-java-simple-http-endpoint/src/main/java/com/serverless/Handler.java class Handler (line 12) | public class Handler implements RequestHandler, ApiG... method handleRequest (line 16) | @Override FILE: aws-java-simple-http-endpoint/src/main/java/com/serverless/Response.java class Response (line 3) | public class Response { method Response (line 7) | public Response(String message) { method getMessage (line 11) | public String getMessage() { FILE: aws-multiple-runtime/web/handler.py function hello (line 4) | def hello(event, context): FILE: aws-node-auth0-custom-authorizers-api/frontend/app.js constant AUTH0_CLIENT_ID (line 4) | const AUTH0_CLIENT_ID = 'your-auth0-client-id-here'; constant AUTH0_DOMAIN (line 5) | const AUTH0_DOMAIN = 'your-auth0-domain-here.auth0.com'; constant AUTH0_CALLBACK_URL (line 6) | const AUTH0_CALLBACK_URL = window.location.href; constant PUBLIC_ENDPOINT (line 7) | const PUBLIC_ENDPOINT = 'https://your-aws-endpoint-here.amazonaws.com/de... constant PRIVATE_ENDPOINT (line 8) | const PRIVATE_ENDPOINT = 'https://your-aws-endpoint-here.us-east-1.amazo... function updateUI (line 21) | function updateUI() { FILE: aws-node-auth0-custom-authorizers-api/handler.js constant AUTH0_CLIENT_ID (line 4) | const AUTH0_CLIENT_ID = process.env.AUTH0_CLIENT_ID; constant AUTH0_CLIENT_PUBLIC_KEY (line 5) | const AUTH0_CLIENT_PUBLIC_KEY = process.env.AUTH0_CLIENT_PUBLIC_KEY; FILE: aws-node-cdk-extension/lib/example-stack.js class ExampleStack (line 4) | class ExampleStack extends Stack { method constructor (line 11) | constructor (scope, id, props) { FILE: aws-node-dynamic-image-resizer/src/handlers/resizer/resizeHandler.js class ResizerHandler (line 6) | class ResizerHandler { method constructor (line 7) | constructor(){ } method _process (line 9) | async _process(event) { method resize (line 14) | async resize(size, path) { FILE: aws-node-dynamic-image-resizer/src/handlers/resizer/s3Handler.js class S3Handler (line 7) | class S3Handler { method constructor (line 8) | constructor() { } method readStream (line 10) | readStream({ Bucket, Key }) { method writeStream (line 14) | writeStream({ Bucket, Key }) { FILE: aws-node-dynamic-image-resizer/src/lib/BaseHandler.js class BaseHandler (line 1) | class BaseHandler { method constructor (line 2) | constructor() { method execute (line 6) | async execute(event, context) { method _process (line 11) | async _process(event, context) { FILE: aws-node-express-dynamodb-api/handler.js constant USERS_TABLE (line 14) | const USERS_TABLE = process.env.USERS_TABLE; FILE: aws-node-fetch-file-and-store-in-s3/handler.js constant AWS (line 4) | const AWS = require('aws-sdk'); FILE: aws-node-fullstack/frontend/src/DemoApp.js constant INITIAL_API_REQUESTS (line 9) | const INITIAL_API_REQUESTS = 50 constant INITIAL_STATUS (line 10) | const INITIAL_STATUS = 'Ready for testing!' class DemoApp (line 16) | class DemoApp extends Component { method constructor (line 22) | constructor(props) { method componentDidMount (line 52) | componentDidMount() { method toggleAdmin (line 78) | toggleAdmin() { method setStatus (line 87) | setStatus(status) { method submitForm (line 100) | submitForm(event) { method updateApi (line 134) | updateApi(event) { method generateInvocations (line 170) | generateInvocations(event) { method generateRandomError (line 220) | generateRandomError(event) { method render (line 258) | render() { FILE: aws-node-github-check/handler.js function githubCheck (line 6) | async function githubCheck(event, context, callback) { FILE: aws-node-github-check/libs/github-service.js function isAValidPullRequest (line 1) | function isAValidPullRequest(body) { function eventIsAPullRequest (line 5) | function eventIsAPullRequest(body) { function updatePullRequestStatus (line 9) | function updatePullRequestStatus(githubClient, payload, repository, pull... FILE: aws-node-github-check/libs/response-lib.js function buildResponse (line 1) | function buildResponse(statusCode, body) { function buildGithubPayload (line 8) | function buildGithubPayload(state, description) { function success (line 16) | function success(body) { function failure (line 20) | function failure(body) { function githubSuccessPayload (line 24) | function githubSuccessPayload() { function githubFailurePayload (line 28) | function githubFailurePayload() { FILE: aws-node-github-webhook-listener/handler.js function signRequestBody (line 3) | function signRequestBody(key, body) { FILE: aws-node-graphql-api-with-dynamodb/handler.js constant AWS (line 9) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb-local/todos/dynamodb.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb/todos/create.js constant AWS (line 4) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb/todos/delete.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb/todos/get.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb/todos/list.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-dynamodb/todos/update.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-http-api-mongodb/handler.js function dbConnectAndExecute (line 18) | function dbConnectAndExecute(dbUrl, fn) { FILE: aws-node-http-api-mongodb/model/User.js method validator (line 9) | validator(name) { method validator (line 18) | validator(firstname) { method validator (line 31) | validator(city) { method validator (line 40) | validator(ip) { FILE: aws-node-http-api-typescript-dynamodb/todos/update.ts constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-rekognition-analysis-s3-image/lib/imageAnalyser.js constant AWS (line 3) | const AWS = require('aws-sdk'); class ImageAnalyser (line 7) | class ImageAnalyser { method getImageLabels (line 9) | static getImageLabels(s3Config) { FILE: aws-node-rest-api-mongodb/handler.js function dbConnectAndExecute (line 18) | function dbConnectAndExecute(dbUrl, fn) { FILE: aws-node-rest-api-mongodb/model/User.js method validator (line 9) | validator(name) { method validator (line 18) | validator(firstname) { method validator (line 31) | validator(city) { method validator (line 40) | validator(ip) { FILE: aws-node-rest-api-typescript/app/controller/books.ts class BooksController (line 7) | class BooksController extends BooksService { method constructor (line 8) | constructor (books: Model) { method create (line 16) | async create (event: any, context?: Context) { method update (line 38) | async update (event: any) { method find (line 55) | async find () { method findOne (line 71) | async findOne (event: any, context: Context) { method deleteOne (line 92) | async deleteOne (event: any) { FILE: aws-node-rest-api-typescript/app/model/books.ts type BooksDocument (line 3) | type BooksDocument = mongoose.Document & { FILE: aws-node-rest-api-typescript/app/model/dto/createBookDTO.ts class CreateBookDTO (line 1) | class CreateBookDTO { FILE: aws-node-rest-api-typescript/app/model/vo/responseVo.ts class ResponseBodyVO (line 1) | class ResponseBodyVO { class ResponseVO (line 7) | class ResponseVO { FILE: aws-node-rest-api-typescript/app/service/books.ts class BooksService (line 4) | class BooksService { method constructor (line 6) | constructor(books: Model) { method createBook (line 14) | protected async createBook (params: CreateBookDTO): Promise { method updateBooks (line 34) | protected updateBooks (id: number, data: object) { method findBooks (line 45) | protected findBooks () { method findOneBookById (line 53) | protected findOneBookById (id: number) { method deleteOneBookById (line 61) | protected deleteOneBookById (id: number) { FILE: aws-node-rest-api-typescript/app/utils/message.ts type StatusCode (line 3) | enum StatusCode { class Result (line 7) | class Result { method constructor (line 13) | constructor(statusCode: number, code: number, message: string, data?: ... method bodyToString (line 23) | bodyToString () { class MessageUtil (line 35) | class MessageUtil { method success (line 36) | static success(data: object): ResponseVO { method error (line 42) | static error(code: number = 1000, message: string) { FILE: aws-node-rest-api-with-dynamodb-and-offline/todos/dynamodb.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-rest-api-with-dynamodb/todos/create.js constant AWS (line 4) | const AWS = require('aws-sdk'); FILE: aws-node-rest-api-with-dynamodb/todos/delete.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-rest-api-with-dynamodb/todos/get.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-rest-api-with-dynamodb/todos/list.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-rest-api-with-dynamodb/todos/update.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-s3-file-replicator/handler.js function replicatePromise (line 28) | function replicatePromise(record, destBucket) { FILE: aws-node-serverless-gong/handler.js function signRequestBody (line 5) | function signRequestBody(key, body) { FILE: aws-node-ses-receive-email-body/handler.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-single-page-app-via-cloudfront/app/app.js function renderApp (line 4) | function renderApp() { function navigate (line 17) | function navigate(evt) { FILE: aws-node-single-page-app-via-cloudfront/serverless-single-page-app-plugin/index.js class ServerlessPlugin (line 5) | class ServerlessPlugin { method constructor (line 6) | constructor(serverless, options) { method runAwsCommand (line 39) | runAwsCommand(args) { method syncDirectory (line 61) | syncDirectory() { method domainInfo (line 79) | async domainInfo() { method invalidateCache (line 105) | async invalidateCache() { FILE: aws-node-text-analysis-via-sns-post-processing/addNote.js constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-twilio-send-text-message/messenger.js class Messenger (line 3) | class Messenger { method constructor (line 4) | constructor(client) { method send (line 8) | send(event) { FILE: aws-node-typescript-apollo-lambda/src/graphql/apolloServer.ts constant NODE_ENV (line 6) | const NODE_ENV = process.env.NODE_ENV; constant IS_DEV (line 8) | const IS_DEV = !NODE_ENV || !['production'].includes(NODE_ENV); FILE: aws-node-typescript-apollo-lambda/src/graphql/resolvers/mutations/dummyMutation.ts function dummyMutation (line 3) | async function dummyMutation( FILE: aws-node-typescript-apollo-lambda/src/graphql/resolvers/queries/dummyQuery.ts function dummyQuery (line 3) | async function dummyQuery( FILE: aws-node-typescript-apollo-lambda/src/graphql/resolvers/typings.ts type IDummyObject (line 1) | interface IDummyObject { type IDummyQueryArgs (line 6) | interface IDummyQueryArgs { type IDummyMutationArgs (line 10) | interface IDummyMutationArgs { FILE: aws-node-typescript-nest/src/app.controller.ts class AppController (line 5) | class AppController { method constructor (line 6) | constructor(private readonly appService: AppService) {} method getHello (line 9) | getHello(): string { FILE: aws-node-typescript-nest/src/app.module.ts class AppModule (line 10) | class AppModule {} FILE: aws-node-typescript-nest/src/app.service.ts class AppService (line 4) | class AppService { method getHello (line 5) | getHello(): string { FILE: aws-node-typescript-nest/src/main.ts function bootstrapServer (line 25) | async function bootstrapServer(): Promise { FILE: aws-node-typescript-rest-api-with-dynamodb/todos/update.ts constant AWS (line 3) | const AWS = require('aws-sdk'); FILE: aws-node-upload-to-s3-and-postprocess/generate-form.js function getSignatureKey (line 8) | function getSignatureKey(key, dateStamp, regionName, serviceName) { FILE: aws-node-websockets-authorizers/handler.js constant AWS (line 3) | const AWS = require('aws-sdk') FILE: aws-python-alexa-skill/handler.py function parseInt (line 4) | def parseInt(value): function lucky_number (line 11) | def lucky_number(event, context): FILE: aws-python-auth0-custom-authorizers-api/frontend/app.js constant AUTH0_CLIENT_ID (line 4) | const AUTH0_CLIENT_ID = 'your-auth0-client-id-here'; constant AUTH0_DOMAIN (line 5) | const AUTH0_DOMAIN = 'your-auth0-domain-here.auth0.com'; constant AUTH0_CALLBACK_URL (line 6) | const AUTH0_CALLBACK_URL = window.location.href; constant PUBLIC_ENDPOINT (line 7) | const PUBLIC_ENDPOINT = 'https://your-aws-endpoint-here.amazonaws.com/de... constant PRIVATE_ENDPOINT (line 8) | const PRIVATE_ENDPOINT = 'https://your-aws-endpoint-here.us-east-1.amazo... function updateUI (line 21) | function updateUI() { FILE: aws-python-auth0-custom-authorizers-api/lambda_handlers.py function auth (line 14) | def auth(event, context): function public_endpoint (line 39) | def public_endpoint(event, context): function private_endpoint (line 43) | def private_endpoint(event, context): function jwt_verify (line 47) | def jwt_verify(auth_token, public_key): function generate_policy (line 54) | def generate_policy(principal_id, effect, resource): function convert_certificate_to_pem (line 71) | def convert_certificate_to_pem(public_key): function format_public_key (line 78) | def format_public_key(public_key): function create_200_response (line 85) | def create_200_response(message): function create_aws_lambda_response (line 95) | def create_aws_lambda_response(status_code, message, headers): FILE: aws-python-flask-api/app.py function hello_from_root (line 7) | def hello_from_root(): function hello (line 12) | def hello(): function resource_not_found (line 17) | def resource_not_found(e): FILE: aws-python-flask-dynamodb-api/app.py function get_user (line 21) | def get_user(user_id): function create_user (line 35) | def create_user(): function resource_not_found (line 49) | def resource_not_found(e): FILE: aws-python-http-api-with-dynamodb/todos/create.py function create (line 11) | def create(event, context): FILE: aws-python-http-api-with-dynamodb/todos/decimalencoder.py class DecimalEncoder (line 6) | class DecimalEncoder(json.JSONEncoder): method default (line 7) | def default(self, obj): FILE: aws-python-http-api-with-dynamodb/todos/delete.py function delete (line 7) | def delete(event, context): FILE: aws-python-http-api-with-dynamodb/todos/get.py function get (line 9) | def get(event, context): FILE: aws-python-http-api-with-dynamodb/todos/list.py function list (line 9) | def list(event, context): FILE: aws-python-http-api-with-dynamodb/todos/update.py function update (line 11) | def update(event, context): FILE: aws-python-http-api-with-pynamodb/todos/create.py function create (line 8) | def create(event, context): FILE: aws-python-http-api-with-pynamodb/todos/delete.py function delete (line 7) | def delete(event, context): FILE: aws-python-http-api-with-pynamodb/todos/get.py function get (line 7) | def get(event, context): FILE: aws-python-http-api-with-pynamodb/todos/list.py function todo_list (line 6) | def todo_list(event, context): FILE: aws-python-http-api-with-pynamodb/todos/todo_model.py class TodoModel (line 8) | class TodoModel(Model): class Meta (line 9) | class Meta: method save (line 23) | def save(self, conditional_operator=None, **expected_values): method __iter__ (line 27) | def __iter__(self): FILE: aws-python-http-api-with-pynamodb/todos/update.py function update (line 8) | def update(event, context): FILE: aws-python-http-api/handler.py function hello (line 4) | def hello(event, context): FILE: aws-python-line-echo-bot/handler.py function webhook (line 10) | def webhook(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/asset_model.py class State (line 13) | class State(Enum): class AssetModel (line 24) | class AssetModel(Model): class Meta (line 25) | class Meta: method __str__ (line 39) | def __str__(self): method get_key (line 42) | def get_key(self): method save (line 45) | def save(self, conditional_operator=None, **expected_values): method __iter__ (line 54) | def __iter__(self): method get_upload_url (line 58) | def get_upload_url(self, ttl=60): method get_download_url (line 76) | def get_download_url(self, ttl=60): method mark_received (line 100) | def mark_received(self): method mark_uploaded (line 108) | def mark_uploaded(self): method mark_deleted (line 119) | def mark_deleted(self): FILE: aws-python-pynamodb-s3-sigurl/asset/bucket.py function event (line 8) | def event(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/create.py function create (line 7) | def create(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/delete.py function delete (line 7) | def delete(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/get.py function get (line 8) | def get(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/list.py function asset_list (line 6) | def asset_list(event, context): FILE: aws-python-pynamodb-s3-sigurl/asset/update.py function update (line 8) | def update(event, context): FILE: aws-python-rest-api-with-dynamodb/todos/create.py function create (line 11) | def create(event, context): FILE: aws-python-rest-api-with-dynamodb/todos/decimalencoder.py class DecimalEncoder (line 6) | class DecimalEncoder(json.JSONEncoder): method default (line 7) | def default(self, obj): FILE: aws-python-rest-api-with-dynamodb/todos/delete.py function delete (line 7) | def delete(event, context): FILE: aws-python-rest-api-with-dynamodb/todos/get.py function get (line 9) | def get(event, context): FILE: aws-python-rest-api-with-dynamodb/todos/list.py function list (line 9) | def list(event, context): FILE: aws-python-rest-api-with-dynamodb/todos/update.py function update (line 11) | def update(event, context): FILE: aws-python-rest-api-with-faunadb/todos/create.py function create (line 9) | def create(event, context): FILE: aws-python-rest-api-with-faunadb/todos/delete.py function delete (line 6) | def delete(event, context): FILE: aws-python-rest-api-with-faunadb/todos/get.py function get (line 9) | def get(event, context): FILE: aws-python-rest-api-with-faunadb/todos/list.py function list (line 8) | def list(event, context): FILE: aws-python-rest-api-with-faunadb/todos/makeresult.py function _to_epoch (line 3) | def _to_epoch(fauna_time): function make_result (line 6) | def make_result(value): FILE: aws-python-rest-api-with-faunadb/todos/schema.py function schema (line 5) | def schema(event, context): FILE: aws-python-rest-api-with-faunadb/todos/update.py function update (line 10) | def update(event, context): FILE: aws-python-rest-api-with-pymongo/item/create.py function create (line 19) | def create(event, context): FILE: aws-python-rest-api-with-pymongo/item/delete.py function delete (line 17) | def delete(event, context): FILE: aws-python-rest-api-with-pymongo/item/get.py function get (line 18) | def get(event, context): FILE: aws-python-rest-api-with-pymongo/item/list.py function list (line 18) | def list(event, context): FILE: aws-python-rest-api-with-pynamodb/todos/create.py function create (line 8) | def create(event, context): FILE: aws-python-rest-api-with-pynamodb/todos/delete.py function delete (line 7) | def delete(event, context): FILE: aws-python-rest-api-with-pynamodb/todos/get.py function get (line 7) | def get(event, context): FILE: aws-python-rest-api-with-pynamodb/todos/list.py function todo_list (line 6) | def todo_list(event, context): FILE: aws-python-rest-api-with-pynamodb/todos/todo_model.py class TodoModel (line 8) | class TodoModel(Model): class Meta (line 9) | class Meta: method save (line 23) | def save(self, conditional_operator=None, **expected_values): method __iter__ (line 27) | def __iter__(self): FILE: aws-python-rest-api-with-pynamodb/todos/update.py function update (line 8) | def update(event, context): FILE: aws-python-rest-api/handler.py function hello (line 4) | def hello(event, context): FILE: aws-python-scheduled-cron/handler.py function run (line 8) | def run(event, context): FILE: aws-python-simple-http-endpoint/handler.py function endpoint (line 5) | def endpoint(event, context): FILE: aws-python-sqs-worker/handler.py function producer (line 14) | def producer(event, context): function consumer (line 39) | def consumer(event, context): FILE: aws-python-telegram-bot/handler.py function configure_telegram (line 25) | def configure_telegram(): function webhook (line 40) | def webhook(event, context): function set_webhook (line 67) | def set_webhook(event, context): FILE: aws-python/handler.py function hello (line 4) | def hello(event, context): FILE: aws-ruby-cron-with-dynamodb/src/common/adapters/dynamo_db_adapter.rb class DynamoDBAdapter (line 6) | class DynamoDBAdapter method initialize (line 8) | def initialize method save_item (line 12) | def save_item(item) method logger (line 21) | def logger method table_item (line 25) | def table_item(item) FILE: aws-ruby-cron-with-dynamodb/src/common/services/create_meal_order_service.rb class CreateMealOrderService (line 9) | class CreateMealOrderService method call (line 13) | def call method save (line 18) | def save(order) method build_order (line 24) | def build_order FILE: aws-ruby-cron-with-dynamodb/src/handlers/create_meal_order/handler.rb function run (line 5) | def run(event:, context:) FILE: aws-ruby-line-bot/handler.rb function webhook (line 3) | def webhook(event:, context:) FILE: aws-ruby-simple-http-endpoint/handler.rb function endpoint (line 1) | def endpoint(event:, context:) FILE: aws-ruby-sqs-with-dynamodb/src/common/adapters/dynamo_db_adapter.rb class DynamoDBAdapter (line 6) | class DynamoDBAdapter method initialize (line 8) | def initialize method save_item (line 12) | def save_item(item) method logger (line 21) | def logger method table_item (line 25) | def table_item(item) FILE: aws-ruby-sqs-with-dynamodb/src/common/adapters/sqs_adapter.rb class SqsAdapter (line 6) | class SqsAdapter method initialize (line 8) | def initialize method send_message (line 12) | def send_message(message) method logger (line 26) | def logger FILE: aws-ruby-sqs-with-dynamodb/src/common/helpers/requests_helper.rb class Requests (line 3) | class Requests method initialize (line 4) | def initialize(body) method call (line 8) | def call method transform_body (line 14) | def transform_body(body) FILE: aws-ruby-sqs-with-dynamodb/src/common/serializers/error_serializer.rb type ErrorSerializer (line 3) | module ErrorSerializer function serialize (line 4) | def self.serialize(exception) function dry_errors (line 8) | def self.dry_errors(exception) function handle_unprocessable_exception (line 18) | def self.handle_unprocessable_exception(exception) FILE: aws-ruby-sqs-with-dynamodb/src/common/services/create_lottery_coupon_service.rb class CreateLotteryCouponService (line 8) | class CreateLotteryCouponService method initialize (line 12) | def initialize(attributes) method call (line 16) | def call method save (line 21) | def save(coupon) method build_coupon (line 29) | def build_coupon FILE: aws-ruby-sqs-with-dynamodb/src/common/services/create_sqs_message_service.rb class CreateSqsMessageService (line 5) | class CreateSqsMessageService method initialize (line 7) | def initialize(params) method call (line 11) | def call method send_message (line 20) | def send_message(message) method sqs_message (line 24) | def sqs_message(params) FILE: aws-ruby-sqs-with-dynamodb/src/common/validators/lottery_coupon_validator.rb class LotteryCouponValidator (line 5) | class LotteryCouponValidator method initialize (line 9) | def initialize(coupon) method failure? (line 14) | def failure? method errors (line 18) | def errors FILE: aws-ruby-sqs-with-dynamodb/src/handlers/lottery/handler.rb function run (line 10) | def run(event:, context:) function unprocessable_entity (line 18) | def unprocessable_entity(errors) function create_sqs_message (line 24) | def create_sqs_message(body) function serialize_errors (line 31) | def serialize_errors(errors) function transform_event_body (line 35) | def transform_event_body(body) FILE: aws-ruby-sqs-with-dynamodb/src/handlers/lottery/worker.rb function run (line 6) | def run(event:, context:) function transform_event_body (line 11) | def transform_event_body(body) FILE: aws-ruby-step-functions-express/src/common/adapters/ses_adapter.rb class SesAdapter (line 6) | class SesAdapter method initialize (line 8) | def initialize method send_email (line 12) | def send_email method mail_data (line 23) | def mail_data method logger (line 62) | def logger FILE: aws-ruby-step-functions-express/src/common/services/send_email_service.rb class SendEmailService (line 5) | class SendEmailService method call (line 7) | def call method send (line 13) | def send FILE: aws-ruby-step-functions-express/src/handlers/send_email/handler.rb function run (line 5) | def run(event:, context:) FILE: aws-ruby-step-functions-with-callback/src/common/adapters/step_functions_adapter.rb class StepFunctionsAdapter (line 6) | class StepFunctionsAdapter method initialize (line 10) | def initialize(task_token:, output:) method send_task_success (line 16) | def send_task_success method send_task_failure (line 21) | def send_task_failure method success_task_token_data (line 28) | def success_task_token_data(task_token:, output:) method failure_task_token_data (line 35) | def failure_task_token_data(task_token:, output:) method logger (line 42) | def logger FILE: aws-ruby-step-functions-with-callback/src/common/services/detection_service.rb class DetectionService (line 5) | class DetectionService method initialize (line 9) | def initialize(comment) method call (line 15) | def call method build_result (line 24) | def build_result(entities) method detect_pii_entities (line 32) | def detect_pii_entities(content_to_be_analyzed) method pii_detected? (line 36) | def pii_detected?(result) FILE: aws-ruby-step-functions-with-callback/src/common/services/redaction_service.rb class RedactionService (line 3) | class RedactionService method initialize (line 7) | def initialize(comment_to_redact, detection_result) method call (line 12) | def call method redact_note (line 20) | def redact_note(entities, comment_to_redact) method entity_offset_difference (line 28) | def entity_offset_difference(entity) FILE: aws-ruby-step-functions-with-callback/src/common/services/send_task_token_service.rb class SendTaskTokenService (line 5) | class SendTaskTokenService method initialize (line 7) | def initialize(task_token, status, output) method call (line 13) | def call method send_task (line 21) | def send_task method status_success? (line 30) | def status_success? FILE: aws-ruby-step-functions-with-callback/src/handlers/check_comment/handler.rb function run (line 6) | def run(event:, context:) function send_task_token (line 13) | def send_task_token(task_token, status, response) function check_content_comment (line 17) | def check_content_comment(comment, task_token) FILE: aws-ruby-step-functions-with-callback/src/handlers/redact_comment/handler.rb function run (line 5) | def run(event:, context:) function redact_comment (line 11) | def redact_comment(comment, detection_result) FILE: aws-ruby-step-functions/src/common/adapters/dynamo_db_adapter.rb class DynamoDBAdapter (line 6) | class DynamoDBAdapter method initialize (line 8) | def initialize method save_item (line 12) | def save_item(item) method update_item (line 19) | def update_item(item_id) method logger (line 28) | def logger method table_item (line 32) | def table_item(item) method update_item_params (line 39) | def update_item_params(item_id) FILE: aws-ruby-step-functions/src/common/services/reserve_parking_service.rb class ReserveParkingService (line 8) | class ReserveParkingService method initialize (line 12) | def initialize(attributes) method reserve_parking (line 16) | def reserve_parking method release_parking (line 22) | def release_parking method default_status (line 32) | def default_status method build_reserveration (line 36) | def build_reserveration FILE: aws-ruby-step-functions/src/common/services/ticket_service.rb class TicketService (line 8) | class TicketService method initialize (line 12) | def initialize(attributes) method create_ticket (line 16) | def create_ticket method cancel_ticket (line 22) | def cancel_ticket method default_status (line 32) | def default_status method build_ticket (line 36) | def build_ticket FILE: aws-ruby-step-functions/src/handlers/buy_ticket/handler.rb function run (line 7) | def run(event:, context:) function create_ticket (line 11) | def create_ticket(body) FILE: aws-ruby-step-functions/src/handlers/check_weather/handler.rb function run (line 7) | def run(event:, context:) FILE: aws-ruby-step-functions/src/handlers/release_parking_space/handler.rb function run (line 7) | def run(event:, context:) function release_parking (line 11) | def release_parking(parking_reservation) function parking_reservation (line 18) | def parking_reservation(event) FILE: aws-ruby-step-functions/src/handlers/reserve_parking_lot_space/handler.rb function run (line 7) | def run(event:, context:) function reserve_parking (line 11) | def reserve_parking(body) FILE: aws-ruby-step-functions/src/handlers/return_ticket/handler.rb function run (line 7) | def run(event:, context:) function cancel_ticket (line 11) | def cancel_ticket(ticket_id) function ticket_id (line 18) | def ticket_id(event) FILE: aws-rust-simple-http-endpoint/test/src/main.rs type Error (line 5) | type Error = Box; function main (line 8) | async fn main() -> Result<(), Error> { function test (line 14) | async fn test(_: Request, _: Context) -> Result { FILE: azure-node-line-bot/handler.js function handleEvent (line 15) | function handleEvent(event) { FILE: azure-node-typescript-servicebus-trigger-endpoint/src/model/sampleModel.ts class SampleModel (line 1) | class SampleModel { FILE: azure-node-typescript-servicebus-trigger-endpoint/src/service/serviceBusMessageSender.ts class ServiceBusMessageSender (line 11) | class ServiceBusMessageSender { method send (line 12) | public async send(message: SampleModel): Promise { FILE: generate-readme.js method SERVERLESS_EXAMPLE_TABLE (line 60) | SERVERLESS_EXAMPLE_TABLE() { FILE: google-golang-simple-http-endpoint/hello.go function Hello (line 10) | func Hello(w http.ResponseWriter, r *http.Request) { FILE: google-python-simple-http-endpoint/main.py function endpoint (line 8) | def endpoint(request): FILE: kubeless-python-simple-function/handler.py function hello (line 1) | def hello(event, context): FILE: kubeless-python-simple-scheduled-function/handler.py function printClock (line 2) | def printClock(event, context): FILE: openwhisk-go-simple/handler.go function main (line 7) | func main() { FILE: openwhisk-node-and-docker-chaining-functions/handler.js function http (line 7) | function http(url, qs) { function locationFromAddress (line 28) | function locationFromAddress(params) { function sunriseSunset (line 34) | function sunriseSunset(params) { FILE: openwhisk-node-chaining-functions/handler.js function chain (line 3) | function chain(parameters) { FILE: openwhisk-node-chaining-functions/utils.js function split (line 3) | function split(params) { function join (line 7) | function join(params) { function reverse (line 11) | function reverse(params) { FILE: openwhisk-node-scheduled-cron/handler.js function cron (line 3) | function cron() { FILE: openwhisk-node-simple-http-endpoint/handler.js function time (line 5) | function time(params) { FILE: openwhisk-node-simple/delay.js function delay (line 1) | function delay() { FILE: openwhisk-node-simple/hello_world.js function main (line 3) | function main(params) { FILE: openwhisk-node-simple/left_pad.js function padlines (line 3) | function padlines(args) { FILE: openwhisk-php-simple/handler.php function greeting (line 2) | function greeting(array $args) : array FILE: openwhisk-python-scheduled-cron/handler.py function run (line 4) | def run(params): FILE: openwhisk-python-simple-http-endpoint/handler.py function endpoint (line 4) | def endpoint(params): FILE: openwhisk-python-simple/handler.py function endpoint (line 1) | def endpoint(params): FILE: openwhisk-ruby-simple/handler.rb function main (line 1) | def main(args) FILE: openwhisk-rust-simple-http-endpoint/test/src/main.rs function main (line 4) | fn main() { FILE: validate.js function hasSameProps (line 8) | function hasSameProps(obj1, obj2) { function isEmptyObject (line 12) | function isEmptyObject(obj) {