Interface InputLogEvent.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<InputLogEvent.Builder,InputLogEvent>
,SdkBuilder<InputLogEvent.Builder,InputLogEvent>
,SdkPojo
- Enclosing class:
- InputLogEvent
public static interface InputLogEvent.Builder extends SdkPojo, CopyableBuilder<InputLogEvent.Builder,InputLogEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputLogEvent.Builder
message(String message)
The raw event message.InputLogEvent.Builder
timestamp(Long timestamp)
The time the event occurred, expressed as the number of milliseconds afterJan 1, 1970 00:00:00 UTC
.-
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
-
timestamp
InputLogEvent.Builder timestamp(Long timestamp)
The time the event occurred, expressed as the number of milliseconds after
Jan 1, 1970 00:00:00 UTC
.- Parameters:
timestamp
- The time the event occurred, expressed as the number of milliseconds afterJan 1, 1970 00:00:00 UTC
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
InputLogEvent.Builder message(String message)
The raw event message. Each log event can be no larger than 256 KB.
- Parameters:
message
- The raw event message. Each log event can be no larger than 256 KB.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-