@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)
67 lines (66 loc) • 2.56 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
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 function getRouterNetworkInterface(args: GetRouterNetworkInterfaceArgs, opts?: pulumi.InvokeOptions): Promise<GetRouterNetworkInterfaceResult>;
export interface GetRouterNetworkInterfaceArgs {
/**
* The Amazon Resource Name (ARN) of the router network interface.
*/
arn: string;
}
export interface GetRouterNetworkInterfaceResult {
/**
* The Amazon Resource Name (ARN) of the router network interface.
*/
readonly arn?: string;
/**
* The number of router inputs associated with the network interface.
*/
readonly associatedInputCount?: number;
/**
* The number of router outputs associated with the network interface.
*/
readonly associatedOutputCount?: number;
readonly configuration?: outputs.mediaconnect.RouterNetworkInterfaceConfiguration0Properties | outputs.mediaconnect.RouterNetworkInterfaceConfiguration1Properties;
/**
* The timestamp when the router network interface was created.
*/
readonly createdAt?: string;
/**
* The unique identifier of the router network interface.
*/
readonly id?: string;
/**
* The name of the router network interface.
*/
readonly name?: string;
/**
* The type of the router network interface.
*/
readonly networkInterfaceType?: enums.mediaconnect.RouterNetworkInterfaceType;
/**
* The current state of the router network interface.
*/
readonly state?: enums.mediaconnect.RouterNetworkInterfaceState;
/**
* Key-value pairs that can be used to tag and organize this router network interface.
*/
readonly tags?: outputs.Tag[];
/**
* The timestamp when the router network interface was last updated.
*/
readonly updatedAt?: string;
}
/**
* Represents a router network interface in AWS Elemental MediaConnect that is used to define a network boundary for router resources
*/
export declare function getRouterNetworkInterfaceOutput(args: GetRouterNetworkInterfaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRouterNetworkInterfaceResult>;
export interface GetRouterNetworkInterfaceOutputArgs {
/**
* The Amazon Resource Name (ARN) of the router network interface.
*/
arn: pulumi.Input<string>;
}