Interface LiveTailSessionMetadata.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
,SdkBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
,SdkPojo
- Enclosing class:
- LiveTailSessionMetadata
public static interface LiveTailSessionMetadata.Builder extends SdkPojo, CopyableBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LiveTailSessionMetadata.Builder
sampled(Boolean sampled)
If this istrue
, then more than 500 log events matched the request for this update, and thesessionResults
includes a sample of 500 of those events.-
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
-
sampled
LiveTailSessionMetadata.Builder sampled(Boolean sampled)
If this is
true
, then more than 500 log events matched the request for this update, and thesessionResults
includes a sample of 500 of those events.If this is
false
, then 500 or fewer log events matched the request for this update, so no sampling was necessary. In this case, thesessionResults
array includes all log events that matched your request during this time.- Parameters:
sampled
- If this istrue
, then more than 500 log events matched the request for this update, and thesessionResults
includes a sample of 500 of those events.If this is
false
, then 500 or fewer log events matched the request for this update, so no sampling was necessary. In this case, thesessionResults
array includes all log events that matched your request during this time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-