interface PushInputDestination
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.PushInputDestination |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#PushInputDestination |
Java | software.amazon.awscdk.services.medialive.alpha.PushInputDestination |
Python | aws_cdk.aws_medialive_alpha.PushInputDestination |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป PushInputDestination |
A destination for a push-type input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import { aws_medialive as interfaces_medialive } from 'aws-cdk-lib/interfaces';
declare const networkRef: interfaces_medialive.INetworkRef;
const pushInputDestination: medialive_alpha.PushInputDestination = {
network: networkRef,
networkRoutes: [{
cidr: 'cidr',
gateway: 'gateway',
}],
staticIpAddress: 'staticIpAddress',
streamName: 'streamName',
};
Properties
| Name | Type | Description |
|---|---|---|
| network? | INetwork | The MediaLive Anywhere network this push destination lives on. |
| network | Network[] | The routes to the push destination on the local network. |
| static | string | A static IP address to assign to the push destination on the local network. |
| stream | string | The stream name for RTMP push destinations (application name/instance). |
network?
Type:
INetwork
(optional, default: AWS-managed network)
The MediaLive Anywhere network this push destination lives on.
Required when the input's
inputNetworkLocation is ON_PREMISES.
networkRoutes?
Type:
Network[]
(optional, default: no routes)
The routes to the push destination on the local network.
Required for
on-premises (ON_PREMISES) push inputs.
staticIpAddress?
Type:
string
(optional, default: MediaLive Anywhere uses one from the IP pool specified on the selected network (service default))
A static IP address to assign to the push destination on the local network.
streamName?
Type:
string
(optional, default: auto-generated)
The stream name for RTMP push destinations (application name/instance).

.NET
Go
Java
Python
TypeScript (