import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Definition of AWS::MediaLive::Node Resource Type */ export declare class Node extends pulumi.CustomResource { /** * Get an existing Node 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): Node; /** * Returns true if the given object is an instance of Node. 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 Node; /** * The ARN of the Node. It is automatically assigned when the Node is created. */ readonly arn: pulumi.Output; /** * The unique ID of the Node. Unique in the Cluster. The ID is the resource-id portion of the ARN. */ readonly awsId: pulumi.Output; /** * An array of IDs. Each ID is one ChannelPlacementGroup that is associated with this Node. */ readonly channelPlacementGroups: pulumi.Output; /** * The ID of the Cluster that the Node belongs to. */ readonly clusterId: pulumi.Output; readonly connectionState: pulumi.Output; /** * The ARN of the EC2 instance hosting the Node. */ readonly instanceArn: pulumi.Output; /** * The user-specified name of the Node. */ readonly name: pulumi.Output; /** * An array of interface mappings for the Node. */ readonly nodeInterfaceMappings: pulumi.Output; readonly role: pulumi.Output; /** * An array of SDI source mappings. */ readonly sdiSourceMappings: pulumi.Output; readonly state: pulumi.Output; /** * A collection of key-value pairs. */ readonly tags: pulumi.Output; /** * Create a Node 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: NodeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Node resource. */ export interface NodeArgs { /** * The ID of the Cluster that the Node belongs to. */ clusterId: pulumi.Input; /** * The user-specified name of the Node. */ name?: pulumi.Input; /** * An array of interface mappings for the Node. */ nodeInterfaceMappings?: pulumi.Input[]>; role?: pulumi.Input; /** * An array of SDI source mappings. */ sdiSourceMappings?: pulumi.Input[]>; /** * A collection of key-value pairs. */ tags?: pulumi.Input[]>; }