UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

90 lines 4.96 kB
"use strict"; // *** 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.Namespace = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Definition of AWS::RedshiftServerless::Namespace Resource Type */ class Namespace extends pulumi.CustomResource { /** * Get an existing Namespace 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, opts) { return new Namespace(name, undefined, Object.assign(Object.assign({}, opts), { id: id })); } /** * Returns true if the given object is an instance of Namespace. 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'] === Namespace.__pulumiType; } /** * Create a Namespace resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name, args, opts) { let resourceInputs = {}; opts = opts || {}; if (!opts.id) { resourceInputs["adminPasswordSecretKmsKeyId"] = args ? args.adminPasswordSecretKmsKeyId : undefined; resourceInputs["adminUserPassword"] = args ? args.adminUserPassword : undefined; resourceInputs["adminUsername"] = args ? args.adminUsername : undefined; resourceInputs["dbName"] = args ? args.dbName : undefined; resourceInputs["defaultIamRoleArn"] = args ? args.defaultIamRoleArn : undefined; resourceInputs["finalSnapshotName"] = args ? args.finalSnapshotName : undefined; resourceInputs["finalSnapshotRetentionPeriod"] = args ? args.finalSnapshotRetentionPeriod : undefined; resourceInputs["iamRoles"] = args ? args.iamRoles : undefined; resourceInputs["kmsKeyId"] = args ? args.kmsKeyId : undefined; resourceInputs["logExports"] = args ? args.logExports : undefined; resourceInputs["manageAdminPassword"] = args ? args.manageAdminPassword : undefined; resourceInputs["namespaceName"] = args ? args.namespaceName : undefined; resourceInputs["namespaceResourcePolicy"] = args ? args.namespaceResourcePolicy : undefined; resourceInputs["redshiftIdcApplicationArn"] = args ? args.redshiftIdcApplicationArn : undefined; resourceInputs["snapshotCopyConfigurations"] = args ? args.snapshotCopyConfigurations : undefined; resourceInputs["tags"] = args ? args.tags : undefined; resourceInputs["namespace"] = undefined /*out*/; } else { resourceInputs["adminPasswordSecretKmsKeyId"] = undefined /*out*/; resourceInputs["adminUserPassword"] = undefined /*out*/; resourceInputs["adminUsername"] = undefined /*out*/; resourceInputs["dbName"] = undefined /*out*/; resourceInputs["defaultIamRoleArn"] = undefined /*out*/; resourceInputs["finalSnapshotName"] = undefined /*out*/; resourceInputs["finalSnapshotRetentionPeriod"] = undefined /*out*/; resourceInputs["iamRoles"] = undefined /*out*/; resourceInputs["kmsKeyId"] = undefined /*out*/; resourceInputs["logExports"] = undefined /*out*/; resourceInputs["manageAdminPassword"] = undefined /*out*/; resourceInputs["namespace"] = undefined /*out*/; resourceInputs["namespaceName"] = undefined /*out*/; resourceInputs["namespaceResourcePolicy"] = undefined /*out*/; resourceInputs["redshiftIdcApplicationArn"] = undefined /*out*/; resourceInputs["snapshotCopyConfigurations"] = undefined /*out*/; resourceInputs["tags"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); const replaceOnChanges = { replaceOnChanges: ["namespaceName"] }; opts = pulumi.mergeOptions(opts, replaceOnChanges); super(Namespace.__pulumiType, name, resourceInputs, opts); } } exports.Namespace = Namespace; /** @internal */ Namespace.__pulumiType = 'aws-native:redshiftserverless:Namespace'; //# sourceMappingURL=namespace.js.map