interface Av1ColorSpaceSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_Av1ColorSpaceSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.Av1ColorSpaceSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » Av1ColorSpaceSettingsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
declare const colorSpacePassthroughSettings: any;
declare const rec601Settings: any;
declare const rec709Settings: any;
const av1ColorSpaceSettingsProperty: medialive_mixins.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