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) 985 B
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::EC2::DHCPOptions */ export declare function getDhcpOptions(args: GetDhcpOptionsArgs, opts?: pulumi.InvokeOptions): Promise<GetDhcpOptionsResult>; export interface GetDhcpOptionsArgs { /** * The ID of the DHCP options set. */ dhcpOptionsId: string; } export interface GetDhcpOptionsResult { /** * The ID of the DHCP options set. */ readonly dhcpOptionsId?: string; /** * Any tags assigned to the DHCP options set. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::EC2::DHCPOptions */ export declare function getDhcpOptionsOutput(args: GetDhcpOptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDhcpOptionsResult>; export interface GetDhcpOptionsOutputArgs { /** * The ID of the DHCP options set. */ dhcpOptionsId: pulumi.Input<string>; }