interface IInput
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.IInput |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#IInput |
Java | software.amazon.awscdk.services.medialive.alpha.IInput |
Python | aws_cdk.aws_medialive_alpha.IInput |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป IInput |
Implements
IDependable, IConstruct, IEnvironment, IResource, IInput
Implemented by
Input
Obtainable from
Input.fromInputArn()
Represents a MediaLive Input.
Properties
| Name | Type | Description |
|---|---|---|
| env | Resource | The environment this resource belongs to. |
| input | string | The Amazon Resource Name (ARN) of the input. |
| input | string | The ID of the input. |
| input | Input | A reference to a Input resource. |
| node | Node | The tree node. |
| stack | Stack | The stack in which this resource is defined. |
| input | string | The input class (STANDARD or SINGLE_PIPELINE). |
| input | string[] | For push inputs, the destination URLs where the upstream system sends content. |
| input | string[] | For pull inputs, the source URLs where MediaLive pulls content from. |
| input | string | The input type (e.g. SRT_CALLER, MP4_FILE, URL_PULL). Undefined for imported inputs. |
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
inputArn
Type:
string
The Amazon Resource Name (ARN) of the input.
inputId
Type:
string
The ID of the input.
inputRef
Type:
Input
A reference to a Input resource.
node
Type:
Node
The tree node.
stack
Type:
Stack
The stack in which this resource is defined.
inputClass?
Type:
string
(optional)
The input class (STANDARD or SINGLE_PIPELINE).
Only available for input types where the pipeline count is known at construct time (e.g. mediaConnectRouter). Undefined for imported inputs and other types.
inputDestinations?
Type:
string[]
(optional)
For push inputs, the destination URLs where the upstream system sends content.
inputSources?
Type:
string[]
(optional)
For pull inputs, the source URLs where MediaLive pulls content from.
inputType?
Type:
string
(optional)
The input type (e.g. SRT_CALLER, MP4_FILE, URL_PULL). Undefined for imported inputs.
Methods
| Name | Description |
|---|---|
| apply | Apply the given removal policy to this resource. |
| with(...mixins) | Applies one or more mixins to this construct. |
applyRemovalPolicy(policy)
public applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
RemovalPolicy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
with(...mixins)
public with(...mixins: IMixin[]): IConstruct
Parameters
- mixins
IMixinโ The mixins to apply.
Returns
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the start of the call, so constructs added by a mixin will not be visited.

.NET
Go
Java
Python
TypeScript (