interface InputDestinationRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnInput.InputDestinationRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnInput_InputDestinationRequestProperty |
Java | software.amazon.awscdk.services.medialive.CfnInput.InputDestinationRequestProperty |
Python | aws_cdk.aws_medialive.CfnInput.InputDestinationRequestProperty |
TypeScript | aws-cdk-lib » aws_medialive » CfnInput » 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 { aws_medialive as medialive } from 'aws-cdk-lib';
const inputDestinationRequestProperty: medialive.CfnInput.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