interface MediaResourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnSignalMapPropsMixin.MediaResourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnSignalMapPropsMixin_MediaResourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnSignalMapPropsMixin.MediaResourceProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnSignalMapPropsMixin.MediaResourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const mediaResourceProperty: medialive_mixins.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