Interface AddKeyEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AddKeyEntry.Builder,AddKeyEntry>,SdkBuilder<AddKeyEntry.Builder,AddKeyEntry>,SdkPojo
- Enclosing class:
- AddKeyEntry
public static interface AddKeyEntry.Builder extends SdkPojo, CopyableBuilder<AddKeyEntry.Builder,AddKeyEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddKeyEntry.Builderkey(String key)The key of the new entry to be added to the log eventAddKeyEntry.BuilderoverwriteIfExists(Boolean overwriteIfExists)Specifies whether to overwrite the value if the key already exists in the log event.AddKeyEntry.Buildervalue(String value)The value of the new entry to be added to the log event-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
key
AddKeyEntry.Builder key(String key)
The key of the new entry to be added to the log event
- Parameters:
key- The key of the new entry to be added to the log event- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
AddKeyEntry.Builder value(String value)
The value of the new entry to be added to the log event
- Parameters:
value- The value of the new entry to be added to the log event- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overwriteIfExists
AddKeyEntry.Builder overwriteIfExists(Boolean overwriteIfExists)
Specifies whether to overwrite the value if the key already exists in the log event. If you omit this, the default is
false.- Parameters:
overwriteIfExists- Specifies whether to overwrite the value if the key already exists in the log event. If you omit this, the default isfalse.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-