interface CfnSdiSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnSdiSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnSdiSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnSdiSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnSdiSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnSdiSourceMixinProps |
Properties for CfnSdiSourcePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-sdisource.html
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 cfnSdiSourceMixinProps: medialive_mixins.CfnSdiSourceMixinProps = {
mode: 'mode',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode? | string | The current state of the SdiSource. |
| name? | string | The name of the SdiSource. |
| tags? | Cfn[] | A collection of key-value pairs. |
| type? | string | The interface mode of the SdiSource. |
mode?
Type:
string
(optional)
The current state of the SdiSource.
name?
Type:
string
(optional)
The name of the SdiSource.
tags?
Type:
Cfn[]
(optional)
A collection of key-value pairs.
type?
Type:
string
(optional)
The interface mode of the SdiSource.

.NET
Go
Java
Python
TypeScript