Interface ParseJSON.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParseJSON.Builder,ParseJSON>,SdkBuilder<ParseJSON.Builder,ParseJSON>,SdkPojo
- Enclosing class:
- ParseJSON
public static interface ParseJSON.Builder extends SdkPojo, CopyableBuilder<ParseJSON.Builder,ParseJSON>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParseJSON.Builderdestination(String destination)The location to put the parsed key value pair into.ParseJSON.Buildersource(String source)Path to the field in the log event that will be parsed.-
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
-
source
ParseJSON.Builder source(String source)
Path to the field in the log event that will be parsed. Use dot notation to access child fields. For example,
store.book- Parameters:
source- Path to the field in the log event that will be parsed. Use dot notation to access child fields. For example,store.book- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
ParseJSON.Builder destination(String destination)
The location to put the parsed key value pair into. If you omit this parameter, it is placed under the root node.
- Parameters:
destination- The location to put the parsed key value pair into. If you omit this parameter, it is placed under the root node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-