Show / Hide Table of Contents

Class CfnMultiplexProps

Properties for defining a CfnMultiplex.

Inheritance
object
CfnMultiplexProps
Implements
ICfnMultiplexProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMultiplexProps : ICfnMultiplexProps
Syntax (vb)
Public Class CfnMultiplexProps 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

CfnMultiplexProps()

Properties for defining a CfnMultiplex.

Properties

AvailabilityZones

A list of availability zones for the multiplex.

Destinations

A list of the multiplex output destinations.

MultiplexSettings

Configuration for a multiplex event.

Name

The name of the multiplex.

Tags

A collection of key-value pairs.

Constructors

CfnMultiplexProps()

Properties for defining a CfnMultiplex.

public CfnMultiplexProps()
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"
                 } }
             };

Properties

AvailabilityZones

A list of availability zones for the multiplex.

public string[] AvailabilityZones { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html#cfn-medialive-multiplex-availabilityzones

Destinations

A list of the multiplex output destinations.

public object? Destinations { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html#cfn-medialive-multiplex-destinations

MultiplexSettings

Configuration for a multiplex event.

public object MultiplexSettings { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html#cfn-medialive-multiplex-multiplexsettings

Name

The name of the multiplex.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html#cfn-medialive-multiplex-name

Tags

A collection of key-value pairs.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-multiplex.html#cfn-medialive-multiplex-tags

Implements

ICfnMultiplexProps
Back to top Generated by DocFX