interface TypeConverterEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnTransformerPropsMixin.TypeConverterEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnTransformerPropsMixin_TypeConverterEntryProperty |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnTransformerPropsMixin.TypeConverterEntryProperty |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnTransformerPropsMixin.TypeConverterEntryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » 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 { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const typeConverterEntryProperty: logs_mixins.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