interface InputDestinationRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnInputPropsMixin.InputDestinationRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnInputPropsMixin_InputDestinationRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnInputPropsMixin.InputDestinationRequestProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnInputPropsMixin.InputDestinationRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnInputPropsMixin » InputDestinationRequestProperty |
Settings that apply only if the input is a push type of input.
The parent of this entity is Input.
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 inputDestinationRequestProperty: medialive_mixins.CfnInputPropsMixin.InputDestinationRequestProperty = {
network: 'network',
networkRoutes: [{
cidr: 'cidr',
gateway: 'gateway',
}],
staticIpAddress: 'staticIpAddress',
streamName: 'streamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| network? | string | |
| network | IResolvable | (IResolvable | Input)[] | |
| static | string | |
| stream | string | The stream name (application name/application instance) for the location the RTMP source content will be pushed to in MediaLive. |
network?
Type:
string
(optional)
networkRoutes?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
staticIpAddress?
Type:
string
(optional)
streamName?
Type:
string
(optional)
The stream name (application name/application instance) for the location the RTMP source content will be pushed to in MediaLive.

.NET
Go
Java
Python
TypeScript