Interface CfnTransformer.TypeConverterEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformer.TypeConverterEntryProperty.Jsii$Proxy
- Enclosing class:
CfnTransformer
@Stability(Stable)
public static interface CfnTransformer.TypeConverterEntryProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.logs.*;
TypeConverterEntryProperty typeConverterEntryProperty = TypeConverterEntryProperty.builder()
.key("key")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformer.TypeConverterEntryPropertystatic final classAn implementation forCfnTransformer.TypeConverterEntryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key with the value that is to be converted to a different type.- See Also:
-
getType
The type to convert the field value to.Valid values are
integer,double,stringandboolean.- See Also:
-
builder
-