AWSLogsPutLogEventsRequest
Objective-C
@interface AWSLogsPutLogEventsRequest
Swift
class AWSLogsPutLogEventsRequest
-
The log events.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSLogsInputLogEvent *> *_Nullable logEvents;
Swift
var logEvents: [AWSLogsInputLogEvent]? { get set }
-
The name of the log group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable logGroupName;
Swift
var logGroupName: String? { get set }
-
The name of the log stream.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable logStreamName;
Swift
var logStreamName: String? { get set }
-
The sequence token obtained from the response of the previous
PutLogEvents
call.The
sequenceToken
parameter is now ignored inPutLogEvents
actions.PutLogEvents
actions are now accepted and never returnInvalidSequenceTokenException
orDataAlreadyAcceptedException
even if the sequence token is not valid.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable sequenceToken;
Swift
var sequenceToken: String? { get set }