AWSLogsQueryDefinition

Objective-C

@interface AWSLogsQueryDefinition

Swift

class AWSLogsQueryDefinition

This structure contains details about a saved CloudWatch Logs Insights query definition.

  • The date that the query definition was most recently modified.

    Declaration

    Objective-C

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

    Swift

    var lastModified: NSNumber? { get set }
  • If this query definition contains a list of log groups that it is limited to, that list appears here.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable logGroupNames;

    Swift

    var logGroupNames: [String]? { get set }
  • The name of the query definition.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • The unique ID of the query definition.

    Declaration

    Objective-C

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

    Swift

    var queryDefinitionId: String? { get set }
  • The query string to use for this definition. For more information, see CloudWatch Logs Insights Query Syntax.

    Declaration

    Objective-C

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

    Swift

    var queryString: String? { get set }