import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Represents a router network interface in AWS Elemental MediaConnect that is used to define a network boundary for router resources */ export declare class RouterNetworkInterface extends pulumi.CustomResource { /** * Get an existing RouterNetworkInterface resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): RouterNetworkInterface; /** * Returns true if the given object is an instance of RouterNetworkInterface. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is RouterNetworkInterface; /** * The Amazon Resource Name (ARN) of the router network interface. */ readonly arn: pulumi.Output; /** * The number of router inputs associated with the network interface. */ readonly associatedInputCount: pulumi.Output; /** * The number of router outputs associated with the network interface. */ readonly associatedOutputCount: pulumi.Output; /** * The unique identifier of the router network interface. */ readonly awsId: pulumi.Output; readonly configuration: pulumi.Output; /** * The timestamp when the router network interface was created. */ readonly createdAt: pulumi.Output; /** * The name of the router network interface. */ readonly name: pulumi.Output; /** * The type of the router network interface. */ readonly networkInterfaceType: pulumi.Output; /** * The AWS Region for the router network interface. Defaults to the current region if not specified. */ readonly regionName: pulumi.Output; /** * The current state of the router network interface. */ readonly state: pulumi.Output; /** * Key-value pairs that can be used to tag and organize this router network interface. */ readonly tags: pulumi.Output; /** * The timestamp when the router network interface was last updated. */ readonly updatedAt: pulumi.Output; /** * Create a RouterNetworkInterface resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: RouterNetworkInterfaceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a RouterNetworkInterface resource. */ export interface RouterNetworkInterfaceArgs { configuration: pulumi.Input; /** * The name of the router network interface. */ name?: pulumi.Input; /** * The AWS Region for the router network interface. Defaults to the current region if not specified. */ regionName?: pulumi.Input; /** * Key-value pairs that can be used to tag and organize this router network interface. */ tags?: pulumi.Input[]>; }