Interface CfnSignalMap.MediaResourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSignalMap.MediaResourceProperty.Jsii$Proxy
- Enclosing class:
CfnSignalMap
@Stability(Stable)
public static interface CfnSignalMap.MediaResourceProperty
extends software.amazon.jsii.JsiiSerializable
An Amazon Web Services resource used in media workflows.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
MediaResourceProperty mediaResourceProperty = MediaResourceProperty.builder()
.destinations(List.of(MediaResourceNeighborProperty.builder()
.arn("arn")
// the properties below are optional
.name("name")
.build()))
.name("name")
.sources(List.of(MediaResourceNeighborProperty.builder()
.arn("arn")
// the properties below are optional
.name("name")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSignalMap.MediaResourcePropertystatic final classAn implementation forCfnSignalMap.MediaResourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinations
A direct destination neighbor to an Amazon Web Services media resource.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSignalMap.MediaResourceNeighborProperty>- See Also:
-
getName
The logical name of an Amazon Web Services media resource.- See Also:
-
getSources
A direct source neighbor to an Amazon Web Services media resource.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnSignalMap.MediaResourceNeighborProperty>- See Also:
-
builder
-