Interface CfnChannel.IMultitrackInputConfigurationProperty
A complex type that specifies multitrack input configuration.
Namespace: Amazon.CDK.AWS.Ivs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnChannel.IMultitrackInputConfigurationProperty
Syntax (vb)
Public Interface CfnChannel.IMultitrackInputConfigurationProperty
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.Ivs;
var multitrackInputConfigurationProperty = new MultitrackInputConfigurationProperty {
Enabled = false,
MaximumResolution = "maximumResolution",
Policy = "policy"
};
Synopsis
Properties
| Enabled | Indicates whether multitrack input is enabled. |
| MaximumResolution | Maximum resolution for multitrack input. |
| Policy | Indicates whether multitrack input is allowed or required. |
Properties
Enabled
Indicates whether multitrack input is enabled.
object? Enabled { get; }
Property Value
Remarks
Can be set to true only if channel type is STANDARD . Setting enabled to true with any other channel type will cause an exception. If true , then policy , maximumResolution , and containerFormat are required, and containerFormat must be set to FRAGMENTED_MP4 . Default: false .
Default: - false
Type union: either bool or IResolvable
MaximumResolution
Maximum resolution for multitrack input.
string? MaximumResolution { get; }
Property Value
Remarks
Policy
Indicates whether multitrack input is allowed or required.
string? Policy { get; }