Interface CfnTransformerPropsMixin.AddKeyEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformerPropsMixin.AddKeyEntryProperty.Jsii$Proxy
- Enclosing class:
CfnTransformerPropsMixin
@Stability(Stable)
public static interface CfnTransformerPropsMixin.AddKeyEntryProperty
extends software.amazon.jsii.JsiiSerializable
This object defines one key that will be added with the addKeys 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.cfnpropertymixins.services.logs.*;
AddKeyEntryProperty addKeyEntryProperty = AddKeyEntryProperty.builder()
.key("key")
.overwriteIfExists(false)
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformerPropsMixin.AddKeyEntryPropertystatic final classAn implementation forCfnTransformerPropsMixin.AddKeyEntryProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetKey()The key of the new entry to be added to the log event.default ObjectSpecifies whether to overwrite the value if the key already exists in the log event.default StringgetValue()The value of the new entry to be added to the log event.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key of the new entry to be added to the log event.- See Also:
-
getOverwriteIfExists
Specifies whether to overwrite the value if the key already exists in the log event.If you omit this, the default is
false.Returns union: either
BooleanorIResolvable- See Also:
-
getValue
The value of the new entry to be added to the log event.- See Also:
-
builder
-