@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
97 lines • 3.7 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.Build = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Provides an GameLift Build resource.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const test = new aws.gamelift.Build("test", {
* name: "example-build",
* operatingSystem: "WINDOWS_2012",
* storageLocation: {
* bucket: testAwsS3Bucket.id,
* key: testAwsS3Object.key,
* roleArn: testAwsIamRole.arn,
* },
* });
* ```
*
* ## Import
*
* Using `pulumi import`, import GameLift Builds using the ID. For example:
*
* ```sh
* $ pulumi import aws:gamelift/build:Build example <build-id>
* ```
*/
class Build extends pulumi.CustomResource {
/**
* Get an existing Build resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new Build(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of Build. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Build.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["arn"] = state?.arn;
resourceInputs["name"] = state?.name;
resourceInputs["operatingSystem"] = state?.operatingSystem;
resourceInputs["region"] = state?.region;
resourceInputs["storageLocation"] = state?.storageLocation;
resourceInputs["tags"] = state?.tags;
resourceInputs["tagsAll"] = state?.tagsAll;
resourceInputs["version"] = state?.version;
}
else {
const args = argsOrState;
if (args?.operatingSystem === undefined && !opts.urn) {
throw new Error("Missing required property 'operatingSystem'");
}
if (args?.storageLocation === undefined && !opts.urn) {
throw new Error("Missing required property 'storageLocation'");
}
resourceInputs["name"] = args?.name;
resourceInputs["operatingSystem"] = args?.operatingSystem;
resourceInputs["region"] = args?.region;
resourceInputs["storageLocation"] = args?.storageLocation;
resourceInputs["tags"] = args?.tags;
resourceInputs["version"] = args?.version;
resourceInputs["arn"] = undefined /*out*/;
resourceInputs["tagsAll"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Build.__pulumiType, name, resourceInputs, opts);
}
}
exports.Build = Build;
/** @internal */
Build.__pulumiType = 'aws:gamelift/build:Build';
//# sourceMappingURL=build.js.map
;