Interface ICfnFlowOutputProps
Properties for defining a CfnFlowOutput
.
Namespace: Amazon.CDK.AWS.MediaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnFlowOutputProps
Syntax (vb)
Public Interface ICfnFlowOutputProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaConnect;
var cfnFlowOutputProps = new CfnFlowOutputProps {
FlowArn = "flowArn",
Protocol = "protocol",
// the properties below are optional
CidrAllowList = new [] { "cidrAllowList" },
Description = "description",
Destination = "destination",
Encryption = new EncryptionProperty {
RoleArn = "roleArn",
SecretArn = "secretArn",
// the properties below are optional
Algorithm = "algorithm",
KeyType = "keyType"
},
MaxLatency = 123,
MediaStreamOutputConfigurations = new [] { new MediaStreamOutputConfigurationProperty {
EncodingName = "encodingName",
MediaStreamName = "mediaStreamName",
// the properties below are optional
DestinationConfigurations = new [] { new DestinationConfigurationProperty {
DestinationIp = "destinationIp",
DestinationPort = 123,
Interface = new InterfaceProperty {
Name = "name"
}
} },
EncodingParameters = new EncodingParametersProperty {
CompressionFactor = 123,
// the properties below are optional
EncoderProfile = "encoderProfile"
}
} },
MinLatency = 123,
Name = "name",
OutputStatus = "outputStatus",
Port = 123,
RemoteId = "remoteId",
SmoothingLatency = 123,
StreamId = "streamId",
VpcInterfaceAttachment = new VpcInterfaceAttachmentProperty {
VpcInterfaceName = "vpcInterfaceName"
}
};
Synopsis
Properties
CidrAllowList | The range of IP addresses that are allowed to initiate output requests to this flow. |
Description | A description of the output. |
Destination | The IP address where you want to send the output. |
Encryption | The encryption credentials that you want to use for the output. |
FlowArn | The Amazon Resource Name (ARN) of the flow this output is attached to. |
MaxLatency | The maximum latency in milliseconds. |
MediaStreamOutputConfigurations | The definition for each media stream that is associated with the output. |
MinLatency | The minimum latency in milliseconds for SRT-based streams. |
Name | The name of the output. |
OutputStatus | An indication of whether the new output should be enabled or disabled as soon as it is created. |
Port | The port to use when MediaConnect distributes content to the output. |
Protocol | The protocol to use for the output. |
RemoteId | The identifier that is assigned to the Zixi receiver. |
SmoothingLatency | The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams. |
StreamId | The stream ID that you want to use for this transport. |
VpcInterfaceAttachment | The VPC interface that you want to send your output to. |
Properties
CidrAllowList
The range of IP addresses that are allowed to initiate output requests to this flow.
virtual string[] CidrAllowList { get; }
Property Value
System.String[]
Remarks
Format the IP addresses as a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
Description
A description of the output.
virtual string Description { get; }
Property Value
System.String
Remarks
This description is not visible outside of the current AWS account even if the account grants entitlements to other accounts.
Destination
The IP address where you want to send the output.
virtual string Destination { get; }
Property Value
System.String
Remarks
Encryption
The encryption credentials that you want to use for the output.
virtual object Encryption { get; }
Property Value
System.Object
Remarks
FlowArn
The Amazon Resource Name (ARN) of the flow this output is attached to.
string FlowArn { get; }
Property Value
System.String
Remarks
MaxLatency
The maximum latency in milliseconds.
virtual Nullable<double> MaxLatency { get; }
Property Value
System.Nullable<System.Double>
Remarks
This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.
MediaStreamOutputConfigurations
The definition for each media stream that is associated with the output.
virtual object MediaStreamOutputConfigurations { get; }
Property Value
System.Object
Remarks
MinLatency
The minimum latency in milliseconds for SRT-based streams.
virtual Nullable<double> MinLatency { get; }
Property Value
System.Nullable<System.Double>
Remarks
In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
Name
The name of the output.
virtual string Name { get; }
Property Value
System.String
Remarks
This value must be unique within the current flow.
OutputStatus
An indication of whether the new output should be enabled or disabled as soon as it is created.
virtual string OutputStatus { get; }
Property Value
System.String
Remarks
If you don't specify the outputStatus field in your request, MediaConnect sets it to ENABLED.
Port
The port to use when MediaConnect distributes content to the output.
virtual Nullable<double> Port { get; }
Property Value
System.Nullable<System.Double>
Remarks
Protocol
The protocol to use for the output.
string Protocol { get; }
Property Value
System.String
Remarks
RemoteId
The identifier that is assigned to the Zixi receiver.
virtual string RemoteId { get; }
Property Value
System.String
Remarks
This parameter applies only to outputs that use Zixi pull.
SmoothingLatency
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
virtual Nullable<double> SmoothingLatency { get; }
Property Value
System.Nullable<System.Double>
Remarks
StreamId
The stream ID that you want to use for this transport.
virtual string StreamId { get; }
Property Value
System.String
Remarks
This parameter applies only to Zixi and SRT caller-based streams.
VpcInterfaceAttachment
The VPC interface that you want to send your output to.
virtual object VpcInterfaceAttachment { get; }
Property Value
System.Object