/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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.
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.
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.
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.
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.
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.
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.
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.
Filters the available log files for log file names that contain the specified * string.
*/ inline const Aws::String& GetFilenameContains() const{ return m_filenameContains; } /** *Filters the available log files for log file names that contain the specified * string.
*/ inline bool FilenameContainsHasBeenSet() const { return m_filenameContainsHasBeenSet; } /** *Filters the available log files for log file names that contain the specified * string.
*/ inline void SetFilenameContains(const Aws::String& value) { m_filenameContainsHasBeenSet = true; m_filenameContains = value; } /** *Filters the available log files for log file names that contain the specified * string.
*/ inline void SetFilenameContains(Aws::String&& value) { m_filenameContainsHasBeenSet = true; m_filenameContains = std::move(value); } /** *Filters the available log files for log file names that contain the specified * string.
*/ inline void SetFilenameContains(const char* value) { m_filenameContainsHasBeenSet = true; m_filenameContains.assign(value); } /** *Filters the available log files for log file names that contain the specified * string.
*/ inline DescribeDBLogFilesRequest& WithFilenameContains(const Aws::String& value) { SetFilenameContains(value); return *this;} /** *Filters the available log files for log file names that contain the specified * string.
*/ inline DescribeDBLogFilesRequest& WithFilenameContains(Aws::String&& value) { SetFilenameContains(std::move(value)); return *this;} /** *Filters the available log files for log file names that contain the specified * string.
*/ inline DescribeDBLogFilesRequest& WithFilenameContains(const char* value) { SetFilenameContains(value); return *this;} /** *Filters the available log files for files written since the specified date, * in POSIX timestamp format with milliseconds.
*/ inline long long GetFileLastWritten() const{ return m_fileLastWritten; } /** *Filters the available log files for files written since the specified date, * in POSIX timestamp format with milliseconds.
*/ inline bool FileLastWrittenHasBeenSet() const { return m_fileLastWrittenHasBeenSet; } /** *Filters the available log files for files written since the specified date, * in POSIX timestamp format with milliseconds.
*/ inline void SetFileLastWritten(long long value) { m_fileLastWrittenHasBeenSet = true; m_fileLastWritten = value; } /** *Filters the available log files for files written since the specified date, * in POSIX timestamp format with milliseconds.
*/ inline DescribeDBLogFilesRequest& WithFileLastWritten(long long value) { SetFileLastWritten(value); return *this;} /** *Filters the available log files for files larger than the specified size.
*/ inline long long GetFileSize() const{ return m_fileSize; } /** *Filters the available log files for files larger than the specified size.
*/ inline bool FileSizeHasBeenSet() const { return m_fileSizeHasBeenSet; } /** *Filters the available log files for files larger than the specified size.
*/ inline void SetFileSize(long long value) { m_fileSizeHasBeenSet = true; m_fileSize = value; } /** *Filters the available log files for files larger than the specified size.
*/ inline DescribeDBLogFilesRequest& WithFileSize(long long value) { SetFileSize(value); return *this;} /** *This parameter isn't currently supported.
*/ inline const Aws::VectorThis parameter isn't currently supported.
*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *This parameter isn't currently supported.
*/ inline void SetFilters(const Aws::VectorThis parameter isn't currently supported.
*/ inline void SetFilters(Aws::VectorThis parameter isn't currently supported.
*/ inline DescribeDBLogFilesRequest& WithFilters(const Aws::VectorThis parameter isn't currently supported.
*/ inline DescribeDBLogFilesRequest& WithFilters(Aws::VectorThis parameter isn't currently supported.
*/ inline DescribeDBLogFilesRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** *This parameter isn't currently supported.
*/ inline DescribeDBLogFilesRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; } /** *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.
*/ inline int GetMaxRecords() const{ return m_maxRecords; } /** *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.
*/ inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; } /** *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.
*/ inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; } /** *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.
*/ inline DescribeDBLogFilesRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;} /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline DescribeDBLogFilesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline DescribeDBLogFilesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *The pagination token provided in the previous request. If this parameter is * specified the response includes only records beyond the marker, up to * MaxRecords.
*/ inline DescribeDBLogFilesRequest& WithMarker(const char* value) { SetMarker(value); return *this;} private: Aws::String m_dBInstanceIdentifier; bool m_dBInstanceIdentifierHasBeenSet = false; Aws::String m_filenameContains; bool m_filenameContainsHasBeenSet = false; long long m_fileLastWritten; bool m_fileLastWrittenHasBeenSet = false; long long m_fileSize; bool m_fileSizeHasBeenSet = false; Aws::Vector