UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

26 lines 1.24 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.getSecretVersionsOutput = exports.getSecretVersions = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); function getSecretVersions(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:secretsmanager/getSecretVersions:getSecretVersions", { "includeDeprecated": args.includeDeprecated, "region": args.region, "secretId": args.secretId, }, opts); } exports.getSecretVersions = getSecretVersions; function getSecretVersionsOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:secretsmanager/getSecretVersions:getSecretVersions", { "includeDeprecated": args.includeDeprecated, "region": args.region, "secretId": args.secretId, }, opts); } exports.getSecretVersionsOutput = getSecretVersionsOutput; //# sourceMappingURL=getSecretVersions.js.map