You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudWatchLogs::Types::CreateExportTaskRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateExportTaskRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  task_name: "ExportTaskName",
  log_group_name: "LogGroupName", # required
  log_stream_name_prefix: "LogStreamName",
  from: 1, # required
  to: 1, # required
  destination: "ExportDestinationBucket", # required
  destination_prefix: "ExportDestinationPrefix",
}

Instance Attribute Summary collapse

Instance Attribute Details

#destinationString

The name of S3 bucket for the exported log data. The bucket must be in the same AWS region.

Returns:

  • (String)

    The name of S3 bucket for the exported log data.

#destination_prefixString

The prefix used as the start of the key for every object exported. If you don\'t specify a value, the default is exportedlogs.

Returns:

  • (String)

    The prefix used as the start of the key for every object exported.

#fromInteger

The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. Events with a timestamp earlier than this time are not exported.

Returns:

  • (Integer)

    The start time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.

#log_group_nameString

The name of the log group.

Returns:

  • (String)

    The name of the log group.

#log_stream_name_prefixString

Export only log streams that match the provided prefix. If you don\'t specify a value, no prefix filter is applied.

Returns:

  • (String)

    Export only log streams that match the provided prefix.

#task_nameString

The name of the export task.

Returns:

  • (String)

    The name of the export task.

#toInteger

The end time of the range for the request, 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.

Returns:

  • (Integer)

    The end time of the range for the request, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.