UNPKG

@pulumi/aws

Version:

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

58 lines 1.84 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.getDedicatedIpPoolOutput = exports.getDedicatedIpPool = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Data source for managing an AWS SESv2 (Simple Email V2) Dedicated IP Pool. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.sesv2.getDedicatedIpPool({ * poolName: "my-pool", * }); * ``` */ function getDedicatedIpPool(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("aws:sesv2/getDedicatedIpPool:getDedicatedIpPool", { "poolName": args.poolName, "region": args.region, "tags": args.tags, }, opts); } exports.getDedicatedIpPool = getDedicatedIpPool; /** * Data source for managing an AWS SESv2 (Simple Email V2) Dedicated IP Pool. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.sesv2.getDedicatedIpPool({ * poolName: "my-pool", * }); * ``` */ function getDedicatedIpPoolOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("aws:sesv2/getDedicatedIpPool:getDedicatedIpPool", { "poolName": args.poolName, "region": args.region, "tags": args.tags, }, opts); } exports.getDedicatedIpPoolOutput = getDedicatedIpPoolOutput; //# sourceMappingURL=getDedicatedIpPool.js.map