AWSLogsExportTask

Objective-C

@interface AWSLogsExportTask

Swift

class AWSLogsExportTask

Represents an export task.

  • The name of the S3 bucket to which the log data was exported.

    Declaration

    Objective-C

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

    Swift

    var destination: String? { get set }
  • The prefix that was used as the start of Amazon S3 key for every object exported.

    Declaration

    Objective-C

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

    Swift

    var destinationPrefix: String? { get set }
  • Execution information about the export task.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSLogsExportTaskExecutionInfo *_Nullable executionInfo;

    Swift

    var executionInfo: AWSLogsExportTaskExecutionInfo? { get set }
  • The start time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp before this time are not exported.

    Declaration

    Objective-C

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

    Swift

    var from: NSNumber? { get set }
  • The name of the log group from which logs data was exported.

    Declaration

    Objective-C

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

    Swift

    var logGroupName: String? { get set }
  • The status of the export task.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSLogsExportTaskStatus *_Nullable status;

    Swift

    var status: AWSLogsExportTaskStatus? { get set }
  • The ID of the export task.

    Declaration

    Objective-C

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

    Swift

    var taskId: String? { get set }
  • The name of the export task.

    Declaration

    Objective-C

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

    Swift

    var taskName: String? { get set }
  • to

    The end time, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp later than this time are not exported.

    Declaration

    Objective-C

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

    Swift

    var to: NSNumber? { get set }