Create the method createProductsResource with two parameters: RestApi and ApiStackProps, and initialize it within the constructor.
private void createProductsResource(RestApi restApi, ApiStackProps apiStackProps) {
}

2. Create a new resource in API Gateway with the path **/products`. Using `restApi.getRoot().addResource("products")** will create a new sub-resource with the path **/products** from the root of the API (`restApi`).
```java
//products
Resource productsResource = restApi.getRoot().addResource("products");

productsResource.addMethod("GET");

productsResource.addMethod("GET", new Integration(
IntegrationProps.builder()
.build()));

.type(IntegrationType.HTTP_PROXY)
.integrationHttpMethod("GET")

/api/products being called..uri("http://" + apiStackProps.networkLoadBalancer().getLoadBalancerDnsName() + ":8081/api/products")

.options(IntegrationOptions.builder()
.build())

.vpcLink(apiStackProps.vpcLink())
.connectionType(ConnectionType.VPC_LINK)
