interface TypeConverterEntryProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Logs.CfnTransformer.TypeConverterEntryProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_TypeConverterEntryProperty |
![]() | software.amazon.awscdk.services.logs.CfnTransformer.TypeConverterEntryProperty |
![]() | aws_cdk.aws_logs.CfnTransformer.TypeConverterEntryProperty |
![]() | 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
.