interface MultitrackInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnChannelPropsMixin.MultitrackInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnChannelPropsMixin_MultitrackInputConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnChannelPropsMixin.MultitrackInputConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnChannelPropsMixin.MultitrackInputConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » CfnChannelPropsMixin » MultitrackInputConfigurationProperty |
A complex type that specifies multitrack input configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ivs as ivs } from '@aws-cdk/cfn-property-mixins';
const multitrackInputConfigurationProperty: ivs.CfnChannelPropsMixin.MultitrackInputConfigurationProperty = {
enabled: false,
maximumResolution: 'maximumResolution',
policy: 'policy',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Indicates whether multitrack input is enabled. |
| maximum | string | Maximum resolution for multitrack input. |
| policy? | string | Indicates whether multitrack input is allowed or required. |
enabled?
Type:
boolean | IResolvable
(optional, default: false)
Indicates whether multitrack input is enabled.
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 .
maximumResolution?
Type:
string
(optional)
Maximum resolution for multitrack input.
Required if enabled is true .
policy?
Type:
string
(optional)
Indicates whether multitrack input is allowed or required.
Required if enabled is true .

.NET
Go
Java
Python
TypeScript