Interface OutputLogEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OutputLogEvent.Builder,OutputLogEvent>,SdkBuilder<OutputLogEvent.Builder,OutputLogEvent>,SdkPojo
- Enclosing class:
- OutputLogEvent
public static interface OutputLogEvent.Builder extends SdkPojo, CopyableBuilder<OutputLogEvent.Builder,OutputLogEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OutputLogEvent.BuilderingestionTime(Long ingestionTime)The time the event was ingested, expressed as the number of milliseconds afterJan 1, 1970 00:00:00 UTC.OutputLogEvent.Buildermessage(String message)The data contained in the log event.OutputLogEvent.Buildertimestamp(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, sdkFields
-
-
-
-
Method Detail
-
timestamp
OutputLogEvent.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
OutputLogEvent.Builder message(String message)
The data contained in the log event.
- Parameters:
message- The data contained in the log event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingestionTime
OutputLogEvent.Builder ingestionTime(Long ingestionTime)
The time the event was ingested, expressed as the number of milliseconds after
Jan 1, 1970 00:00:00 UTC.- Parameters:
ingestionTime- The time the event was ingested, 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.
-
-