AWSLogsLiveTailSessionUpdate

Objective-C

@interface AWSLogsLiveTailSessionUpdate

Swift

class AWSLogsLiveTailSessionUpdate

This object contains the log events and metadata for a Live Tail session.

  • This object contains the session metadata for a Live Tail session.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSLogsLiveTailSessionMetadata *_Nullable sessionMetadata;

    Swift

    var sessionMetadata: AWSLogsLiveTailSessionMetadata? { get set }
  • An array, where each member of the array includes the information for one log event in the Live Tail session.

    A sessionResults array can include as many as 500 log events. If the number of log events matching the request exceeds 500 per second, the log events are sampled down to 500 log events to be included in each sessionUpdate structure.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSLogsLiveTailSessionLogEvent *> *_Nullable sessionResults;

    Swift

    var sessionResults: [AWSLogsLiveTailSessionLogEvent]? { get set }