@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)
46 lines (45 loc) • 1.62 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::EC2::IPAMPrefixListResolver
*/
export declare function getIpamPrefixListResolver(args: GetIpamPrefixListResolverArgs, opts?: pulumi.InvokeOptions): Promise<GetIpamPrefixListResolverResult>;
export interface GetIpamPrefixListResolverArgs {
/**
* Id of the IPAM Prefix List Resolver.
*/
ipamPrefixListResolverId: string;
}
export interface GetIpamPrefixListResolverResult {
readonly description?: string;
/**
* The Amazon Resource Name (ARN) of the IPAM this Prefix List Resolver is a part of.
*/
readonly ipamArn?: string;
/**
* The Amazon Resource Name (ARN) of the IPAM Prefix List Resolver
*/
readonly ipamPrefixListResolverArn?: string;
/**
* Id of the IPAM Prefix List Resolver.
*/
readonly ipamPrefixListResolverId?: string;
/**
* Rules define the business logic for selecting CIDRs from IPAM.
*/
readonly rules?: outputs.ec2.IpamPrefixListResolverRule[];
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::EC2::IPAMPrefixListResolver
*/
export declare function getIpamPrefixListResolverOutput(args: GetIpamPrefixListResolverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIpamPrefixListResolverResult>;
export interface GetIpamPrefixListResolverOutputArgs {
/**
* Id of the IPAM Prefix List Resolver.
*/
ipamPrefixListResolverId: pulumi.Input<string>;
}