Class LiveTailSessionMetadata
- java.lang.Object
-
- software.amazon.awssdk.services.cloudwatchlogs.model.LiveTailSessionMetadata
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
@Generated("software.amazon.awssdk:codegen") public final class LiveTailSessionMetadata extends Object implements SdkPojo, Serializable, ToCopyableBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
This object contains the metadata for one
LiveTailSessionUpdate
structure. It indicates whether that update includes only a sample of 500 log events out of a larger number of ingested log events, or if it contains all of the matching log events ingested during that second of time.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
LiveTailSessionMetadata.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LiveTailSessionMetadata.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
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.List<SdkField<?>>
sdkFields()
static Class<? extends LiveTailSessionMetadata.Builder>
serializableBuilderClass()
LiveTailSessionMetadata.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
sampled
public final 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.- Returns:
- 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.
-
toBuilder
public LiveTailSessionMetadata.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<LiveTailSessionMetadata.Builder,LiveTailSessionMetadata>
-
builder
public static LiveTailSessionMetadata.Builder builder()
-
serializableBuilderClass
public static Class<? extends LiveTailSessionMetadata.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-