interface Av1ColorSpaceSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnChannelPropsMixin_Av1ColorSpaceSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnChannelPropsMixin » Av1ColorSpaceSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
declare const colorSpacePassthroughSettings: any;
declare const rec601Settings: any;
declare const rec709Settings: any;
const av1ColorSpaceSettingsProperty: medialive.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty = {
colorSpacePassthroughSettings: colorSpacePassthroughSettings,
hdr10Settings: {
maxCll: 123,
maxFall: 123,
},
rec601Settings: rec601Settings,
rec709Settings: rec709Settings,
};
Properties
| Name | Type | Description |
|---|---|---|
| color | any | |
| hdr10 | IResolvable | Hdr10 | |
| rec601 | any | |
| rec709 | any |
colorSpacePassthroughSettings?
Type:
any
(optional)
hdr10Settings?
Type:
IResolvable | Hdr10
(optional)
rec601Settings?
Type:
any
(optional)
rec709Settings?
Type:
any
(optional)

.NET
Go
Java
Python
TypeScript