Interface CfnSignalMapPropsMixin.MediaResourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSignalMapPropsMixin.MediaResourceProperty.Jsii$Proxy
Enclosing class:
CfnSignalMapPropsMixin

@Stability(Stable) public static interface CfnSignalMapPropsMixin.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.cfnpropertymixins.services.medialive.*;
 MediaResourceProperty mediaResourceProperty = MediaResourceProperty.builder()
         .destinations(List.of(MediaResourceNeighborProperty.builder()
                 .arn("arn")
                 .name("name")
                 .build()))
         .name("name")
         .sources(List.of(MediaResourceNeighborProperty.builder()
                 .arn("arn")
                 .name("name")
                 .build()))
         .build();
 

See Also: