Class CfnSignalMap.MediaResourceProperty
An Amazon Web Services resource used in media workflows.
Implements
Inherited Members
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
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
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
Remarks
Name
The logical name of an Amazon Web Services media resource.
public string? Name { get; set; }
Property Value
Remarks
Sources
A direct source neighbor to an Amazon Web Services media resource.
public object? Sources { get; set; }