verify the correct installation of AWSToolkit on VISUAL STUDIO CODE

0

Hi, I would like to know how I can check if I have correctly installed the AWS Toolkit on VISUAL STUDIO CODE. Kindly bring some practical examples and not links on the documentation, I can find it on the net.

Dario
질문됨 10달 전238회 조회
2개 답변
0

Hi Dario, concrete example from my laptop (with IntelliJ but VS should look close)

Enter image description here

You can see that my CodeWhisperer installed on top of AWS Toolkit is connected with my builder ID. So, it proves that Toolkit works fine.

Hope it helps! Didier

profile pictureAWS
전문가
답변함 10달 전
  • Dario, on your comment: AWS Toolkit doesn't install the SDK for you in your VS projects. You have to add the Java SDK packages that you need : at least S3 + core from what I see below. Do you use Maven ? Then you have to install those packages in your project via Maven

  • I will try, thanks mate.

0

also my is connected but when i try this code

import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.s3.S3Client; import software.amazon.awssdk.services.s3.model.ListBucketsResponse;

public class AWSToolkitExample { public static void main(String[] args) { // Crea un'istanza del client S3 S3Client s3Client = S3Client.builder() .region(Region.US_EAST_1) // Sostituisci con la tua regione AWS preferita .build();

    // Elenca i bucket S3
    ListBucketsResponse response = s3Client.listBuckets();
    response.buckets().forEach(bucket -> System.out.println(bucket.name()));
}

}

I have this problem

Exception in thread "main" java.lang.Error: Unresolved compilation problems: S3Client cannot be resolved to a type S3Client cannot be resolved Region cannot be resolved to a variable ListBucketsResponse cannot be resolved to a type

I'm going crazy, i can't install it properly

Dario
답변함 10달 전

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

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

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