Show / Hide Table of Contents

Class CfnSignalMap.MediaResourceProperty

An Amazon Web Services resource used in media workflows.

Inheritance
object
CfnSignalMap.MediaResourceProperty
Implements
CfnSignalMap.IMediaResourceProperty
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 CfnSignalMap.MediaResourceProperty : CfnSignalMap.IMediaResourceProperty
Syntax (vb)
Public Class CfnSignalMap.MediaResourceProperty Implements CfnSignalMap.IMediaResourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.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 mediaResourceProperty = new MediaResourceProperty {
                 Destinations = new [] { new MediaResourceNeighborProperty {
                     Arn = "arn",

                     // the properties below are optional
                     Name = "name"
                 } },
                 Name = "name",
                 Sources = new [] { new MediaResourceNeighborProperty {
                     Arn = "arn",

                     // the properties below are optional
                     Name = "name"
                 } }
             };

Synopsis

Constructors

MediaResourceProperty()

An Amazon Web Services resource used in media workflows.

Properties

Destinations

A direct destination neighbor to an Amazon Web Services media resource.

Name

The logical name of an Amazon Web Services media resource.

Sources

A direct source neighbor to an Amazon Web Services media resource.

Constructors

MediaResourceProperty()

An Amazon Web Services resource used in media workflows.

public MediaResourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.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 mediaResourceProperty = new MediaResourceProperty {
                 Destinations = new [] { new MediaResourceNeighborProperty {
                     Arn = "arn",

                     // the properties below are optional
                     Name = "name"
                 } },
                 Name = "name",
                 Sources = new [] { new MediaResourceNeighborProperty {
                     Arn = "arn",

                     // the properties below are optional
                     Name = "name"
                 } }
             };

Properties

Destinations

A direct destination neighbor to an Amazon Web Services media resource.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.html#cfn-medialive-signalmap-mediaresource-destinations

Name

The logical name of an Amazon Web Services media resource.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.html#cfn-medialive-signalmap-mediaresource-name

Sources

A direct source neighbor to an Amazon Web Services media resource.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-signalmap-mediaresource.html#cfn-medialive-signalmap-mediaresource-sources

Implements

CfnSignalMap.IMediaResourceProperty
Back to top Generated by DocFX