@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)
28 lines • 1.51 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.getConformancePackOutput = exports.getConformancePack = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* A conformance pack is a collection of AWS Config rules and remediation actions that can be easily deployed as a single entity in an account and a region or across an entire AWS Organization.
*/
function getConformancePack(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("aws-native:configuration:getConformancePack", {
"conformancePackName": args.conformancePackName,
}, opts);
}
exports.getConformancePack = getConformancePack;
/**
* A conformance pack is a collection of AWS Config rules and remediation actions that can be easily deployed as a single entity in an account and a region or across an entire AWS Organization.
*/
function getConformancePackOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("aws-native:configuration:getConformancePack", {
"conformancePackName": args.conformancePackName,
}, opts);
}
exports.getConformancePackOutput = getConformancePackOutput;
//# sourceMappingURL=getConformancePack.js.map