Just starting out with some pulumi.io tutorials and immediately encountered
const endpoint = new aws.apigateway.x.API("hello", {...})
Then I went to the pulumi aws.apigateway documentation and don't see anything about the mysterious apigateway.x
component.
Where can I find the docs for this? The only goog/ddg real hit I could find is a single sentence in the 0.16.0 release notes:
In addition, the aws.apigateway.x.API type is available for simple construction of API Gateways directly in the @pulumi/aws package.
Ok, so it's a different type for simple construction. Where can I go for more in depth context? It's also not in the API docs—do I just use the regular non x
prefixed .API
docs?
What's the difference between apigateway.x.API
and apigateway.API
?