AWSLogsGetLogEventsResponse
Objective-C
@interface AWSLogsGetLogEventsResponse
Swift
class AWSLogsGetLogEventsResponse
-
The events.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSLogsOutputLogEvent *> *_Nullable events;
Swift
var events: [AWSLogsOutputLogEvent]? { get set }
-
The token for the next set of items in the backward direction. The token expires after 24 hours. This token is not null. If you have reached the end of the stream, it returns the same token you passed in.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextBackwardToken;
Swift
var nextBackwardToken: String? { get set }
-
The token for the next set of items in the forward direction. The token expires after 24 hours. If you have reached the end of the stream, it returns the same token you passed in.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextForwardToken;
Swift
var nextForwardToken: String? { get set }