
ApiApiStack apiStack = new ApiStack(app, "Api", StackProps.builder()
.build(),
new ApiStackProps(
nlbStack.getNetworkLoadBalancer(),
nlbStack.getVpcLink()));

.env(environment)
.tags(infraTags)

apiStack.addDependency(nlbStack);

In the AWS console interface, navigate to API Gateway.

Within the API Gateway interface, select APIs to find an API named ECommerceAPI that has been created.

Choose ECommerceAPI and then select GET.

Within the ECommerceAPI interface, navigate to Stages and copy the Invoke URL.

Open Postman and create a GET request with the path Invoke URL/product.
