@Stability(value=Stable)
public static interface CfnChannel.RemixSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The parent of this entity is AudioDescription.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
RemixSettingsProperty remixSettingsProperty = RemixSettingsProperty.builder()
.channelMappings(List.of(AudioChannelMappingProperty.builder()
.inputChannelLevels(List.of(InputChannelLevelProperty.builder()
.gain(123)
.inputChannel(123)
.build()))
.outputChannel(123)
.build()))
.channelsIn(123)
.channelsOut(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnChannel.RemixSettingsProperty.Builder
A builder for
CfnChannel.RemixSettingsProperty |
static class |
CfnChannel.RemixSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.RemixSettingsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnChannel.RemixSettingsProperty.Builder |
builder() |
default Object |
getChannelMappings()
A mapping of input channels to output channels, with appropriate gain adjustments.
|
default Number |
getChannelsIn()
The number of input channels to be used.
|
default Number |
getChannelsOut()
The number of output channels to be produced.
|
@Stability(value=Stable) @Nullable default Object getChannelMappings()
@Stability(value=Stable) @Nullable default Number getChannelsIn()
@Stability(value=Stable) @Nullable default Number getChannelsOut()
Valid values: 1, 2, 4, 6, 8.
@Stability(value=Stable) static CfnChannel.RemixSettingsProperty.Builder builder()
Copyright © 2022. All rights reserved.