UNPKG

@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)

106 lines (105 loc) 3.77 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource schema for AWS::MediaConnect::FlowSource */ export declare function getFlowSource(args: GetFlowSourceArgs, opts?: pulumi.InvokeOptions): Promise<GetFlowSourceResult>; export interface GetFlowSourceArgs { /** * The ARN of the source. */ sourceArn: string; } export interface GetFlowSourceResult { /** * The type of encryption that is used on the content ingested from this source. */ readonly decryption?: outputs.mediaconnect.FlowSourceEncryption; /** * A description for the source. This value is not used or seen outside of the current AWS Elemental MediaConnect account. */ readonly description?: string; /** * The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account. The entitlement is set by the content originator and the ARN is generated as part of the originator's flow. */ readonly entitlementArn?: string; /** * The ARN of the flow. */ readonly flowArn?: string; /** * The source configuration for cloud flows receiving a stream from a bridge. */ readonly gatewayBridgeSource?: outputs.mediaconnect.FlowSourceGatewayBridgeSource; /** * The IP address that the flow will be listening on for incoming content. */ readonly ingestIp?: string; /** * The port that the flow will be listening on for incoming content. */ readonly ingestPort?: number; /** * The smoothing max bitrate for RIST, RTP, and RTP-FEC streams. */ readonly maxBitrate?: number; /** * The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams. */ readonly maxLatency?: number; /** * The minimum latency in milliseconds. */ readonly minLatency?: number; /** * The protocol that is used by the source. */ readonly protocol?: enums.mediaconnect.FlowSourceProtocol; /** * The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol. */ readonly senderControlPort?: number; /** * The IP address that the flow communicates with to initiate connection with the sender for fujitsu-qos protocol. */ readonly senderIpAddress?: string; /** * The ARN of the source. */ readonly sourceArn?: string; /** * The port that the flow will be listening on for incoming content.(ReadOnly) */ readonly sourceIngestPort?: string; /** * Source IP or domain name for SRT-caller protocol. */ readonly sourceListenerAddress?: string; /** * Source port for SRT-caller protocol. */ readonly sourceListenerPort?: number; /** * The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams. */ readonly streamId?: string; /** * The name of the VPC Interface this Source is configured with. */ readonly vpcInterfaceName?: string; /** * The range of IP addresses that should be allowed to contribute content to your source. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16. */ readonly whitelistCidr?: string; } /** * Resource schema for AWS::MediaConnect::FlowSource */ export declare function getFlowSourceOutput(args: GetFlowSourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlowSourceResult>; export interface GetFlowSourceOutputArgs { /** * The ARN of the source. */ sourceArn: pulumi.Input<string>; }