@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)
95 lines (94 loc) • 4.12 kB
TypeScript
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<pulumi.ID>, 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<string>;
/**
* The number of router inputs associated with the network interface.
*/
readonly associatedInputCount: pulumi.Output<number>;
/**
* The number of router outputs associated with the network interface.
*/
readonly associatedOutputCount: pulumi.Output<number>;
/**
* The unique identifier of the router network interface.
*/
readonly awsId: pulumi.Output<string>;
readonly configuration: pulumi.Output<outputs.mediaconnect.RouterNetworkInterfaceConfiguration0Properties | outputs.mediaconnect.RouterNetworkInterfaceConfiguration1Properties>;
/**
* The timestamp when the router network interface was created.
*/
readonly createdAt: pulumi.Output<string>;
/**
* The name of the router network interface.
*/
readonly name: pulumi.Output<string>;
/**
* The type of the router network interface.
*/
readonly networkInterfaceType: pulumi.Output<enums.mediaconnect.RouterNetworkInterfaceType>;
/**
* The AWS Region for the router network interface. Defaults to the current region if not specified.
*/
readonly regionName: pulumi.Output<string | undefined>;
/**
* The current state of the router network interface.
*/
readonly state: pulumi.Output<enums.mediaconnect.RouterNetworkInterfaceState>;
/**
* Key-value pairs that can be used to tag and organize this router network interface.
*/
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
/**
* The timestamp when the router network interface was last updated.
*/
readonly updatedAt: pulumi.Output<string>;
/**
* 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<inputs.mediaconnect.RouterNetworkInterfaceConfiguration0PropertiesArgs | inputs.mediaconnect.RouterNetworkInterfaceConfiguration1PropertiesArgs>;
/**
* The name of the router network interface.
*/
name?: pulumi.Input<string>;
/**
* The AWS Region for the router network interface. Defaults to the current region if not specified.
*/
regionName?: pulumi.Input<string>;
/**
* Key-value pairs that can be used to tag and organize this router network interface.
*/
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}