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

Class: Aws::RDS::Types::DescribeDBLogFilesMessage

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

Overview

Note:

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

{
  db_instance_identifier: "String", # required
  filename_contains: "String",
  file_last_written: 1,
  file_size: 1,
  filters: [
    {
      name: "String", # required
      values: ["String"], # required
    },
  ],
  max_records: 1,
  marker: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#db_instance_identifierString

The customer-assigned name of the DB instance that contains the log files you want to list.

Constraints:

  • Must match the identifier of an existing DBInstance.

^

Returns:

  • (String)

    The customer-assigned name of the DB instance that contains the log files you want to list.

#file_last_writtenInteger

Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

Returns:

  • (Integer)

    Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

#file_sizeInteger

Filters the available log files for files larger than the specified size.

Returns:

  • (Integer)

    Filters the available log files for files larger than the specified size.

#filename_containsString

Filters the available log files for log file names that contain the specified string.

Returns:

  • (String)

    Filters the available log files for log file names that contain the specified string.

#filtersArray<Types::Filter>

This parameter isn\'t currently supported.

Returns:

  • (Array<Types::Filter>)

    This parameter isn\'t currently supported.

#markerString

The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

Returns:

  • (String)

    The pagination token provided in the previous request.

#max_recordsInteger

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Returns:

  • (Integer)

    The maximum number of records to include in the response.