interface TypeConverterEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnTransformer.TypeConverterEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_TypeConverterEntryProperty |
Java | software.amazon.awscdk.services.logs.CfnTransformer.TypeConverterEntryProperty |
Python | aws_cdk.aws_logs.CfnTransformer.TypeConverterEntryProperty |
TypeScript | aws-cdk-lib » aws_logs » CfnTransformer » 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.CfnTransformer.TypeConverterEntryProperty = {
key: 'key',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The key with the value that is to be converted to a different type. |
| type | string | The 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:
string
The type to convert the field value to.
Valid values are integer , double , string and boolean .

.NET
Go
Java
Python
TypeScript