UNPKG

@pulumi/aws

Version:

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

62 lines 2.13 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.getAppregistryAttributeGroupOutput = exports.getAppregistryAttributeGroup = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for managing an AWS Service Catalog AppRegistry Attribute Group. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.servicecatalog.getAppregistryAttributeGroup({ * name: "example_attribute_group", * }); * ``` */ function getAppregistryAttributeGroup(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:servicecatalog/getAppregistryAttributeGroup:getAppregistryAttributeGroup", { "arn": args.arn, "id": args.id, "name": args.name, "region": args.region, }, opts); } exports.getAppregistryAttributeGroup = getAppregistryAttributeGroup; /** * Data source for managing an AWS Service Catalog AppRegistry Attribute Group. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.servicecatalog.getAppregistryAttributeGroup({ * name: "example_attribute_group", * }); * ``` */ function getAppregistryAttributeGroupOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:servicecatalog/getAppregistryAttributeGroup:getAppregistryAttributeGroup", { "arn": args.arn, "id": args.id, "name": args.name, "region": args.region, }, opts); } exports.getAppregistryAttributeGroupOutput = getAppregistryAttributeGroupOutput; //# sourceMappingURL=getAppregistryAttributeGroup.js.map