Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html

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

object

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-enabled

Type union: either bool or IResolvable

MaximumResolution

Maximum resolution for multitrack input.

string? MaximumResolution { get; }
Property Value

string

Remarks

Required if enabled is true .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-maximumresolution

Policy

Indicates whether multitrack input is allowed or required.

string? Policy { get; }
Property Value

string

Remarks

Required if enabled is true .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-channel-multitrackinputconfiguration.html#cfn-ivs-channel-multitrackinputconfiguration-policy

Back to top Generated by DocFX