Interface CfnChannelPropsMixin.OutputDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelPropsMixin.OutputDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnChannelPropsMixin
@Stability(Stable)
public static interface CfnChannelPropsMixin.OutputDestinationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information for an output.
This entity is at the top level in the channel.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.medialive.*;
OutputDestinationProperty outputDestinationProperty = OutputDestinationProperty.builder()
.id("id")
.logicalInterfaceNames(List.of("logicalInterfaceNames"))
.mediaPackageSettings(List.of(MediaPackageOutputDestinationSettingsProperty.builder()
.channelEndpointId("channelEndpointId")
.channelGroup("channelGroup")
.channelId("channelId")
.channelName("channelName")
.mediaPackageRegionName("mediaPackageRegionName")
.build()))
.multiplexSettings(MultiplexProgramChannelDestinationSettingsProperty.builder()
.multiplexId("multiplexId")
.programName("programName")
.build())
.settings(List.of(OutputDestinationSettingsProperty.builder()
.passwordParam("passwordParam")
.streamName("streamName")
.url("url")
.username("username")
.build()))
.srtSettings(List.of(SrtOutputDestinationSettingsProperty.builder()
.connectionMode("connectionMode")
.encryptionPassphraseSecretArn("encryptionPassphraseSecretArn")
.listenerPort(123)
.streamId("streamId")
.url("url")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.OutputDestinationPropertystatic final classAn implementation forCfnChannelPropsMixin.OutputDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetId()The ID for this destination.default ObjectThe destination settings for a MediaPackage output.default ObjectDestination settings for a Multiplex output;default ObjectThe destination settings for an output.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannelPropsMixin.SrtOutputDestinationSettingsProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The ID for this destination.- See Also:
-
getLogicalInterfaceNames
- See Also:
-
getMediaPackageSettings
The destination settings for a MediaPackage output.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannelPropsMixin.MediaPackageOutputDestinationSettingsProperty>- See Also:
-
getMultiplexSettings
Destination settings for a Multiplex output;one destination for both encoders.
Returns union: either
IResolvableorCfnChannelPropsMixin.MultiplexProgramChannelDestinationSettingsProperty- See Also:
-
getSettings
The destination settings for an output.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannelPropsMixin.OutputDestinationSettingsProperty>- See Also:
-
getSrtSettings
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnChannelPropsMixin.SrtOutputDestinationSettingsProperty>- See Also:
-
builder
-