import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource for managing an AWS MediaLive Input. * * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = new aws.medialive.InputSecurityGroup("example", { * whitelistRules: [{ * cidr: "10.0.0.8/32", * }], * tags: { * ENVIRONMENT: "prod", * }, * }); * const exampleInput = new aws.medialive.Input("example", { * name: "example-input", * inputSecurityGroups: [example.id], * type: "UDP_PUSH", * tags: { * ENVIRONMENT: "prod", * }, * }); * ``` * * ## Import * * ### Identity Schema * * #### Required * * * `id` (String) ID of the MediaLive Input. * * #### Optional * * * `accountId` (String) AWS Account where this resource is managed. * * `region` (String) Region where this resource is managed. * * Using `pulumi import`, import MediaLive Input using the `id`. For example: * * ```sh * $ pulumi import aws:medialive/input:Input example 12345678 * ``` */ export declare class Input extends pulumi.CustomResource { /** * Get an existing Input 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InputState, opts?: pulumi.CustomResourceOptions): Input; /** * Returns true if the given object is an instance of Input. 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 Input; /** * ARN of the Input. */ readonly arn: pulumi.Output; /** * Channels attached to Input. */ readonly attachedChannels: pulumi.Output; /** * Destination settings for PUSH type inputs. See Destinations for more details. */ readonly destinations: pulumi.Output; /** * The input class. */ readonly inputClass: pulumi.Output; /** * Settings for the devices. See Input Devices for more details. */ readonly inputDevices: pulumi.Output; /** * A list of IDs for all Inputs which are partners of this one. */ readonly inputPartnerIds: pulumi.Output; /** * List of input security groups. */ readonly inputSecurityGroups: pulumi.Output; /** * Source type of the input. */ readonly inputSourceType: pulumi.Output; /** * A list of the MediaConnect Flows. See Media Connect Flows for more details. */ readonly mediaConnectFlows: pulumi.Output; /** * Name of the input. */ readonly name: pulumi.Output; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration. */ readonly region: pulumi.Output; /** * The ARN of the role this input assumes during and after creation. */ readonly roleArn: pulumi.Output; /** * The source URLs for a PULL-type input. See Sources for more details. */ readonly sources: pulumi.Output; /** * A map of tags to assign to the Input. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; readonly tagsAll: pulumi.Output<{ [key: string]: string; }>; /** * The different types of inputs that AWS Elemental MediaLive supports. * * The following arguments are optional: */ readonly type: pulumi.Output; /** * Settings for a private VPC Input. See VPC for more details. */ readonly vpc: pulumi.Output; /** * Create a Input 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: InputArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Input resources. */ export interface InputState { /** * ARN of the Input. */ arn?: pulumi.Input; /** * Channels attached to Input. */ attachedChannels?: pulumi.Input[] | undefined>; /** * Destination settings for PUSH type inputs. See Destinations for more details. */ destinations?: pulumi.Input[] | undefined>; /** * The input class. */ inputClass?: pulumi.Input; /** * Settings for the devices. See Input Devices for more details. */ inputDevices?: pulumi.Input[] | undefined>; /** * A list of IDs for all Inputs which are partners of this one. */ inputPartnerIds?: pulumi.Input[] | undefined>; /** * List of input security groups. */ inputSecurityGroups?: pulumi.Input[] | undefined>; /** * Source type of the input. */ inputSourceType?: pulumi.Input; /** * A list of the MediaConnect Flows. See Media Connect Flows for more details. */ mediaConnectFlows?: pulumi.Input[] | undefined>; /** * Name of the input. */ name?: pulumi.Input; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration. */ region?: pulumi.Input; /** * The ARN of the role this input assumes during and after creation. */ roleArn?: pulumi.Input; /** * The source URLs for a PULL-type input. See Sources for more details. */ sources?: pulumi.Input[] | undefined>; /** * A map of tags to assign to the Input. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; tagsAll?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The different types of inputs that AWS Elemental MediaLive supports. * * The following arguments are optional: */ type?: pulumi.Input; /** * Settings for a private VPC Input. See VPC for more details. */ vpc?: pulumi.Input; } /** * The set of arguments for constructing a Input resource. */ export interface InputArgs { /** * Destination settings for PUSH type inputs. See Destinations for more details. */ destinations?: pulumi.Input[] | undefined>; /** * Settings for the devices. See Input Devices for more details. */ inputDevices?: pulumi.Input[] | undefined>; /** * List of input security groups. */ inputSecurityGroups?: pulumi.Input[] | undefined>; /** * A list of the MediaConnect Flows. See Media Connect Flows for more details. */ mediaConnectFlows?: pulumi.Input[] | undefined>; /** * Name of the input. */ name?: pulumi.Input; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration. */ region?: pulumi.Input; /** * The ARN of the role this input assumes during and after creation. */ roleArn?: pulumi.Input; /** * The source URLs for a PULL-type input. See Sources for more details. */ sources?: pulumi.Input[] | undefined>; /** * A map of tags to assign to the Input. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The different types of inputs that AWS Elemental MediaLive supports. * * The following arguments are optional: */ type: pulumi.Input; /** * Settings for a private VPC Input. See VPC for more details. */ vpc?: pulumi.Input; } //# sourceMappingURL=input.d.ts.map