interface MediaResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnSignalMapPropsMixin.MediaResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnSignalMapPropsMixin_MediaResourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnSignalMapPropsMixin.MediaResourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnSignalMapPropsMixin.MediaResourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnSignalMapPropsMixin » MediaResourceProperty |
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 { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const mediaResourceProperty: medialive.CfnSignalMapPropsMixin.MediaResourceProperty = {
destinations: [{
arn: 'arn',
name: 'name',
}],
name: 'name',
sources: [{
arn: 'arn',
name: 'name',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destinations? | IResolvable | (IResolvable | Media)[] | A direct destination neighbor to an Amazon Web Services media resource. |
| name? | string | The logical name of an Amazon Web Services media resource. |
| sources? | IResolvable | (IResolvable | Media)[] | A direct source neighbor to an Amazon Web Services media resource. |
destinations?
Type:
IResolvable | (IResolvable | Media)[]
(optional)
A direct destination neighbor to an Amazon Web Services media resource.
name?
Type:
string
(optional)
The logical name of an Amazon Web Services media resource.
sources?
Type:
IResolvable | (IResolvable | Media)[]
(optional)
A direct source neighbor to an Amazon Web Services media resource.

.NET
Go
Java
Python
TypeScript