interface TypeConverterEntryProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Logs.TypeConverterEntryProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#TypeConverterEntryProperty | 
  Java | software.amazon.awscdk.services.logs.TypeConverterEntryProperty | 
  Python | aws_cdk.aws_logs.TypeConverterEntryProperty | 
  TypeScript (source) | aws-cdk-lib » aws_logs » TypeConverterEntryProperty | 
This object defines one value type that will be converted using the typeConverter processor.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const typeConverterEntryProperty: logs.TypeConverterEntryProperty = {
  key: 'key',
  type: logs.TypeConverterType.BOOLEAN,
};
Properties
| Name | Type | Description | 
|---|---|---|
| key | string | The key with the value that is to be converted to a different type. | 
| type | Type | The data type to convert the field value to. | 
key
Type:
string
The key with the value that is to be converted to a different type.
type
Type:
Type
The data type to convert the field value to.

 .NET
 Go
 Java
 Python
 TypeScript (