How do you create a Tracker via API?

0

I’ve been struggling to create a form that can be filled out to create a tracker at a given location. I have maps set up but haven't been able to create the tracker to be able to pin it; I found the parameters from the AWS SDK but am having trouble implementing it. Here is a snippet of my code:




import {AWS} from 'aws-sdk';

export default function Setup() {

  var location = new AWS.Location({apiVersion: '2020-11-19'});
  var params = {
      TrackerName: 'STRING_VALUE', /* required */
      Description: 'STRING_VALUE',
      KmsKeyId: 'STRING_VALUE',
      PricingPlanDataSource: 'STRING_VALUE',
      Tags: {
        '<TagKey>': 'STRING_VALUE',
        /* '<TagKey>': ... */
      }
    };
    location.createTracker(params, function(err, data) {
      if (err) console.log(err, err.stack); // an error occurred
      else     console.log(data);           // successful response
    });

    return(
      <form>
        <div class="form-group">
          <label for="truckName">Tracker Name</label>
          <input type="text" class="form-control" id="truckName"  placeholder="Enter Truck Name" />
          <small id="trackerHelp" class="form-text text-muted">Please enter the name of your tracker.</small>
        </div>
       
       
        <button type="submit" class="btn btn-primary" onclick="Setup">Submit</button>
    </form>
    );
}
질문됨 2년 전221회 조회
1개 답변
0

Can you elaborate more on your use case? What SDK are you using? Can you share a code snippet and any errors you're getting?

profile pictureAWS
답변함 2년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠