UNPKG

@pulumi/aws

Version:

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

48 lines 1.56 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.getCustomModelsOutput = exports.getCustomModels = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Returns a list of Amazon Bedrock custom models. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const test = aws.bedrock.getCustomModels({}); * ``` */ function getCustomModels(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:bedrock/getCustomModels:getCustomModels", { "region": args.region, }, opts); } exports.getCustomModels = getCustomModels; /** * Returns a list of Amazon Bedrock custom models. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const test = aws.bedrock.getCustomModels({}); * ``` */ function getCustomModelsOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:bedrock/getCustomModels:getCustomModels", { "region": args.region, }, opts); } exports.getCustomModelsOutput = getCustomModelsOutput; //# sourceMappingURL=getCustomModels.js.map