TypeConverterEntryProperty

class aws_cdk.aws_logs.TypeConverterEntryProperty(*, key, type)

Bases: object

This object defines one value type that will be converted using the typeConverter processor.

Parameters:
  • key (str) – The key with the value that is to be converted to a different type.

  • type (TypeConverterType) – The data type to convert the field value to.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_logs as logs

type_converter_entry_property = logs.TypeConverterEntryProperty(
    key="key",
    type=logs.TypeConverterType.BOOLEAN
)

Attributes

key

The key with the value that is to be converted to a different type.

type

The data type to convert the field value to.