class InputFilter
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputFilter |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputFilter |
Java | software.amazon.awscdk.services.medialive.alpha.InputFilter |
Python | aws_cdk.aws_medialive_alpha.InputFilter |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputFilter |
Input filter mode.
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';
const inputFilter = medialive_alpha.InputFilter.AUTO;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static AUTO | Input | Auto-detect filtering based on input type. |
| static DISABLED | Input | Disable filtering. |
| static FORCED | Input | Force filtering regardless of input type. |
value
Type:
string
The underlying string value passed to CloudFormation.
static AUTO
Type:
Input
Auto-detect filtering based on input type.
static DISABLED
Type:
Input
Disable filtering.
static FORCED
Type:
Input
Force filtering regardless of input type.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): InputFilter
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (