StartQueryRequest
public struct StartQueryRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The end of the time range to query. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.
Declaration
Swift
public let endTime: Int64
-
The maximum number of log events to return in the query. If the query string uses the fields command, only the specified fields and their values are returned. The default is 1000.
Declaration
Swift
public let limit: Int?
-
The log group on which to perform the query. A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.
Declaration
Swift
public let logGroupName: String?
-
The list of log groups to be queried. You can include up to 20 log groups. A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.
Declaration
Swift
public let logGroupNames: [String]?
-
The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.
Declaration
Swift
public let queryString: String
-
The beginning of the time range to query. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.
Declaration
Swift
public let startTime: Int64
-
Undocumented
Declaration
Swift
public init(endTime: Int64, limit: Int? = nil, logGroupName: String? = nil, logGroupNames: [String]? = nil, queryString: String, startTime: Int64)
-
Declaration
Swift
public func validate(name: String) throws