AWSLogsGetLogRecordRequest

Objective-C

@interface AWSLogsGetLogRecordRequest

Swift

class AWSLogsGetLogRecordRequest
  • The pointer corresponding to the log event record you want to retrieve. You get this from the response of a GetQueryResults operation. In that response, the value of the @ptr field for a log event is the value to use as logRecordPointer to retrieve that complete log event record.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable logRecordPointer;

    Swift

    var logRecordPointer: String? { get set }
  • Specify true to display the log event fields with all sensitive data unmasked and visible. The default is false.

    To use this operation with this parameter, you must be signed into an account with the logs:Unmask permission.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable unmask;

    Swift

    var unmask: NSNumber? { get set }