Visual Studio Codeを使用したJavascriptインラインメソッドの提案


1

Visual Studioコード1.30.1を使用しています。AWSキネシスにアクセスするための小さなメソッドを書いています。そのために、npm installを使用してaws jsライブラリをダウンロードしました。私は次の方法があります:

'use strict';

var AWS = require('aws-sdk');
var agg = require('aws-kinesis-agg');


exports.handler = (event, context, callback) => {
    var cloudwatch = new AWS.CloudWatch();
    console.log('Processing records: ', event.Records.length);
    console.log('Received event:', JSON.stringfy(event, null, 2));

    event.Records.forEach((record) => {
        console.log('Processing records: ', record.kinesis.sequenceNumber); 

    //No suggestions are given when I type 'agg.'


    });

    callback(null, 'Successfully processed ${event.Records.length} records.');
};

「agg。」と入力しても、メソッドが表示されません。例:「コンソール」などの組み込みメソッドを入力すると、メソッドが表示されます。AWS依存メソッドを表示するために変更する必要のある構成または設定を支援できますか?

ありがとう

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.