class InputSpecification
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputSpecification |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputSpecification |
Java | software.amazon.awscdk.services.medialive.alpha.InputSpecification |
Python | aws_cdk.aws_medialive_alpha.InputSpecification |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputSpecification |
The input specification for a channel.
Use the static factory methods to select the input type โ mirroring the console's "Other" / "CDI" / "Elemental Link" choice.
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';
declare const cdiInputResolution: medialive_alpha.CdiInputResolution;
declare const inputCodec: medialive_alpha.InputCodec;
declare const inputMaximumBitrate: medialive_alpha.InputMaximumBitrate;
declare const inputResolution: medialive_alpha.InputResolution;
const inputSpecification = medialive_alpha.InputSpecification.cdi(/* all optional props */ {
cdiResolution: cdiInputResolution,
codec: inputCodec,
maximumBitrate: inputMaximumBitrate,
resolution: inputResolution,
});
Initializer
new InputSpecification()
Methods
| Name | Description |
|---|---|
| static cdi(props?) | CDI (uncompressed) inputs. |
| static elemental | Elemental Link inputs. |
| static standard(props?) | Standard inputs ("Other" in the console) โ the most common case. |
static cdi(props?)
public static cdi(props?: CdiInputSpecificationProps): InputSpecification
Parameters
Returns
CDI (uncompressed) inputs.
Adds the maximum CDI input resolution.
static elementalLink()
public static elementalLink(): InputSpecification
Returns
Elemental Link inputs.
No additional specification is required.
static standard(props?)
public static standard(props?: StandardInputSpecificationProps): InputSpecification
Parameters
Returns
Standard inputs ("Other" in the console) โ the most common case.

.NET
Go
Java
Python
TypeScript (