UNPKG

@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)

33 lines (32 loc) 1.1 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::SES::DedicatedIpPool */ export declare function getDedicatedIpPool(args: GetDedicatedIpPoolArgs, opts?: pulumi.InvokeOptions): Promise<GetDedicatedIpPoolResult>; export interface GetDedicatedIpPoolArgs { /** * The name of the dedicated IP pool. */ poolName: string; } export interface GetDedicatedIpPoolResult { /** * Specifies whether the dedicated IP pool is managed or not. The default value is STANDARD. */ readonly scalingMode?: string; /** * The tags (keys and values) associated with the dedicated IP pool. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::SES::DedicatedIpPool */ export declare function getDedicatedIpPoolOutput(args: GetDedicatedIpPoolOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDedicatedIpPoolResult>; export interface GetDedicatedIpPoolOutputArgs { /** * The name of the dedicated IP pool. */ poolName: pulumi.Input<string>; }