@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
52 lines • 1.78 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOutpostInstanceTypesOutput = exports.getOutpostInstanceTypes = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Information about Outposts Instance Types.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = aws.outposts.getOutpostInstanceTypes({
* arn: exampleAwsOutpostsOutpost.arn,
* });
* ```
*/
function getOutpostInstanceTypes(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("aws:outposts/getOutpostInstanceTypes:getOutpostInstanceTypes", {
"arn": args.arn,
"region": args.region,
}, opts);
}
exports.getOutpostInstanceTypes = getOutpostInstanceTypes;
/**
* Information about Outposts Instance Types.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const example = aws.outposts.getOutpostInstanceTypes({
* arn: exampleAwsOutpostsOutpost.arn,
* });
* ```
*/
function getOutpostInstanceTypesOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("aws:outposts/getOutpostInstanceTypes:getOutpostInstanceTypes", {
"arn": args.arn,
"region": args.region,
}, opts);
}
exports.getOutpostInstanceTypesOutput = getOutpostInstanceTypesOutput;
//# sourceMappingURL=getOutpostInstanceTypes.js.map