import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::MediaConnect::Flow */ export declare class Flow extends pulumi.CustomResource { /** * Get an existing Flow 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): Flow; /** * Returns true if the given object is an instance of Flow. 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 Flow; /** * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS. */ readonly availabilityZone: pulumi.Output; /** * The IP address from which video will be sent to output destinations. */ readonly egressIp: pulumi.Output; /** * The encoding configuration to apply to the NDI source content when transcoding it to a transport stream (TS) for downstream distribution. You can choose between several predefined encoding profiles based on common use cases. */ readonly encodingConfig: pulumi.Output; /** * The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow. */ readonly flowArn: pulumi.Output; /** * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.(ReadOnly) */ readonly flowAvailabilityZone: pulumi.Output; /** * A prefix for the names of the NDI sources that the flow creates.(ReadOnly) */ readonly flowNdiMachineName: pulumi.Output; /** * Determines the processing capacity and feature set of the flow. Set this optional parameter to LARGE if you want to enable NDI sources or outputs on the flow. */ readonly flowSize: pulumi.Output; /** * The maintenance settings you want to use for the flow. */ readonly maintenance: pulumi.Output; /** * The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow. */ readonly mediaStreams: pulumi.Output; /** * The name of the flow. */ readonly name: pulumi.Output; /** * Specifies the configuration settings for NDI sources and outputs. Required when the flow includes NDI sources or outputs. */ readonly ndiConfig: pulumi.Output; /** * The source of the flow. */ readonly source: pulumi.Output; /** * The source failover config of the flow. */ readonly sourceFailoverConfig: pulumi.Output; /** * The source monitoring config of the flow. */ readonly sourceMonitoringConfig: pulumi.Output; /** * Key-value pairs that can be used to tag this flow. */ readonly tags: pulumi.Output; /** * The VPC interfaces that you added to this flow. */ readonly vpcInterfaces: pulumi.Output; /** * Create a Flow 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: FlowArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Flow resource. */ export interface FlowArgs { /** * The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS. */ availabilityZone?: pulumi.Input; /** * The encoding configuration to apply to the NDI source content when transcoding it to a transport stream (TS) for downstream distribution. You can choose between several predefined encoding profiles based on common use cases. */ encodingConfig?: pulumi.Input; /** * Determines the processing capacity and feature set of the flow. Set this optional parameter to LARGE if you want to enable NDI sources or outputs on the flow. */ flowSize?: pulumi.Input; /** * The maintenance settings you want to use for the flow. */ maintenance?: pulumi.Input; /** * The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow. */ mediaStreams?: pulumi.Input[]>; /** * The name of the flow. */ name?: pulumi.Input; /** * Specifies the configuration settings for NDI sources and outputs. Required when the flow includes NDI sources or outputs. */ ndiConfig?: pulumi.Input; /** * The source of the flow. */ source: pulumi.Input; /** * The source failover config of the flow. */ sourceFailoverConfig?: pulumi.Input; /** * The source monitoring config of the flow. */ sourceMonitoringConfig?: pulumi.Input; /** * Key-value pairs that can be used to tag this flow. */ tags?: pulumi.Input[]>; /** * The VPC interfaces that you added to this flow. */ vpcInterfaces?: pulumi.Input[]>; }