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 schema for AWS::MediaConnect::FlowOutput */ export declare class FlowOutput extends pulumi.CustomResource { /** * Get an existing FlowOutput 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): FlowOutput; /** * Returns true if the given object is an instance of FlowOutput. 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 FlowOutput; /** * The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */ readonly cidrAllowList: pulumi.Output; /** * A description of the output. */ readonly description: pulumi.Output; /** * The address where you want to send the output. */ readonly destination: pulumi.Output; /** * The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). */ readonly encryption: pulumi.Output; /** * The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow. */ readonly flowArn: pulumi.Output; /** * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams. */ readonly maxLatency: pulumi.Output; /** * The definition for each media stream that is associated with the output. */ readonly mediaStreamOutputConfigurations: pulumi.Output; /** * The minimum latency in milliseconds. */ readonly minLatency: pulumi.Output; /** * The name of the output. This value must be unique within the current flow. */ readonly name: pulumi.Output; /** * A suffix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect uses the output name. */ readonly ndiProgramName: pulumi.Output; /** * A quality setting for the NDI Speed HQ encoder. */ readonly ndiSpeedHqQuality: pulumi.Output; /** * The ARN of the output. */ readonly outputArn: pulumi.Output; /** * An indication of whether the output should transmit data or not. */ readonly outputStatus: pulumi.Output; /** * The port to use when content is distributed to this output. */ readonly port: pulumi.Output; /** * The protocol that is used by the source or output. */ readonly protocol: pulumi.Output; /** * The remote ID for the Zixi-pull stream. */ readonly remoteId: pulumi.Output; readonly routerIntegrationState: pulumi.Output; /** * Encryption information. */ readonly routerIntegrationTransitEncryption: pulumi.Output; /** * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams. */ readonly smoothingLatency: pulumi.Output; /** * The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */ readonly streamId: pulumi.Output; /** * Key-value pairs that can be used to tag and organize this flow output. */ readonly tags: pulumi.Output; /** * The name of the VPC interface attachment to use for this output. */ readonly vpcInterfaceAttachment: pulumi.Output; /** * Create a FlowOutput 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: FlowOutputArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FlowOutput resource. */ export interface FlowOutputArgs { /** * The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */ cidrAllowList?: pulumi.Input[]>; /** * A description of the output. */ description?: pulumi.Input; /** * The address where you want to send the output. */ destination?: pulumi.Input; /** * The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). */ encryption?: pulumi.Input; /** * The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow. */ flowArn: pulumi.Input; /** * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams. */ maxLatency?: pulumi.Input; /** * The definition for each media stream that is associated with the output. */ mediaStreamOutputConfigurations?: pulumi.Input[]>; /** * The minimum latency in milliseconds. */ minLatency?: pulumi.Input; /** * The name of the output. This value must be unique within the current flow. */ name?: pulumi.Input; /** * A suffix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect uses the output name. */ ndiProgramName?: pulumi.Input; /** * A quality setting for the NDI Speed HQ encoder. */ ndiSpeedHqQuality?: pulumi.Input; /** * An indication of whether the output should transmit data or not. */ outputStatus?: pulumi.Input; /** * The port to use when content is distributed to this output. */ port?: pulumi.Input; /** * The protocol that is used by the source or output. */ protocol?: pulumi.Input; /** * The remote ID for the Zixi-pull stream. */ remoteId?: pulumi.Input; routerIntegrationState?: pulumi.Input; /** * Encryption information. */ routerIntegrationTransitEncryption?: pulumi.Input; /** * The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams. */ smoothingLatency?: pulumi.Input; /** * The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */ streamId?: pulumi.Input; /** * Key-value pairs that can be used to tag and organize this flow output. */ tags?: pulumi.Input[]>; /** * The name of the VPC interface attachment to use for this output. */ vpcInterfaceAttachment?: pulumi.Input; }