Class CfnMultiplexProps
Properties for defining a CfnMultiplex
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMultiplexProps : Object, ICfnMultiplexProps
Syntax (vb)
Public Class CfnMultiplexProps
Inherits Object
Implements ICfnMultiplexProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MediaLive;
var cfnMultiplexProps = new CfnMultiplexProps {
AvailabilityZones = new [] { "availabilityZones" },
MultiplexSettings = new MultiplexSettingsProperty {
TransportStreamBitrate = 123,
TransportStreamId = 123,
// the properties below are optional
MaximumVideoBufferDelayMilliseconds = 123,
TransportStreamReservedBitrate = 123
},
Name = "name",
// the properties below are optional
Destinations = new [] { new MultiplexOutputDestinationProperty {
MultiplexMediaConnectOutputDestinationSettings = new MultiplexMediaConnectOutputDestinationSettingsProperty {
EntitlementArn = "entitlementArn"
}
} },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
Cfn |
Properties
Availability |
A list of availability zones for the multiplex. |
Destinations | A list of the multiplex output destinations. |
Multiplex |
Configuration for a multiplex event. |
Name | The name of the multiplex. |
Tags | A collection of key-value pairs. |
Constructors
CfnMultiplexProps()
public CfnMultiplexProps()
Properties
AvailabilityZones
A list of availability zones for the multiplex.
public string[] AvailabilityZones { get; set; }
Property Value
System.
Remarks
Destinations
A list of the multiplex output destinations.
public object Destinations { get; set; }
Property Value
System.
Remarks
MultiplexSettings
Configuration for a multiplex event.
public object MultiplexSettings { get; set; }
Property Value
System.
Remarks
Name
The name of the multiplex.
public string Name { get; set; }
Property Value
System.
Remarks
Tags
A collection of key-value pairs.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn