class Amazonite::CloudWatchLogs::ExportTask

Overview

Represents an export task.

Included Modules

Defined in:

cloudwatch_logs/export_task.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(pull : JSON::PullParser) #

[View source]
def self.new(task_id : String | Nil = nil, task_name : String | Nil = nil, log_group_name : String | Nil = nil, from : Int64 | Nil = nil, to : Int64 | Nil = nil, destination : String | Nil = nil, destination_prefix : String | Nil = nil, status : ExportTaskStatus | Nil = nil, execution_info : ExportTaskExecutionInfo | Nil = nil) #

[View source]

Instance Method Detail

def ==(other : self) #
Description copied from class Reference

Returns true if this reference is the same as other. Invokes same?.


def destination : String | Nil #

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


[View source]
def destination=(destination : String | Nil) #

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


[View source]
def destination_prefix : String | Nil #

The prefix that was used as the start of Amazon S3 key for every object exported.


[View source]
def destination_prefix=(destination_prefix : String | Nil) #

The prefix that was used as the start of Amazon S3 key for every object exported.


[View source]
def execution_info : ExportTaskExecutionInfo | Nil #

Execution information about the export task.


[View source]
def execution_info=(execution_info : ExportTaskExecutionInfo | Nil) #

Execution information about the export task.


[View source]
def from : Int64 | Nil #

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.


[View source]
def from=(from : Int64 | Nil) #

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.


[View source]
def hash(hasher) #
Description copied from class Reference

See Object#hash(hasher)


def log_group_name : String | Nil #

The name of the log group from which logs data was exported.


[View source]
def log_group_name=(log_group_name : String | Nil) #

The name of the log group from which logs data was exported.


[View source]
def status : ExportTaskStatus | Nil #

The status of the export task.


[View source]
def status=(status : ExportTaskStatus | Nil) #

The status of the export task.


[View source]
def task_id : String | Nil #

The ID of the export task.


[View source]
def task_id=(task_id : String | Nil) #

The ID of the export task.


[View source]
def task_name : String | Nil #

The name of the export task.


[View source]
def task_name=(task_name : String | Nil) #

The name of the export task.


[View source]
def to : Int64 | Nil #

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.


[View source]
def to=(to : Int64 | Nil) #

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.


[View source]
def validate! : Nil #

[View source]