& result);
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline const Aws::String& GetMarker() const{ return m_marker; }
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline void SetMarker(const Aws::String& value) { m_marker = value; }
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline void SetMarker(const char* value) { m_marker.assign(value); }
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline DescribeDBInstanceAutomatedBackupsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline DescribeDBInstanceAutomatedBackupsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
/**
* An optional pagination token provided by a previous request. If this
* parameter is specified, the response includes only records beyond the marker, up
* to the value specified by MaxRecords
.
*/
inline DescribeDBInstanceAutomatedBackupsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline const Aws::Vector& GetDBInstanceAutomatedBackups() const{ return m_dBInstanceAutomatedBackups; }
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline void SetDBInstanceAutomatedBackups(const Aws::Vector& value) { m_dBInstanceAutomatedBackups = value; }
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline void SetDBInstanceAutomatedBackups(Aws::Vector&& value) { m_dBInstanceAutomatedBackups = std::move(value); }
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline DescribeDBInstanceAutomatedBackupsResult& WithDBInstanceAutomatedBackups(const Aws::Vector& value) { SetDBInstanceAutomatedBackups(value); return *this;}
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline DescribeDBInstanceAutomatedBackupsResult& WithDBInstanceAutomatedBackups(Aws::Vector&& value) { SetDBInstanceAutomatedBackups(std::move(value)); return *this;}
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline DescribeDBInstanceAutomatedBackupsResult& AddDBInstanceAutomatedBackups(const DBInstanceAutomatedBackup& value) { m_dBInstanceAutomatedBackups.push_back(value); return *this; }
/**
* A list of DBInstanceAutomatedBackup
instances.
*/
inline DescribeDBInstanceAutomatedBackupsResult& AddDBInstanceAutomatedBackups(DBInstanceAutomatedBackup&& value) { m_dBInstanceAutomatedBackups.push_back(std::move(value)); return *this; }
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
inline DescribeDBInstanceAutomatedBackupsResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline DescribeDBInstanceAutomatedBackupsResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
Aws::String m_marker;
Aws::Vector m_dBInstanceAutomatedBackups;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace RDS
} // namespace Aws