class LogLevel
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.LogLevel |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#LogLevel |
Java | software.amazon.awscdk.services.medialive.alpha.LogLevel |
Python | aws_cdk.aws_medialive_alpha.LogLevel |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป LogLevel |
The log level for the channel.
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 logLevel = medialive_alpha.LogLevel.DEBUG;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static DEBUG | Log | Log everything. |
| static DISABLED | Log | Disable logging. |
| static ERROR | Log | Log errors only. |
| static INFO | Log | Log info, warnings, and errors. |
| static WARNING | Log | Log warnings and errors. |
value
Type:
string
The underlying string value passed to CloudFormation.
static DEBUG
Type:
Log
Log everything.
static DISABLED
Type:
Log
Disable logging.
static ERROR
Type:
Log
Log errors only.
static INFO
Type:
Log
Log info, warnings, and errors.
static WARNING
Type:
Log
Log warnings and errors.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): LogLevel
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (