GetLogEventsRequest
public struct GetLogEventsRequest : AWSShape
extension CloudWatchLogs.GetLogEventsRequest: AWSPaginateStringToken
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The end of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to or later than this time are not included.
Declaration
Swift
public let endTime: Int64?
-
The maximum number of log events returned. If you don’t specify a value, the maximum is as many log events as can fit in a response size of 1 MB, up to 10,000 log events.
Declaration
Swift
public let limit: Int?
-
The name of the log group.
Declaration
Swift
public let logGroupName: String
-
The name of the log stream.
Declaration
Swift
public let logStreamName: String
-
The token for the next set of items to return. (You received this token from a previous call.) Using this token works only when you specify true for startFromHead.
Declaration
Swift
public let nextToken: String?
-
If the value is true, the earliest log events are returned first. If the value is false, the latest log events are returned first. The default value is false. If you are using nextToken in this operation, you must specify true for startFromHead.
Declaration
Swift
public let startFromHead: Bool?
-
The start of the time range, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp equal to this time or later than this time are included. Events with a timestamp earlier than this time are not included.
Declaration
Swift
public let startTime: Int64?
-
Undocumented
Declaration
Swift
public init(endTime: Int64? = nil, limit: Int? = nil, logGroupName: String, logStreamName: String, nextToken: String? = nil, startFromHead: Bool? = nil, startTime: Int64? = nil)
-
Declaration
Swift
public func validate(name: String) throws
-
Undocumented
Declaration
Swift
public func usingPaginationToken(_ token: String) -> CloudWatchLogs.GetLogEventsRequest