interface TypeConverterEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.TypeConverterEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_TypeConverterEntryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.TypeConverterEntryProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.TypeConverterEntryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » 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/cfn-property-mixins';
const typeConverterEntryProperty: logs.CfnTransformerPropsMixin.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
(optional)
The key with the value that is to be converted to a different type.
type?
Type:
string
(optional)
The type to convert the field value to.
Valid values are integer , double , string and boolean .

.NET
Go
Java
Python
TypeScript