UNPKG

@pulumi/aws

Version:

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

48 lines 1.86 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.getDefaultScraperConfigurationOutput = exports.getDefaultScraperConfiguration = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Returns the default scraper configuration used when Amazon EKS creates a scraper for you. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.amp.getDefaultScraperConfiguration({}); * ``` */ function getDefaultScraperConfiguration(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:amp/getDefaultScraperConfiguration:getDefaultScraperConfiguration", { "region": args.region, }, opts); } exports.getDefaultScraperConfiguration = getDefaultScraperConfiguration; /** * Returns the default scraper configuration used when Amazon EKS creates a scraper for you. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.amp.getDefaultScraperConfiguration({}); * ``` */ function getDefaultScraperConfigurationOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:amp/getDefaultScraperConfiguration:getDefaultScraperConfiguration", { "region": args.region, }, opts); } exports.getDefaultScraperConfigurationOutput = getDefaultScraperConfigurationOutput; //# sourceMappingURL=getDefaultScraperConfiguration.js.map